├── .gitignore
├── .gitattributes
├── derivatives
├── temporal-loot
│ ├── output
│ │ ├── TemporalLoot.json
│ │ └── probability.json
│ ├── README.md
│ ├── index.js
│ └── parse.js
├── synthetic-loot
│ ├── README.md
│ ├── index.js
│ └── abi.js
├── extension-loot
│ ├── README.md
│ ├── index.js
│ └── parse.js
├── ability-score
│ ├── README.md
│ ├── parse.js
│ ├── index.js
│ └── abi.js
└── familiars
│ ├── README.md
│ ├── parse.js
│ └── output
│ └── occurences.json
├── package.json
├── LICENSE
├── index.js
├── images.js
├── parse.js
├── README.md
└── abi.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | test/
3 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | derivatives/temporal-loot/output/TemporalLoot.json filter=lfs diff=lfs merge=lfs -text
2 | derivatives/temporal-loot/output/probability.json filter=lfs diff=lfs merge=lfs -text
3 |
--------------------------------------------------------------------------------
/derivatives/temporal-loot/output/TemporalLoot.json:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:307401cdab706b1b78ca8dad817970901df8f8561b8568217af9f371d27eb4b9
3 | size 289905265
4 |
--------------------------------------------------------------------------------
/derivatives/temporal-loot/output/probability.json:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:a0fdbe4221c8de6c9a4a67c248bc2002679a39effb2a514980025ad4adcac1aa
3 | size 110957237
4 |
--------------------------------------------------------------------------------
/derivatives/synthetic-loot/README.md:
--------------------------------------------------------------------------------
1 | # Synthetic Loot Botting
2 |
3 | Sample script demonstrating mass generation of Ethereum addresses, for Synthetic Loot, to find Divine Robes (or item and loot bag of your choice).
4 |
5 | I recommend using a forknet to speed up processing. Outputs private keys with Divine Robes to `divine-robe-wallets.txt`.
6 |
7 | ## Run locally
8 |
9 | ```bash
10 | # Install dependencies (in root folder)
11 | npm install
12 |
13 | # Start botting
14 | node index.js
15 | ```
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dhof-loot",
3 | "version": "1.0.0",
4 | "description": "Collects details about the Loot project",
5 | "main": "index.js",
6 | "scripts": {
7 | "collect": "node index.js",
8 | "parse": "node parse.js",
9 | "images": "node images.js"
10 | },
11 | "keywords": [
12 | "loot",
13 | "words",
14 | "ethereum"
15 | ],
16 | "author": "Anish Agnihotri",
17 | "license": "MIT",
18 | "dependencies": {
19 | "ethers": "^5.4.5",
20 | "keccak": "^3.0.1",
21 | "secp256k1": "^3.8.0"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/derivatives/temporal-loot/README.md:
--------------------------------------------------------------------------------
1 | # Temporal Loot
2 |
3 | ## Distribution
4 |
5 | - tokenIds `8001` to `(block.number / 10) + 1` claimable by user.
6 | - Each token has attributes: `chest`, `foot`, `hand`, `head`, `neck`, `ring`, `waist`, `weapon`.
7 |
8 | ## Output
9 |
10 | - `output/loot.json` contains all tokenIds and their attributes.
11 | - `output/occurences.json` contains the number of occurences by attribute.
12 | - `output/probability.json` contains a mapping of `lootId` to `rank` by probabilistic occurence rather than rank (`P(A in bag at slot 1)` and `P(B in bag at slot 2)`, then `P(A in slot 1 and B in slot 2)` is the product of the 2 probabilities).
13 |
14 | ## Run locally
15 |
16 | ```bash
17 | # Install dependencies (in root directory)
18 | npm install
19 |
20 | # Collect all Temporal Loot
21 | node index.js
22 |
23 | # Parse Temporal Loot statistics
24 | node parse.js
25 | ```
26 |
--------------------------------------------------------------------------------
/derivatives/extension-loot/README.md:
--------------------------------------------------------------------------------
1 | # Extension Loot
2 |
3 | ## Distribution
4 |
5 | - tokenIds `8001` to `15777` claimable by user.
6 | - tokenIds `15778` to `16000` claimable by contract owner.
7 | - Each token has attributes: `chest`, `foot`, `hand`, `head`, `neck`, `ring`, `waist`, `weapon`.
8 |
9 | ## Output
10 |
11 | - `output/loot.json` contains all tokenIds and their attributes.
12 | - `output/occurences.json` contains the number of occurences by attribute.
13 | - `output/probability.json` contains a mapping of `lootId` to `rank` by probabilistic occurence rather than rank (`P(A in bag at slot 1)` and `P(B in bag at slot 2)`, then `P(A in slot 1 and B in slot 2)` is the product of the 2 probabilities).
14 |
15 | ## Run locally
16 |
17 | ```bash
18 | # Install dependencies (in root directory)
19 | npm install
20 |
21 | # Collect all xLoot
22 | node index.js
23 |
24 | # Parse xLoot statistics
25 | node parse.js
26 | ```
27 |
--------------------------------------------------------------------------------
/derivatives/ability-score/README.md:
--------------------------------------------------------------------------------
1 | # ability-score
2 |
3 | Launch tweet for [ability-score](https://twitter.com/andy8052/status/1432802588194377742).
4 |
5 | ## Distribution
6 |
7 | - tokenIds `1` to `8000` claimable by loot holders.
8 | - tokenIds `8001` to `9975` claimable by public.
9 | - tokenIds `9976` to `10000` claimable by Andy.
10 | - Each token has attributes: `charisma`, `constitution`, `dexterity`, `intelligence`, `strength`, `wisdom`.
11 |
12 | ## Output
13 |
14 | - `output/ability-scores.json` contains all tokenIds and their attributes.
15 | - `output/score.json` contains the cumulative attribute scores by tokenId.
16 | - `output/[attribute].json` (replacing `[attribute]` for an attribute name) provides a sorted list of tokenIds by their rank in that attribute.
17 |
18 | ## Run locally
19 |
20 | ```bash
21 | # Install dependencies (in root folder)
22 | npm install
23 |
24 | # Collect all ability scores
25 | node index.js
26 |
27 | # Parse statistics
28 | node parse.js
29 | ```
30 |
--------------------------------------------------------------------------------
/derivatives/familiars/README.md:
--------------------------------------------------------------------------------
1 | # Familiars
2 |
3 | Original metadata scraped and provided by [PhABC in #6](https://github.com/Anish-Agnihotri/dhof-loot/pull/6); script not included.
4 |
5 | ## Distribution
6 |
7 | - tokenIds `8001` to `(block.number / 10) + 1` claimable by user.
8 | - Each token has attributes: `chest`, `foot`, `hand`, `head`, `neck`, `ring`, `waist`, `weapon`.
9 |
10 | ## Output
11 |
12 | - `output/familiars.json` contains all tokenIds and their attributes.
13 | - `output/occurences.json` contains the number of occurences by attribute.
14 | - `output/probability.json` contains a mapping of `lootId` to `rank` by probabilistic occurence rather than rank (`P(A in bag at slot 1)` and `P(B in bag at slot 2)`, then `P(A in slot 1 and B in slot 2)` is the product of the 2 probabilities).
15 |
16 | ## Run locally
17 |
18 | ```bash
19 | # Install dependencies (in root directory)
20 | npm install
21 |
22 | # Collect all Familiars
23 | # Collection script not provided
24 | # You can iterate through via IPFS tokenURI metadata
25 |
26 | # Parse Familiars statistics
27 | node parse.js
28 | ```
29 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to
2 | dhof-loot
3 |
5 | About 6 | | 7 | Derivatives 8 | | 9 | License 10 |
11 | 12 | # About 13 | 14 | This repository contains tooling and data for [Loot](https://www.lootproject.com/faq) and other derivative projects, and is free to use without credit or attribution, for any means. 15 | 16 | The `/` directory contains scripts and data for Loot, and `/derivatives` contains the same for projects inspired from or built atop Loot. 17 | 18 | > Loot itself is a collection of 8,000 unique bags of adventurer gear NFTs. At release, anyone could claim loot bags for just gas, and all bags were claimed in under 4 hours. Each loot bag contains 8 items: a piece for an adventurer's chest, foot, hand, head, neck, ring, waist, and weapon. 19 | 20 | # Loot 21 | 22 | ## Distribution 23 | 24 | - tokenIds `1` to `7778` claimable by user. 25 | - tokenIds `7778` to `8000` claimable by contract owner. 26 | - Each token has attributes: `chest`, `foot`, `hand`, `head`, `neck`, `ring`, `waist`, `weapon`. 27 | 28 | ## Output 29 | 30 | - `output/loot.json` contains all tokenIds and their attributes. 31 | - `output/occurences.json` contains the number of occurences by attribute. 32 | - `output/rare.json` contains a mapping of `lootId` to `score` (which is the sum of number of occcrences of each child attribute for a `lootId`), sorted ascending by `score`. It also includes `rarest` which is how rare the loot bags attributes are (`1` == `rarest`, `8000` == `least rare`), based on this specific ranking mechanism. 33 | - `output/probability.json` contains a mapping of `lootId` to `rank` by probabilistic occurence rather than rank (`P(A in bag at slot 1)` and `P(B in bag at slot 2)`, then `P(A in slot 1 and B in slot 2)` is the product of the 2 probabilities). 34 | - `output/images.json` contains the base64 encoded SVG of each tokenId 35 | 36 | ## Run locally 37 | 38 | ```bash 39 | # Install dependencies 40 | npm install 41 | 42 | # Collect all Loot 43 | npm run collect 44 | 45 | # Parse Loot statistics 46 | npm run parse 47 | 48 | # Collect Loot base64 encoded images 49 | npm run images 50 | ``` 51 | 52 | To run derivative scripts, follow the README in their subdirectory. 53 | 54 | # Derivatives 55 | 56 | - [Ability Score](https://github.com/Anish-Agnihotri/dhof-loot/tree/master/derivatives/ability-score) — Ability score NFTs by [andy8052](https://twitter.com/andy8052) 57 | - [Extension Loot](https://github.com/Anish-Agnihotri/dhof-loot/tree/master/derivatives/extension-loot) — Data for the [Extension Loot](https://twitter.com/xLootProject) project 58 | - [Synthetic Loot Botting](https://github.com/Anish-Agnihotri/dhof-loot/tree/master/derivatives/synthetic-loot) — Botting ideal synthetic loot by mass generating addresses 59 | - [Fork: Dope Wars Loot](https://github.com/cybergen/dope-wars-loot) by [@cybergen](https://cybergen/dope-wars-loot) 60 | - [Temporal Loot](https://github.com/Anish-Agnihotri/dhof-loot/tree/master/derivatives/temporal-loot) — Extension pack for Loot 61 | - [Familiars](https://github.com/Anish-Agnihotri/dhof-loot/tree/master/derivatives/familiars) — [Collective](https://loot-talk.com/t/floot-collective-to-buy-and-fractionalize-floor-loots/1507) to buy and fractionalize Floor Loots by [@PhABC](https://github.com/PhABC) 62 | 63 | # Credits 64 | 65 | - [@ktasbas](https://github.com/ktasbas) for adding Loot base64 encoded SVG retrieval support 66 | - `vance46#5648` and `UFvOgue, X-Divine Rober#8392` for helping me flag and think through the probabilistic occurence for Loot items 67 | 68 | # License 69 | 70 | Loot is licensed under [The Unlicense](https://github.com/Anish-Agnihotri/dhof-loot/blob/master/LICENSE)—a license with no conditions whatsoever which dedicates works to the public domain. 71 | 72 | Unlicensed works, modifications, and larger works may be distributed under different terms and without source code. 73 | -------------------------------------------------------------------------------- /derivatives/synthetic-loot/abi.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | abi: [ 3 | { 4 | inputs: [ 5 | { internalType: "address", name: "walletAddress", type: "address" }, 6 | ], 7 | name: "chestComponents", 8 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 9 | stateMutability: "view", 10 | type: "function", 11 | }, 12 | { 13 | inputs: [ 14 | { internalType: "address", name: "walletAddress", type: "address" }, 15 | ], 16 | name: "footComponents", 17 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 18 | stateMutability: "view", 19 | type: "function", 20 | }, 21 | { 22 | inputs: [ 23 | { internalType: "address", name: "walletAddress", type: "address" }, 24 | ], 25 | name: "getChest", 26 | outputs: [{ internalType: "string", name: "", type: "string" }], 27 | stateMutability: "view", 28 | type: "function", 29 | }, 30 | { 31 | inputs: [ 32 | { internalType: "address", name: "walletAddress", type: "address" }, 33 | ], 34 | name: "getFoot", 35 | outputs: [{ internalType: "string", name: "", type: "string" }], 36 | stateMutability: "view", 37 | type: "function", 38 | }, 39 | { 40 | inputs: [ 41 | { internalType: "address", name: "walletAddress", type: "address" }, 42 | ], 43 | name: "getHand", 44 | outputs: [{ internalType: "string", name: "", type: "string" }], 45 | stateMutability: "view", 46 | type: "function", 47 | }, 48 | { 49 | inputs: [ 50 | { internalType: "address", name: "walletAddress", type: "address" }, 51 | ], 52 | name: "getHead", 53 | outputs: [{ internalType: "string", name: "", type: "string" }], 54 | stateMutability: "view", 55 | type: "function", 56 | }, 57 | { 58 | inputs: [ 59 | { internalType: "address", name: "walletAddress", type: "address" }, 60 | ], 61 | name: "getNeck", 62 | outputs: [{ internalType: "string", name: "", type: "string" }], 63 | stateMutability: "view", 64 | type: "function", 65 | }, 66 | { 67 | inputs: [ 68 | { internalType: "address", name: "walletAddress", type: "address" }, 69 | ], 70 | name: "getRing", 71 | outputs: [{ internalType: "string", name: "", type: "string" }], 72 | stateMutability: "view", 73 | type: "function", 74 | }, 75 | { 76 | inputs: [ 77 | { internalType: "address", name: "walletAddress", type: "address" }, 78 | ], 79 | name: "getWaist", 80 | outputs: [{ internalType: "string", name: "", type: "string" }], 81 | stateMutability: "view", 82 | type: "function", 83 | }, 84 | { 85 | inputs: [ 86 | { internalType: "address", name: "walletAddress", type: "address" }, 87 | ], 88 | name: "getWeapon", 89 | outputs: [{ internalType: "string", name: "", type: "string" }], 90 | stateMutability: "view", 91 | type: "function", 92 | }, 93 | { 94 | inputs: [ 95 | { internalType: "address", name: "walletAddress", type: "address" }, 96 | ], 97 | name: "handComponents", 98 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 99 | stateMutability: "view", 100 | type: "function", 101 | }, 102 | { 103 | inputs: [ 104 | { internalType: "address", name: "walletAddress", type: "address" }, 105 | ], 106 | name: "headComponents", 107 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 108 | stateMutability: "view", 109 | type: "function", 110 | }, 111 | { 112 | inputs: [ 113 | { internalType: "address", name: "walletAddress", type: "address" }, 114 | ], 115 | name: "neckComponents", 116 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 117 | stateMutability: "view", 118 | type: "function", 119 | }, 120 | { 121 | inputs: [ 122 | { internalType: "address", name: "walletAddress", type: "address" }, 123 | ], 124 | name: "ringComponents", 125 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 126 | stateMutability: "view", 127 | type: "function", 128 | }, 129 | { 130 | inputs: [ 131 | { internalType: "address", name: "walletAddress", type: "address" }, 132 | ], 133 | name: "tokenURI", 134 | outputs: [{ internalType: "string", name: "", type: "string" }], 135 | stateMutability: "view", 136 | type: "function", 137 | }, 138 | { 139 | inputs: [ 140 | { internalType: "address", name: "walletAddress", type: "address" }, 141 | ], 142 | name: "waistComponents", 143 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 144 | stateMutability: "view", 145 | type: "function", 146 | }, 147 | { 148 | inputs: [ 149 | { internalType: "address", name: "walletAddress", type: "address" }, 150 | ], 151 | name: "weaponComponents", 152 | outputs: [{ internalType: "uint256[5]", name: "", type: "uint256[5]" }], 153 | stateMutability: "view", 154 | type: "function", 155 | }, 156 | ], 157 | }; 158 | -------------------------------------------------------------------------------- /derivatives/ability-score/abi.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | abi: [ 3 | { inputs: [], stateMutability: "nonpayable", type: "constructor" }, 4 | { 5 | anonymous: false, 6 | inputs: [ 7 | { 8 | indexed: true, 9 | internalType: "address", 10 | name: "owner", 11 | type: "address", 12 | }, 13 | { 14 | indexed: true, 15 | internalType: "address", 16 | name: "approved", 17 | type: "address", 18 | }, 19 | { 20 | indexed: true, 21 | internalType: "uint256", 22 | name: "tokenId", 23 | type: "uint256", 24 | }, 25 | ], 26 | name: "Approval", 27 | type: "event", 28 | }, 29 | { 30 | anonymous: false, 31 | inputs: [ 32 | { 33 | indexed: true, 34 | internalType: "address", 35 | name: "owner", 36 | type: "address", 37 | }, 38 | { 39 | indexed: true, 40 | internalType: "address", 41 | name: "operator", 42 | type: "address", 43 | }, 44 | { 45 | indexed: false, 46 | internalType: "bool", 47 | name: "approved", 48 | type: "bool", 49 | }, 50 | ], 51 | name: "ApprovalForAll", 52 | type: "event", 53 | }, 54 | { 55 | anonymous: false, 56 | inputs: [ 57 | { 58 | indexed: true, 59 | internalType: "address", 60 | name: "previousOwner", 61 | type: "address", 62 | }, 63 | { 64 | indexed: true, 65 | internalType: "address", 66 | name: "newOwner", 67 | type: "address", 68 | }, 69 | ], 70 | name: "OwnershipTransferred", 71 | type: "event", 72 | }, 73 | { 74 | anonymous: false, 75 | inputs: [ 76 | { 77 | indexed: true, 78 | internalType: "address", 79 | name: "from", 80 | type: "address", 81 | }, 82 | { indexed: true, internalType: "address", name: "to", type: "address" }, 83 | { 84 | indexed: true, 85 | internalType: "uint256", 86 | name: "tokenId", 87 | type: "uint256", 88 | }, 89 | ], 90 | name: "Transfer", 91 | type: "event", 92 | }, 93 | { 94 | inputs: [ 95 | { internalType: "address", name: "to", type: "address" }, 96 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 97 | ], 98 | name: "approve", 99 | outputs: [], 100 | stateMutability: "nonpayable", 101 | type: "function", 102 | }, 103 | { 104 | inputs: [{ internalType: "address", name: "owner", type: "address" }], 105 | name: "balanceOf", 106 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 107 | stateMutability: "view", 108 | type: "function", 109 | }, 110 | { 111 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 112 | name: "claim", 113 | outputs: [], 114 | stateMutability: "nonpayable", 115 | type: "function", 116 | }, 117 | { 118 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 119 | name: "claimForLoot", 120 | outputs: [], 121 | stateMutability: "nonpayable", 122 | type: "function", 123 | }, 124 | { 125 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 126 | name: "getApproved", 127 | outputs: [{ internalType: "address", name: "", type: "address" }], 128 | stateMutability: "view", 129 | type: "function", 130 | }, 131 | { 132 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 133 | name: "getCharisma", 134 | outputs: [{ internalType: "string", name: "", type: "string" }], 135 | stateMutability: "pure", 136 | type: "function", 137 | }, 138 | { 139 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 140 | name: "getConstitution", 141 | outputs: [{ internalType: "string", name: "", type: "string" }], 142 | stateMutability: "pure", 143 | type: "function", 144 | }, 145 | { 146 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 147 | name: "getDexterity", 148 | outputs: [{ internalType: "string", name: "", type: "string" }], 149 | stateMutability: "pure", 150 | type: "function", 151 | }, 152 | { 153 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 154 | name: "getIntelligence", 155 | outputs: [{ internalType: "string", name: "", type: "string" }], 156 | stateMutability: "pure", 157 | type: "function", 158 | }, 159 | { 160 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 161 | name: "getStrength", 162 | outputs: [{ internalType: "string", name: "", type: "string" }], 163 | stateMutability: "pure", 164 | type: "function", 165 | }, 166 | { 167 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 168 | name: "getWisdom", 169 | outputs: [{ internalType: "string", name: "", type: "string" }], 170 | stateMutability: "pure", 171 | type: "function", 172 | }, 173 | { 174 | inputs: [ 175 | { internalType: "address", name: "owner", type: "address" }, 176 | { internalType: "address", name: "operator", type: "address" }, 177 | ], 178 | name: "isApprovedForAll", 179 | outputs: [{ internalType: "bool", name: "", type: "bool" }], 180 | stateMutability: "view", 181 | type: "function", 182 | }, 183 | { 184 | inputs: [], 185 | name: "name", 186 | outputs: [{ internalType: "string", name: "", type: "string" }], 187 | stateMutability: "view", 188 | type: "function", 189 | }, 190 | { 191 | inputs: [], 192 | name: "owner", 193 | outputs: [{ internalType: "address", name: "", type: "address" }], 194 | stateMutability: "view", 195 | type: "function", 196 | }, 197 | { 198 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 199 | name: "ownerClaim", 200 | outputs: [], 201 | stateMutability: "nonpayable", 202 | type: "function", 203 | }, 204 | { 205 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 206 | name: "ownerOf", 207 | outputs: [{ internalType: "address", name: "", type: "address" }], 208 | stateMutability: "view", 209 | type: "function", 210 | }, 211 | { 212 | inputs: [], 213 | name: "renounceOwnership", 214 | outputs: [], 215 | stateMutability: "nonpayable", 216 | type: "function", 217 | }, 218 | { 219 | inputs: [ 220 | { internalType: "address", name: "from", type: "address" }, 221 | { internalType: "address", name: "to", type: "address" }, 222 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 223 | ], 224 | name: "safeTransferFrom", 225 | outputs: [], 226 | stateMutability: "nonpayable", 227 | type: "function", 228 | }, 229 | { 230 | inputs: [ 231 | { internalType: "address", name: "from", type: "address" }, 232 | { internalType: "address", name: "to", type: "address" }, 233 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 234 | { internalType: "bytes", name: "_data", type: "bytes" }, 235 | ], 236 | name: "safeTransferFrom", 237 | outputs: [], 238 | stateMutability: "nonpayable", 239 | type: "function", 240 | }, 241 | { 242 | inputs: [ 243 | { internalType: "address", name: "operator", type: "address" }, 244 | { internalType: "bool", name: "approved", type: "bool" }, 245 | ], 246 | name: "setApprovalForAll", 247 | outputs: [], 248 | stateMutability: "nonpayable", 249 | type: "function", 250 | }, 251 | { 252 | inputs: [{ internalType: "bytes4", name: "interfaceId", type: "bytes4" }], 253 | name: "supportsInterface", 254 | outputs: [{ internalType: "bool", name: "", type: "bool" }], 255 | stateMutability: "view", 256 | type: "function", 257 | }, 258 | { 259 | inputs: [], 260 | name: "symbol", 261 | outputs: [{ internalType: "string", name: "", type: "string" }], 262 | stateMutability: "view", 263 | type: "function", 264 | }, 265 | { 266 | inputs: [{ internalType: "uint256", name: "index", type: "uint256" }], 267 | name: "tokenByIndex", 268 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 269 | stateMutability: "view", 270 | type: "function", 271 | }, 272 | { 273 | inputs: [ 274 | { internalType: "address", name: "owner", type: "address" }, 275 | { internalType: "uint256", name: "index", type: "uint256" }, 276 | ], 277 | name: "tokenOfOwnerByIndex", 278 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 279 | stateMutability: "view", 280 | type: "function", 281 | }, 282 | { 283 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 284 | name: "tokenURI", 285 | outputs: [{ internalType: "string", name: "", type: "string" }], 286 | stateMutability: "pure", 287 | type: "function", 288 | }, 289 | { 290 | inputs: [], 291 | name: "totalSupply", 292 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 293 | stateMutability: "view", 294 | type: "function", 295 | }, 296 | { 297 | inputs: [ 298 | { internalType: "address", name: "from", type: "address" }, 299 | { internalType: "address", name: "to", type: "address" }, 300 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 301 | ], 302 | name: "transferFrom", 303 | outputs: [], 304 | stateMutability: "nonpayable", 305 | type: "function", 306 | }, 307 | { 308 | inputs: [{ internalType: "address", name: "newOwner", type: "address" }], 309 | name: "transferOwnership", 310 | outputs: [], 311 | stateMutability: "nonpayable", 312 | type: "function", 313 | }, 314 | ], 315 | }; 316 | -------------------------------------------------------------------------------- /abi.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | abi: [ 3 | { inputs: [], stateMutability: "nonpayable", type: "constructor" }, 4 | { 5 | anonymous: false, 6 | inputs: [ 7 | { 8 | indexed: true, 9 | internalType: "address", 10 | name: "owner", 11 | type: "address", 12 | }, 13 | { 14 | indexed: true, 15 | internalType: "address", 16 | name: "approved", 17 | type: "address", 18 | }, 19 | { 20 | indexed: true, 21 | internalType: "uint256", 22 | name: "tokenId", 23 | type: "uint256", 24 | }, 25 | ], 26 | name: "Approval", 27 | type: "event", 28 | }, 29 | { 30 | anonymous: false, 31 | inputs: [ 32 | { 33 | indexed: true, 34 | internalType: "address", 35 | name: "owner", 36 | type: "address", 37 | }, 38 | { 39 | indexed: true, 40 | internalType: "address", 41 | name: "operator", 42 | type: "address", 43 | }, 44 | { 45 | indexed: false, 46 | internalType: "bool", 47 | name: "approved", 48 | type: "bool", 49 | }, 50 | ], 51 | name: "ApprovalForAll", 52 | type: "event", 53 | }, 54 | { 55 | anonymous: false, 56 | inputs: [ 57 | { 58 | indexed: true, 59 | internalType: "address", 60 | name: "previousOwner", 61 | type: "address", 62 | }, 63 | { 64 | indexed: true, 65 | internalType: "address", 66 | name: "newOwner", 67 | type: "address", 68 | }, 69 | ], 70 | name: "OwnershipTransferred", 71 | type: "event", 72 | }, 73 | { 74 | anonymous: false, 75 | inputs: [ 76 | { 77 | indexed: true, 78 | internalType: "address", 79 | name: "from", 80 | type: "address", 81 | }, 82 | { indexed: true, internalType: "address", name: "to", type: "address" }, 83 | { 84 | indexed: true, 85 | internalType: "uint256", 86 | name: "tokenId", 87 | type: "uint256", 88 | }, 89 | ], 90 | name: "Transfer", 91 | type: "event", 92 | }, 93 | { 94 | inputs: [ 95 | { internalType: "address", name: "to", type: "address" }, 96 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 97 | ], 98 | name: "approve", 99 | outputs: [], 100 | stateMutability: "nonpayable", 101 | type: "function", 102 | }, 103 | { 104 | inputs: [{ internalType: "address", name: "owner", type: "address" }], 105 | name: "balanceOf", 106 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 107 | stateMutability: "view", 108 | type: "function", 109 | }, 110 | { 111 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 112 | name: "claim", 113 | outputs: [], 114 | stateMutability: "nonpayable", 115 | type: "function", 116 | }, 117 | { 118 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 119 | name: "getApproved", 120 | outputs: [{ internalType: "address", name: "", type: "address" }], 121 | stateMutability: "view", 122 | type: "function", 123 | }, 124 | { 125 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 126 | name: "getChest", 127 | outputs: [{ internalType: "string", name: "", type: "string" }], 128 | stateMutability: "view", 129 | type: "function", 130 | }, 131 | { 132 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 133 | name: "getFoot", 134 | outputs: [{ internalType: "string", name: "", type: "string" }], 135 | stateMutability: "view", 136 | type: "function", 137 | }, 138 | { 139 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 140 | name: "getHand", 141 | outputs: [{ internalType: "string", name: "", type: "string" }], 142 | stateMutability: "view", 143 | type: "function", 144 | }, 145 | { 146 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 147 | name: "getHead", 148 | outputs: [{ internalType: "string", name: "", type: "string" }], 149 | stateMutability: "view", 150 | type: "function", 151 | }, 152 | { 153 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 154 | name: "getNeck", 155 | outputs: [{ internalType: "string", name: "", type: "string" }], 156 | stateMutability: "view", 157 | type: "function", 158 | }, 159 | { 160 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 161 | name: "getRing", 162 | outputs: [{ internalType: "string", name: "", type: "string" }], 163 | stateMutability: "view", 164 | type: "function", 165 | }, 166 | { 167 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 168 | name: "getWaist", 169 | outputs: [{ internalType: "string", name: "", type: "string" }], 170 | stateMutability: "view", 171 | type: "function", 172 | }, 173 | { 174 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 175 | name: "getWeapon", 176 | outputs: [{ internalType: "string", name: "", type: "string" }], 177 | stateMutability: "view", 178 | type: "function", 179 | }, 180 | { 181 | inputs: [ 182 | { internalType: "address", name: "owner", type: "address" }, 183 | { internalType: "address", name: "operator", type: "address" }, 184 | ], 185 | name: "isApprovedForAll", 186 | outputs: [{ internalType: "bool", name: "", type: "bool" }], 187 | stateMutability: "view", 188 | type: "function", 189 | }, 190 | { 191 | inputs: [], 192 | name: "name", 193 | outputs: [{ internalType: "string", name: "", type: "string" }], 194 | stateMutability: "view", 195 | type: "function", 196 | }, 197 | { 198 | inputs: [], 199 | name: "owner", 200 | outputs: [{ internalType: "address", name: "", type: "address" }], 201 | stateMutability: "view", 202 | type: "function", 203 | }, 204 | { 205 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 206 | name: "ownerClaim", 207 | outputs: [], 208 | stateMutability: "nonpayable", 209 | type: "function", 210 | }, 211 | { 212 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 213 | name: "ownerOf", 214 | outputs: [{ internalType: "address", name: "", type: "address" }], 215 | stateMutability: "view", 216 | type: "function", 217 | }, 218 | { 219 | inputs: [], 220 | name: "renounceOwnership", 221 | outputs: [], 222 | stateMutability: "nonpayable", 223 | type: "function", 224 | }, 225 | { 226 | inputs: [ 227 | { internalType: "address", name: "from", type: "address" }, 228 | { internalType: "address", name: "to", type: "address" }, 229 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 230 | ], 231 | name: "safeTransferFrom", 232 | outputs: [], 233 | stateMutability: "nonpayable", 234 | type: "function", 235 | }, 236 | { 237 | inputs: [ 238 | { internalType: "address", name: "from", type: "address" }, 239 | { internalType: "address", name: "to", type: "address" }, 240 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 241 | { internalType: "bytes", name: "_data", type: "bytes" }, 242 | ], 243 | name: "safeTransferFrom", 244 | outputs: [], 245 | stateMutability: "nonpayable", 246 | type: "function", 247 | }, 248 | { 249 | inputs: [ 250 | { internalType: "address", name: "operator", type: "address" }, 251 | { internalType: "bool", name: "approved", type: "bool" }, 252 | ], 253 | name: "setApprovalForAll", 254 | outputs: [], 255 | stateMutability: "nonpayable", 256 | type: "function", 257 | }, 258 | { 259 | inputs: [{ internalType: "bytes4", name: "interfaceId", type: "bytes4" }], 260 | name: "supportsInterface", 261 | outputs: [{ internalType: "bool", name: "", type: "bool" }], 262 | stateMutability: "view", 263 | type: "function", 264 | }, 265 | { 266 | inputs: [], 267 | name: "symbol", 268 | outputs: [{ internalType: "string", name: "", type: "string" }], 269 | stateMutability: "view", 270 | type: "function", 271 | }, 272 | { 273 | inputs: [{ internalType: "uint256", name: "index", type: "uint256" }], 274 | name: "tokenByIndex", 275 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 276 | stateMutability: "view", 277 | type: "function", 278 | }, 279 | { 280 | inputs: [ 281 | { internalType: "address", name: "owner", type: "address" }, 282 | { internalType: "uint256", name: "index", type: "uint256" }, 283 | ], 284 | name: "tokenOfOwnerByIndex", 285 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 286 | stateMutability: "view", 287 | type: "function", 288 | }, 289 | { 290 | inputs: [{ internalType: "uint256", name: "tokenId", type: "uint256" }], 291 | name: "tokenURI", 292 | outputs: [{ internalType: "string", name: "", type: "string" }], 293 | stateMutability: "view", 294 | type: "function", 295 | }, 296 | { 297 | inputs: [], 298 | name: "totalSupply", 299 | outputs: [{ internalType: "uint256", name: "", type: "uint256" }], 300 | stateMutability: "view", 301 | type: "function", 302 | }, 303 | { 304 | inputs: [ 305 | { internalType: "address", name: "from", type: "address" }, 306 | { internalType: "address", name: "to", type: "address" }, 307 | { internalType: "uint256", name: "tokenId", type: "uint256" }, 308 | ], 309 | name: "transferFrom", 310 | outputs: [], 311 | stateMutability: "nonpayable", 312 | type: "function", 313 | }, 314 | { 315 | inputs: [{ internalType: "address", name: "newOwner", type: "address" }], 316 | name: "transferOwnership", 317 | outputs: [], 318 | stateMutability: "nonpayable", 319 | type: "function", 320 | }, 321 | ], 322 | }; 323 | -------------------------------------------------------------------------------- /derivatives/familiars/output/occurences.json: -------------------------------------------------------------------------------- 1 | { 2 | "Cave Spider": 47, 3 | "Terrestrial": 3586, 4 | "Large": 1780, 5 | "No collar": 3143, 6 | "Nameless": 7646, 7 | "Forest Jaguar": 27, 8 | "Ethereal": 1257, 9 | "Standard": 3451, 10 | "Platinum Pendant": 249, 11 | "Water Golem": 7, 12 | "Silver Talisman": 328, 13 | "Ice Spider": 35, 14 | "Underworld": 2064, 15 | "Swamp Boar": 59, 16 | "Mountain Hawk": 34, 17 | "Grakurk": 1, 18 | "Mountain Cobra": 32, 19 | "Cave Jaguar": 33, 20 | "Small": 1760, 21 | "Silver Chain": 1020, 22 | "Fire Hound": 32, 23 | "Gargantuan": 249, 24 | "Silver Pendant": 748, 25 | "Crystal Golem": 5, 26 | "Mountain Lynx": 47, 27 | "Gold Chain of Unstoppable Life": 1, 28 | "Ice Hawk": 17, 29 | "Tiny": 372, 30 | "Cave Lizard": 50, 31 | "Swamp Ghoul": 22, 32 | "Silver Amulette": 123, 33 | "Forest Hound": 54, 34 | "Gold Pendant": 369, 35 | "Forest Lynx": 52, 36 | "Immortal Raven": 3, 37 | "Cave Hawk": 44, 38 | "Cave Weasel": 67, 39 | "Divine": 526, 40 | "Gold Pendant of Untainted Lightning": 1, 41 | "Mountain Boar": 67, 42 | "Huge": 388, 43 | "Ice Bear": 41, 44 | "Crystal Chain": 77, 45 | "Forest Mantis": 27, 46 | "Undead Spider": 4, 47 | "Thunder Frog": 14, 48 | "Gold Talisman": 159, 49 | "Desert Raven": 35, 50 | "Ice Boar": 27, 51 | "Molten Turtle": 21, 52 | "Mountain Wolf": 71, 53 | "Gold Chain": 502, 54 | "Crex": 1, 55 | "Thunder Bat": 13, 56 | "Water Boar": 23, 57 | "Gold Talisman of Evil Darkness": 1, 58 | "Desert Turtle": 62, 59 | "Crystal Pendant": 59, 60 | "Thunder Lizard": 27, 61 | "Cave Wolf": 68, 62 | "Mountain Jaguar": 36, 63 | "Swamp Lizard": 58, 64 | "Thunder Unicorn": 4, 65 | "Forest Sprite": 15, 66 | "Ice Hound": 23, 67 | "Ice Griffon": 11, 68 | "Forest Lizard": 51, 69 | "Silver Pendant of Wicked Speed": 1, 70 | "Ice Lynx": 26, 71 | "Thunder Mantis": 19, 72 | "Desert Spider": 69, 73 | "Demonic": 567, 74 | "Adamantium Talisman": 24, 75 | "Metal Spider": 24, 76 | "Water Hawk": 19, 77 | "Ice Weasel": 34, 78 | "Mountain Hound": 58, 79 | "Mountain Bear": 62, 80 | "Immortal Ape": 3, 81 | "Forest Bear": 54, 82 | "Fire Jaguar": 13, 83 | "Metal Hawk": 8, 84 | "Thunder Jaguar": 14, 85 | "Thunder Wolf": 28, 86 | "Cave Bear": 43, 87 | "Desert Bear": 68, 88 | "Molten Skeleton": 2, 89 | "Cave Boar": 58, 90 | "Undead Leopard": 1, 91 | "Water Hound": 25, 92 | "Thunder Lynx": 32, 93 | "Ice Raven": 16, 94 | "Desert Boar": 50, 95 | "Forest Hawk": 32, 96 | "Swamp Fox": 34, 97 | "Swamp Imp": 16, 98 | "Aikaid, The Robe Wearer": 1, 99 | "Cave Ghoul": 30, 100 | "Platinum Talisman": 107, 101 | "Thunder Turtle": 27, 102 | "Swamp Lynx": 50, 103 | "Swamp Bat": 23, 104 | "Thunder Boar": 23, 105 | "Undead Jaguar": 2, 106 | "Immortal Weasel": 15, 107 | "Forest Ent": 7, 108 | "Swamp Sprite": 17, 109 | "Metal Octopus": 7, 110 | "Immortal Bat": 6, 111 | "Desert Lynx": 72, 112 | "Fire Spider": 30, 113 | "Mountain Fox": 29, 114 | "Platinum Chain": 268, 115 | "Mountain Bat": 33, 116 | "Swamp Unicorn": 5, 117 | "Mountain Spider": 57, 118 | "Ice Imp": 7, 119 | "Gold Amulette": 64, 120 | "Silver Chain of Lost Pain": 1, 121 | "Forest Frog": 38, 122 | "Desert Hawk": 32, 123 | "Desert Bat": 19, 124 | "Desert Sprite": 15, 125 | "Gold Amulette of Infinite Fear": 1, 126 | "Adamantium Pendant": 58, 127 | "Fire Ghoul": 21, 128 | "Crystal Boar": 10, 129 | "Water Bat": 19, 130 | "Swamp Leopard": 27, 131 | "Atrobus": 1, 132 | "Swamp Bear": 73, 133 | "Desert Jaguar": 31, 134 | "Cave Hound": 56, 135 | "Silver Chain of Corrupt Fire": 1, 136 | "Water Wolf": 33, 137 | "Crystal Pendant of Lost Fire": 1, 138 | "Silver Talisman of Wicked Fear": 2, 139 | "Immortal Sprite": 4, 140 | "Water Spider": 28, 141 | "Swamp Wolf": 52, 142 | "Forest Raven": 28, 143 | "Forest Turtle": 56, 144 | "Molten Frog": 4, 145 | "Cave Imp": 20, 146 | "Ice Turtle": 33, 147 | "Mokog": 1, 148 | "Undead Octopus": 1, 149 | "Fire Raven": 13, 150 | "Cassiel": 1, 151 | "Molten Hound": 13, 152 | "Molten Leopard": 16, 153 | "Metal Jaguar": 10, 154 | "Ice Fox": 15, 155 | "Molten Wolf": 17, 156 | "Silver Pendant of Evil Terror": 2, 157 | "Crystal Hound": 13, 158 | "Desert Ent": 16, 159 | "Cave Turtle": 66, 160 | "Thunder Hawk": 13, 161 | "Forest Wolf": 61, 162 | "Swamp Spider": 57, 163 | "Nadhal": 1, 164 | "Thunder Bear": 37, 165 | "Swamp Jaguar": 27, 166 | "Fire Turtle": 28, 167 | "Undead Mantis": 5, 168 | "Swamp Raven": 28, 169 | "Swamp Griffon": 21, 170 | "Swamp Dragon": 7, 171 | "Mountain Phoenix": 12, 172 | "Desert Cobra": 33, 173 | "Thunder Fox": 19, 174 | "Swamp Cobra": 41, 175 | "Forest Spider": 52, 176 | "Silver Talisman of Abundant Pain": 2, 177 | "Swamp Hawk": 28, 178 | "Swamp Octopus": 21, 179 | "Undead Boar": 4, 180 | "Desert Fox": 34, 181 | "Water Leopard": 14, 182 | "Ice Leopard": 16, 183 | "Crystal Octopus": 4, 184 | "Immortal Hawk": 5, 185 | "Metal Cobra": 6, 186 | "Mikotus": 1, 187 | "Molten Bear": 8, 188 | "Forest Unicorn": 10, 189 | "Cave Fox": 31, 190 | "Crystal Lizard": 20, 191 | "Fire Imp": 9, 192 | "Water Bear": 20, 193 | "Silver Amulette of Unstoppable Nightmare": 1, 194 | "Ice Lizard": 28, 195 | "Desert Weasel": 58, 196 | "Desert Frog": 25, 197 | "Desert Lizard": 57, 198 | "Thunder Spider": 26, 199 | "Mountain Leopard": 32, 200 | "Fire Golem": 6, 201 | "Silver Chain of Divine Lightning": 1, 202 | "Forest Imp": 20, 203 | "Platinum Amulette": 35, 204 | "Cave Bat": 34, 205 | "Gold Chain of Evil Life": 1, 206 | "Platinum Chain of Overwhelming Lightning": 1, 207 | "Forest Phoenix": 11, 208 | "Fire Boar": 28, 209 | "Thunder Imp": 10, 210 | "Desert Wolf": 54, 211 | "Ice Frog": 12, 212 | "Cave Lynx": 66, 213 | "Mountain Raven": 34, 214 | "Gonniuch": 1, 215 | "Xivryry, Protector of The Grass": 1, 216 | "Cave Sprite": 19, 217 | "Forest Octopus": 31, 218 | "Undead Imp": 2, 219 | "Agrennon": 1, 220 | "Igandrou": 1, 221 | "Silver Pendant of Untainted War": 1, 222 | "Forest Boar": 53, 223 | "Thunder Hound": 31, 224 | "Cave Golem": 14, 225 | "Crystal Weasel": 19, 226 | "Ice Cobra": 21, 227 | "Desert Imp": 24, 228 | "Desert Mantis": 21, 229 | "Swamp Hound": 50, 230 | "Cave Phoenix": 4, 231 | "Water Turtle": 27, 232 | "Cliff": 1, 233 | "Swamp Frog": 32, 234 | "Adamantium Pendant of Overwhelming Fire": 2, 235 | "Crystal Lynx": 14, 236 | "Swamp Turtle": 69, 237 | "Silver Pendant of Infinite Death": 2, 238 | "Fire Wolf": 27, 239 | "Swamp Weasel": 68, 240 | "Mountain Griffon": 11, 241 | "Ice Mantis": 15, 242 | "Forest Bat": 35, 243 | "Cave Skeleton": 6, 244 | "Metal Ent": 6, 245 | "Goighun, Lord of The Brown": 1, 246 | "Crystal Hawk": 10, 247 | "Silver Pendant of Infinite Pain": 1, 248 | "Mountain Weasel": 50, 249 | "Desert Dragon": 5, 250 | "Silver Pendant of Infinite Lightning": 2, 251 | "Forest Ghoul": 33, 252 | "Fire Weasel": 25, 253 | "Metal Hound": 14, 254 | "Mountain Ghoul": 28, 255 | "Gold Pendant of Transcendant Lightning": 1, 256 | "Desert Griffon": 13, 257 | "Silver Chain of Evil Lightning": 2, 258 | "Mutated Hound": 6, 259 | "Molten Golem": 4, 260 | "Undead Cobra": 3, 261 | "Adamantium Chain": 66, 262 | "Metal Fox": 9, 263 | "Leacia": 1, 264 | "Cave Griffon": 15, 265 | "Dolodo": 1, 266 | "Metal Wolf": 18, 267 | "Fire Phoenix": 5, 268 | "Desert Leopard": 36, 269 | "Ice Bat": 21, 270 | "Desert Octopus": 28, 271 | "Mountain Sprite": 13, 272 | "Xex": 1, 273 | "Ice Golem": 9, 274 | "Crystal Mantis": 11, 275 | "Metal Lizard": 22, 276 | "Molten Spider": 15, 277 | "Mountain Frog": 23, 278 | "Fire Lynx": 28, 279 | "Ice Wolf": 29, 280 | "Cave Cobra": 43, 281 | "Mountain Octopus": 34, 282 | "Mountain Turtle": 56, 283 | "Platinum Pendant of Corrupt Power": 2, 284 | "Mountain Skeleton": 14, 285 | "Fire Frog": 12, 286 | "Thunder Raven": 7, 287 | "Forest Weasel": 56, 288 | "Cave Frog": 24, 289 | "Thunder Leopard": 17, 290 | "Undead Bear": 4, 291 | "Forest Golem": 20, 292 | "Forest Leopard": 35, 293 | "Desert Hound": 67, 294 | "Fire Cobra": 18, 295 | "Fire Griffon": 11, 296 | "Thunder Cobra": 12, 297 | "Fire Bear": 37, 298 | "Metal Bat": 6, 299 | "Crystal Raven": 8, 300 | "Cave Leopard": 31, 301 | "Ice Jaguar": 14, 302 | "Araquiel": 1, 303 | "Adamantium Chain of Lost Nightmare": 1, 304 | "Water Ent": 6, 305 | "Silver Chain of Overwhelming Nightmare": 2, 306 | "Fire Lizard": 23, 307 | "Silver Chain of Untainted Speed": 1, 308 | "Urthraug": 1, 309 | "Water Weasel": 24, 310 | "Cave Ent": 11, 311 | "Silver Pendant of Unstoppable Blood": 1, 312 | "Silver Pendant of Demonic Pain": 1, 313 | "Crystal Cobra": 13, 314 | "Molten Raven": 7, 315 | "Gold Pendant of Hidden Ether": 1, 316 | "Swamp Ent": 17, 317 | "Platinum Talisman of Wicked Blood": 1, 318 | "Gold Chain of Abundant Terror": 1, 319 | "Linolio": 1, 320 | "Gold Chain of Hidden Death": 1, 321 | "Kupsamel": 1, 322 | "Jupiter": 1, 323 | "Desert Ghoul": 31, 324 | "Thunder Weasel": 31, 325 | "Water Lizard": 28, 326 | "Mountain Lizard": 41, 327 | "Water Sprite": 10, 328 | "Water Fox": 14, 329 | "Gold Pendant of Corrupt Fear": 1, 330 | "Fire Leopard": 12, 331 | "Water Cobra": 16, 332 | "Molten Ghoul": 11, 333 | "Utzox": 1, 334 | "Metal Griffon": 7, 335 | "Suna": 1, 336 | "Silver Pendant of Corrupt Death": 1, 337 | "Immortal Mantis": 3, 338 | "Gold Pendant of Unstoppable Death": 1, 339 | "Forest Fox": 35, 340 | "Metal Phoenix": 1, 341 | "Xaghia, The Malevolent": 1, 342 | "Water Dragon": 3, 343 | "Immortal Octopus": 7, 344 | "Zyssyn, The Tear Bearer": 1, 345 | "Molten Hawk": 12, 346 | "Gold Chain of Wicked Power": 1, 347 | "Molten Weasel": 16, 348 | "Crystal Griffon": 3, 349 | "Gold Chain of Swarming Ice": 1, 350 | "Thunder Octopus": 24, 351 | "Thunder Ghoul": 10, 352 | "Gold Chain of Divine Nightmare": 1, 353 | "Fire Mantis": 10, 354 | "Immortal Ghoul": 3, 355 | "Mountain Basilisk": 15, 356 | "Water Jaguar": 15, 357 | "Water Basilisk": 11, 358 | "Tigthunal": 1, 359 | "Crystal Talisman": 30, 360 | "Forest Griffon": 23, 361 | "Crystal Phoenix": 1, 362 | "Silver Chain of Divine War": 1, 363 | "Mountain Mantis": 32, 364 | "Forest Dragon": 5, 365 | "Crystal Fox": 8, 366 | "Cave Octopus": 30, 367 | "Water Raven": 15, 368 | "Silver Pendant of Evil Speed": 2, 369 | "Fire Sprite": 10, 370 | "Mutated Leopard": 4, 371 | "Spike": 1, 372 | "Immortal Leopard": 3, 373 | "Immortal Boar": 8, 374 | "Swamp Basilisk": 16, 375 | "Molten Octopus": 11, 376 | "Mutated Basilisk": 4, 377 | "Adamantium Amulette": 19, 378 | "Molten Lynx": 16, 379 | "Meighuphu, Guardian of The West": 1, 380 | "Gold Pendant of Eternal War": 1, 381 | "Tacandra": 1, 382 | "Swamp Golem": 19, 383 | "Mutated Raven": 5, 384 | "Gold Talisman of Lost Nightmare": 1, 385 | "Mutated Spider": 6, 386 | "Gold Pendant of Lost Ether": 1, 387 | "Crystal Turtle": 13, 388 | "Metal Weasel": 16, 389 | "Ice Octopus": 7, 390 | "Silver Pendant of Infinite Fire": 1, 391 | "Crystal Pendant of Unstoppable Pain": 1, 392 | "Berengari": 1, 393 | "Enobus": 1, 394 | "Water Frog": 17, 395 | "Judge": 1, 396 | "Cave Mantis": 24, 397 | "Swamp Phoenix": 6, 398 | "Gold Pendant of Divine Nightmare": 1, 399 | "Immortal Lizard": 10, 400 | "Silver Talisman of Transcendant Ether": 1, 401 | "Thunder Sprite": 7, 402 | "Platinum Chain of Hidden Blood": 1, 403 | "Metal Boar": 15, 404 | "Silver Chain of Hidden War": 1, 405 | "Mutated Bat": 4, 406 | "Thunder Phoenix": 4, 407 | "Flaucciseo": 1, 408 | "Silver Talisman of Divine Ether": 1, 409 | "Meirlul, The Swift": 1, 410 | "Swamp Mantis": 28, 411 | "Silver Pendant of Corrupt Ether": 2, 412 | "Thunder Griffon": 6, 413 | "Forest Cobra": 42, 414 | "Silver Chain of Abundant Terror": 1, 415 | "Fire Basilisk": 5, 416 | "Silver Chain of Hidden Fire": 1, 417 | "Metal Bear": 14, 418 | "Water Unicorn": 5, 419 | "Platinum Pendant of Hidden Nightmare": 1, 420 | "Papalanni": 1, 421 | "Mutated Lynx": 6, 422 | "Metal Dragon": 1, 423 | "Omryt, The Treasure Hunter": 1, 424 | "Adamantium Pendant of Transcendant Fear": 1, 425 | "Metal Turtle": 13, 426 | "Fire Octopus": 17, 427 | "Vedegark": 1, 428 | "Gold Chain of Lost Pain": 1, 429 | "Molten Fox": 8, 430 | "Ullos": 1, 431 | "Silver Chain of Evil Ice": 1, 432 | "Brawn": 1, 433 | "Artan": 1, 434 | "Molten Boar": 12, 435 | "Gold Talisman of Unstoppable Lightning": 2, 436 | "Ice Ghoul": 11, 437 | "Gold Talisman of Swarming Death": 1, 438 | "Metal Ghoul": 5, 439 | "Silver Chain of Untainted Darkness": 1, 440 | "Silver Pendant of Transcendant War": 1, 441 | "Clymene": 1, 442 | "Undead Weasel": 6, 443 | "Cave Unicorn": 10, 444 | "Gold Talisman of Demonic Darkness": 1, 445 | "Uzzaenth, The Adorable": 1, 446 | "Glamir": 1, 447 | "Desert Ape": 8, 448 | "Silver Pendant of Unstoppable Nightmare": 2, 449 | "Pusleg": 1, 450 | "Crystal Sprite": 8, 451 | "Crystal Skeleton": 1, 452 | "Tukbat": 1, 453 | "Gold Talisman of Overwhelming Ether": 1, 454 | "Bernhard": 1, 455 | "Mutated Griffon": 3, 456 | "Immortal Frog": 2, 457 | "Orvulth, Lady of The W": 1, 458 | "Thunder Ape": 5, 459 | "Vyghys, The Well Groomed": 1, 460 | "Swamp Ape": 5, 461 | "Desert Golem": 13, 462 | "Silver Chain of Overwhelming Pain": 2, 463 | "Platinum Chain of Evil Blood": 1, 464 | "Mutated Turtle": 5, 465 | "Ballaton": 1, 466 | "Water Mantis": 19, 467 | "Silver Chain of Lost Nightmare": 1, 468 | "Silver Pendant of Swarming Ice": 1, 469 | "Mutated Weasel": 6, 470 | "Molten Ent": 4, 471 | "Poljaq": 1, 472 | "Ice Skeleton": 3, 473 | "Immortal Spider": 6, 474 | "Forest Ape": 7, 475 | "Crystal Talisman of Wicked Death": 1, 476 | "Mysunum, The Victorious": 1, 477 | "Silver Talisman of Lost Power": 1, 478 | "Fire Ent": 7, 479 | "Tubby": 1, 480 | "Gold Chain of Divine Ice": 1, 481 | "Cave Raven": 32, 482 | "Ice Basilisk": 6, 483 | "Gold Chain of Swarming Power": 1, 484 | "Mutated Cobra": 4, 485 | "Gold Pendant of Abundant Darkness": 1, 486 | "Water Lynx": 27, 487 | "Sunshine": 1, 488 | "Mutated Ape": 5, 489 | "Immortal Cobra": 4, 490 | "Desert Unicorn": 9, 491 | "Molten Imp": 3, 492 | "Gold Chain of Overwhelming Fire": 1, 493 | "Desert Skeleton": 11, 494 | "Crystal Leopard": 11, 495 | "Rhizzoup": 1, 496 | "Silver Amulette of Evil Power": 1, 497 | "Undead Hawk": 4, 498 | "Crystal Wolf": 11, 499 | "Silver Chain of Untainted War": 1, 500 | "Silver Chain of Swarming War": 1, 501 | "Undead Fox": 4, 502 | "Molten Ape": 4, 503 | "Platinum Pendant of Lost Ice": 1, 504 | "Cave Basilisk": 13, 505 | "Gold Talisman of Unstoppable Nightmare": 1, 506 | "Ruk": 1, 507 | "Zeovnois, The Deathlord": 1, 508 | "Platinum Chain of Swarming Darkness": 1, 509 | "Nazak": 1, 510 | "Silver Chain of Overwhelming Terror": 1, 511 | "Razzud": 1, 512 | "Immortal Ent": 5, 513 | "Silver Chain of Overwhelming Speed": 1, 514 | "Cyac": 1, 515 | "Gold Chain of Lost Lightning": 1, 516 | "Crystal Amulette": 13, 517 | "Mountain Ent": 17, 518 | "Gavalon": 1, 519 | "Water Ghoul": 15, 520 | "Gath'tad": 1, 521 | "Undead Golem": 2, 522 | "Crystal Basilisk": 2, 523 | "Platinum Talisman of Evil Ether": 1, 524 | "Blitz": 1, 525 | "Undead Frog": 2, 526 | "Silver Chain of Swarming Pain": 2, 527 | "Gregachus": 1, 528 | "Silver Pendant of Untainted Ether": 2, 529 | "Silver Chain of Immortal Death": 1, 530 | "Silver Talisman of Eternal Nightmare": 1, 531 | "Gold Talisman of Unstoppable Life": 1, 532 | "Sotennos": 1, 533 | "Fire Fox": 9, 534 | "Ogfip": 1, 535 | "Horgy, The Optimist": 1, 536 | "Adamantium Chain of Wicked Ice": 1, 537 | "Water Imp": 8, 538 | "Fire Bat": 21, 539 | "Gold Chain of Demonic Lightning": 2, 540 | "Gold Talisman of Infinite Terror": 1, 541 | "Koggaxoth": 1, 542 | "Mutated Unicorn": 2, 543 | "Gold Pendant of Evil Fear": 1, 544 | "Water Octopus": 11, 545 | "Thunder Dragon": 3, 546 | "Yndri, The Gifted": 1, 547 | "Crystal Bat": 5, 548 | "Ruzoanturth, The Enigma": 1, 549 | "Crystal Frog": 7, 550 | "Silver Talisman of Untainted Ice": 1, 551 | "Pidaraba": 1, 552 | "Forest Skeleton": 9, 553 | "Nigbe": 1, 554 | "Silver Chain of Evil War": 1, 555 | "Platinum Pendant of Corrupt Speed": 1, 556 | "Crystal Spider": 17, 557 | "Silver Pendant of Evil Life": 1, 558 | "Trosakor": 1, 559 | "Mountain Ape": 5, 560 | "Ampheon": 1, 561 | "Adamantium Pendant of Divine Terror": 1, 562 | "Silver Chain of Immortal Pain": 1, 563 | "Heirgydanth, The Cancerous": 1, 564 | "Gelandro": 1, 565 | "Platinum Pendant of Untainted Death": 1, 566 | "Metal Lynx": 17, 567 | "Coalcrown": 1, 568 | "Ice Ent": 8, 569 | "Silver Chain of Wicked Fear": 2, 570 | "Molten Bat": 5, 571 | "Fire Hawk": 17, 572 | "Mutated Wolf": 4, 573 | "Norok": 1, 574 | "Fire Dragon": 1, 575 | "Silver Pendant of Hidden Power": 2, 576 | "Silver Chain of Corrupt Blood": 1, 577 | "Gold Pendant of Corrupt Death": 1, 578 | "Chenhebi": 1, 579 | "Undead Skeleton": 1, 580 | "Swamp Skeleton": 5, 581 | "Weald": 1, 582 | "Platinum Pendant of Corrupt Ice": 2, 583 | "Immortal Griffon": 2, 584 | "Ulliki": 1, 585 | "Silver Chain of Wicked Pain": 2, 586 | "Undead Wolf": 3, 587 | "Water Griffon": 10, 588 | "Iktak": 1, 589 | "Gold Chain of Divine Power": 1, 590 | "Metal Golem": 4, 591 | "Fluffy": 1, 592 | "Gold Chain of Infinite War": 2, 593 | "Degmem": 1, 594 | "Mountain Golem": 14, 595 | "Silver Pendant of Overwhelming Pain": 1, 596 | "Ternumech": 1, 597 | "Amnliaol": 1, 598 | "Desert Basilisk": 16, 599 | "Neophaelieg, The Tender": 1, 600 | "Phantalan": 1, 601 | "Fuzzy, The Calm": 1, 602 | "Immortal Lynx": 7, 603 | "Adamantium Talisman of Eternal Power": 1, 604 | "Fraymmarrud, Lord of the Stars": 1, 605 | "Platinum Pendant of Unstoppable Fear": 1, 606 | "Gold Talisman of Unstoppable Pain": 1, 607 | "Toniem, The Gentle": 1, 608 | "Fury": 1, 609 | "Molten Basilisk": 2, 610 | "Metal Imp": 6, 611 | "Sathud, The Warm": 1, 612 | "Platinum Talisman of Transcendant Nightmare": 1, 613 | "Metal Frog": 6, 614 | "Ward": 1, 615 | "Adamantium Chain of Hidden Ether": 1, 616 | "Gold Pendant of Wicked Power": 2, 617 | "Crystal Imp": 4, 618 | "Silver Pendant of Divine Ether": 2, 619 | "Platinum Pendant of Unstoppable Death": 1, 620 | "Gold Amulette of Infinite Death": 1, 621 | "Immortal Hound": 5, 622 | "Amemut": 1, 623 | "Embergaze": 1, 624 | "Mountain Imp": 11, 625 | "Water Skeleton": 4, 626 | "Ebroq": 1, 627 | "Telantes": 1, 628 | "Platinum Chain of Swarming Ice": 1, 629 | "Silver Amulette of Demonic Life": 1, 630 | "Cave Ape": 2, 631 | "Silver Chain of Lost Speed": 1, 632 | "Ambriel": 1, 633 | "Ralmennon": 1, 634 | "Szap": 1, 635 | "Platinum Chain of Divine Blood": 1, 636 | "Gold Chain of Demonic Speed": 1, 637 | "Crystal Pendant of Divine Life": 1, 638 | "Croceon": 1, 639 | "Gold Pendant of Abundant Blood": 1, 640 | "Undead Raven": 1, 641 | "Gold Pendant of Divine Fire": 1, 642 | "Silver Chain of Infinite Light": 1, 643 | "Bay": 1, 644 | "Geoff": 1, 645 | "Korydos": 1, 646 | "Immortal Turtle": 12, 647 | "Gold Pendant of Eternal Ether": 1, 648 | "Undead Bat": 1, 649 | "Tabby": 1, 650 | "Silver Chain of Wicked Ether": 2, 651 | "Silver Chain of Infinite Speed": 1, 652 | "Silver Pendant of Divine Power": 1, 653 | "Forest Basilisk": 10, 654 | "Gold Talisman of Hidden Lightning": 1, 655 | "Silver Talisman of Transcendant Pain": 1, 656 | "Mutated Golem": 3, 657 | "Atlas": 1, 658 | "Gold Chain of Corrupt Terror": 1, 659 | "Metal Raven": 7, 660 | "Kac": 1, 661 | "Water Phoenix": 6, 662 | "Gold Chain of Lost Nightmare": 1, 663 | "Silver Pendant of Eternal Nightmare": 1, 664 | "Mutated Bear": 4, 665 | "Silver Talisman of Lost Pain": 1, 666 | "Gold Chain of Unstoppable Power": 1, 667 | "Gold Pendant of Unstoppable Ether": 1, 668 | "Mutated Octopus": 5, 669 | "Metal Sprite": 3, 670 | "Mutated Boar": 4, 671 | "Silver Chain of Unstoppable Blood": 1, 672 | "Pasiuekari": 1, 673 | "Gold Chain of Demonic Blood": 1, 674 | "Molten Jaguar": 3, 675 | "Silver Chain of Unstoppable Death": 1, 676 | "Gold Talisman of Overwhelming Lightning": 1, 677 | "Platinum Pendant of Eternal Blood": 1, 678 | "Silver Pendant of Evil Fear": 1, 679 | "Molten Sprite": 4, 680 | "Gold Pendant of Untainted Speed": 1, 681 | "Nova": 1, 682 | "Molten Lizard": 8, 683 | "Touzig": 1, 684 | "Silver Chain of Divine Fire": 1, 685 | "Thunder Golem": 10, 686 | "Gold Pendant of Divine Light": 1, 687 | "Gold Pendant of Swarming Death": 1, 688 | "Crystal Jaguar": 5, 689 | "Nirtatman": 1, 690 | "Drorqaccia": 1, 691 | "Thunder Ent": 9, 692 | "Sazzelyss, Bringer of Death": 1, 693 | "Mutated Jaguar": 4, 694 | "Gold Amulette of Swarming Terror": 1, 695 | "Crystal Bear": 13, 696 | "Crystal Pendant of Eternal Blood": 2, 697 | "Ariane": 1, 698 | "Adamantium Amulette of Unstoppable Terror": 1, 699 | "Silver Talisman of Demonic Life": 1, 700 | "Drapey": 1, 701 | "Erelim": 1, 702 | "Mutated Frog": 3, 703 | "Undead Phoenix": 2, 704 | "Crystal Dragon": 3, 705 | "Undead Griffon": 1, 706 | "Crystal Talisman of Infinite Nightmare": 1, 707 | "Nambenth, The Fast One": 1, 708 | "Adamantium Talisman of Evil Power": 1, 709 | "Molten Cobra": 8, 710 | "Platinum Pendant of Overwhelming Darkness": 1, 711 | "Sabrael": 1, 712 | "Platinum Chain of Eternal Lightning": 1, 713 | "Gold Amulette of Immortal Pain": 1, 714 | "Zisgux": 1, 715 | "Bernadette": 1, 716 | "Immortal Wolf": 4, 717 | "Platinum Pendant of Overwhelming Speed": 1, 718 | "Gold Chain of Swarming Fire": 1, 719 | "Undead Turtle": 7, 720 | "Mountain Dragon": 6, 721 | "Platinum Chain of Evil Life": 1, 722 | "Anuk": 1, 723 | "Gold Talisman of Immortal Darkness": 1, 724 | "Gold Talisman of Transcendant Terror": 1, 725 | "Nukem": 1, 726 | "Cynny, The Barbarian": 1, 727 | "Rima, The Poet": 1, 728 | "Fire Ape": 4, 729 | "Mountain Unicorn": 2, 730 | "Tuskbuster": 1, 731 | "Metal Basilisk": 2, 732 | "Silver Chain of Demonic Darkness": 1, 733 | "Vysilei, The Voiceless One": 1, 734 | "Gold Pendant of Swarming Speed": 1, 735 | "Immortal Basilisk": 2, 736 | "Platinum Chain of Abundant Light": 2, 737 | "Dan": 1, 738 | "Ice Sprite": 7, 739 | "Adamantium Chain of Evil Darkness": 1, 740 | "Korzan": 1, 741 | "Gold Pendant of Divine Speed": 2, 742 | "Bernardita": 1, 743 | "Silver Chain of Transcendant Pain": 1, 744 | "Ievnien, The Strong": 1, 745 | "Gold Pendant of Unstoppable Life": 2, 746 | "Platinum Amulette of Corrupt Death": 1, 747 | "Bemeall": 1, 748 | "Silver Chain of Transcendant Nightmare": 1, 749 | "Silver Pendant of Eternal Darkness": 2, 750 | "Gold Chain of Unstoppable Fire": 1, 751 | "Seroon": 1, 752 | "Keddrei, The Rabbit Slayer": 1, 753 | "Platinum Pendant of Infinite War": 1, 754 | "Chasan": 1, 755 | "Smutmark": 1, 756 | "Crystal Ent": 6, 757 | "Platinum Pendant of Infinite Speed": 1, 758 | "Gold Chain of Evil Lightning": 1, 759 | "Silver Pendant of Demonic Death": 1, 760 | "Silver Chain of Unstoppable Darkness": 1, 761 | "Molten Mantis": 9, 762 | "Fire Skeleton": 3, 763 | "Undead Lynx": 3, 764 | "Silver Pendant of Corrupt Darkness": 1, 765 | "Labatas": 1, 766 | "Mutated Ghoul": 1, 767 | "Crystal Pendant of Overwhelming Ice": 1, 768 | "Silver Chain of Swarming Life": 1, 769 | "Platinum Chain of Lost Nightmare": 1, 770 | "Lesintolth, The Redeemer": 1, 771 | "Adamantium Amulette of Untainted Darkness": 1, 772 | "Tenyd, Longtail": 1, 773 | "Adamantium Chain of Wicked Fire": 1, 774 | "Gold Amulette of Abundant Lightning": 1, 775 | "Barachiel": 1, 776 | "Silver Pendant of Abundant Blood": 1, 777 | "Immortal Bear": 5, 778 | "Silver Chain of Immortal Nightmare": 1, 779 | "Adamantium Pendant of Untainted Ice": 1, 780 | "Silver Pendant of Overwhelming War": 3, 781 | "Silver Chain of Untainted Terror": 1, 782 | "Adamantium Pendant of Overwhelming Speed": 1, 783 | "Silver Talisman of Immortal Ice": 2, 784 | "Hasdiel": 1, 785 | "Fire Unicorn": 4, 786 | "Gisemu": 1, 787 | "Brukanich": 1, 788 | "Silver Chain of Unstoppable Fire": 1, 789 | "Platinum Chain of Corrupt Blood": 1, 790 | "Smutsnarl": 1, 791 | "Shepherd": 1, 792 | "Gold Chain of Immortal Speed": 1, 793 | "Silver Chain of Demonic Life": 1, 794 | "Khameli": 1, 795 | "Nakara": 1, 796 | "Silver Chain of Transcendant Terror": 1, 797 | "Silver Chain of Demonic Lightning": 1, 798 | "Undead Lizard": 3, 799 | "Ice Dragon": 2, 800 | "Gold Chain of Demonic Fear": 1, 801 | "Metal Mantis": 3, 802 | "Thunder Basilisk": 6, 803 | "Ice Unicorn": 5, 804 | "Gold Talisman of Demonic Lightning": 1, 805 | "Metal Skeleton": 3, 806 | "Mendrion": 1, 807 | "Immortal Fox": 6, 808 | "Mutated Imp": 1, 809 | "Jad": 1, 810 | "Gold Talisman of Divine Life": 1, 811 | "Platinum Amulette of Lost Ether": 1, 812 | "Silver Talisman of Unstoppable Nightmare": 1, 813 | "Krerag": 1, 814 | "Rakku": 1, 815 | "Mutated Phoenix": 2, 816 | "Pairientonth, The Dark": 1, 817 | "Gold Chain of Lost Fire": 1, 818 | "Platinum Chain of Transcendant Blood": 1, 819 | "Undead Basilisk": 4, 820 | "Platinum Chain of Divine Death": 1, 821 | "Frayldrudus, Teacher of Wisdom": 1, 822 | "Gold Chain of Abundant Power": 1, 823 | "Crystal Unicorn": 2, 824 | "Gold Pendant of Untainted Ether": 1, 825 | "Silver Chain of Transcendant Fire": 1, 826 | "Silver Pendant of Unstoppable Ice": 1, 827 | "Silver Talisman of Infinite Power": 1, 828 | "Adamantium Chain of Evil Power": 1, 829 | "Undead Sprite": 2, 830 | "Silver Pendant of Infinite Fear": 1, 831 | "Silver Pendant of Untainted Lightning": 1, 832 | "Sparkgaze": 1, 833 | "Silver Talisman of Transcendant Fire": 1, 834 | "Platinum Chain of Hidden Light": 2, 835 | "Adamantium Amulette of Abundant Ice": 1, 836 | "Immortal Skeleton": 1, 837 | "Gold Talisman of Demonic Ice": 1, 838 | "Pebblebrewer": 1, 839 | "Silver Chain of Hidden Darkness": 1, 840 | "Guzdoq": 1, 841 | "Kadys": 1, 842 | "Silver Talisman of Eternal Blood": 1, 843 | "Silver Talisman of Swarming Speed": 1, 844 | "Bulriroth": 1, 845 | "Mirage": 1, 846 | "Iphandros": 1, 847 | "Silver Chain of Hidden Lightning": 1, 848 | "Mur'odoth": 1, 849 | "Silver Chain of Transcendant Death": 1, 850 | "Silver Chain of Unstoppable Nightmare": 1, 851 | "Silver Chain of Abundant Darkness": 1, 852 | "Naizzeth, The Tyrant": 1, 853 | "Gold Talisman of Infinite Life": 1, 854 | "Drivric": 1, 855 | "Immortal Jaguar": 5, 856 | "Vainniol, The Great": 1, 857 | "Molten Phoenix": 2, 858 | "Silver Chain of Corrupt Life": 1, 859 | "Gold Talisman of Unstoppable Light": 2, 860 | "Gold Talisman of Lost Fire": 1, 861 | "Uakug": 1, 862 | "Gold Pendant of Swarming Light": 2, 863 | "Silver Amulette of Evil Death": 1, 864 | "Adamantium Pendant of Unstoppable Blood": 1, 865 | "Crystal Amulette of Swarming Terror": 1, 866 | "Facesorrow": 1, 867 | "Gold Talisman of Abundant Power": 2, 868 | "Desert Phoenix": 4, 869 | "Pirophon": 1, 870 | "Hellmane": 1, 871 | "Adamantium Pendant of Swarming Lightning": 1, 872 | "Avonaco": 1, 873 | "Nuzzen, The Powerful": 1, 874 | "Teofelis": 1, 875 | "Adgig": 1, 876 | "Gutroz": 1, 877 | "Silver Pendant of Unstoppable Fear": 2, 878 | "Undead Unicorn": 1, 879 | "Gold Chain of Unstoppable Lightning": 1, 880 | "Silver Pendant of Untainted Blood": 2, 881 | "Gold Chain of Lost War": 1, 882 | "Crystal Amulette of Wicked War": 1, 883 | "Gold Pendant of Swarming Terror": 1, 884 | "Antesreksi": 1, 885 | "Shezzenth, The Protective": 1, 886 | "Crystal Talisman of Abundant Nightmare": 1, 887 | "Sorgor, The Chosen": 1, 888 | "Mutated Skeleton": 1, 889 | "Silver Chain of Wicked Blood": 1, 890 | "Gold Pendant of Eternal Life": 1, 891 | "Rut": 1, 892 | "Silver Chain of Evil Nightmare": 1, 893 | "Undead Hound": 4, 894 | "Silver Chain of Eternal Fire": 1, 895 | "Platinum Chain of Evil Light": 1, 896 | "Aroneus": 1, 897 | "Silver Pendant of Unstoppable Darkness": 1, 898 | "Silver Pendant of Overwhelming Power": 1, 899 | "Rocky": 1, 900 | "Carrioncutter": 1, 901 | "Gold Chain of Abundant Ice": 1, 902 | "Platinum Pendant of Untainted Ice": 1, 903 | "Platinum Talisman of Overwhelming Terror": 1, 904 | "Silver Chain of Abundant Life": 1, 905 | "Mutated Hawk": 4, 906 | "Silver Pendant of Abundant Light": 1, 907 | "Ashchaser": 1, 908 | "Solace": 1, 909 | "Zirgraz": 1, 910 | "Cave Dragon": 3, 911 | "Zrabbat": 1, 912 | "Rokkuq": 1, 913 | "Silver Pendant of Corrupt War": 1, 914 | "Zoglaras": 1, 915 | "Silver Chain of Infinite War": 2, 916 | "Nosisderth, Guardian of The South": 1, 917 | "Silver Chain of Infinite Death": 1, 918 | "Adamantium Chain of Overwhelming Speed": 1, 919 | "Apollo": 1, 920 | "Ice Ape": 2, 921 | "Chex": 1, 922 | "Darth": 1, 923 | "Teoxaroo": 1, 924 | "Silver Chain of Abundant Lightning": 1, 925 | "Andrae, The Seed Planter": 1, 926 | "Gold Talisman of Evil Lightning": 1, 927 | "Soavrayrth, The Slow": 1, 928 | "Silver Chain of Lost Lightning": 2, 929 | "Castiel": 1, 930 | "Platinum Amulette of Unstoppable Ice": 1, 931 | "Silver Chain of Corrupt Speed": 1, 932 | "Stelena": 1, 933 | "Gold Pendant of Swarming Life": 1, 934 | "Silver Chain of Swarming Speed": 1, 935 | "Silver Amulette of Swarming Nightmare": 1, 936 | "Crigoul": 1, 937 | "Silver Pendant of Hidden Ether": 1, 938 | "Kuwawanda": 1, 939 | "Zoltillos": 1, 940 | "Silver Chain of Overwhelming Fear": 1, 941 | "Pyrrais, The Careful": 1, 942 | "Chayliel": 1, 943 | "Havoc": 1, 944 | "Adamantium Pendant of Demonic Speed": 1, 945 | "Sadides": 1, 946 | "Gold Chain of Immortal War": 1, 947 | "Adamantium Chain of Hidden Ice": 1, 948 | "Silver Talisman of Swarming Lightning": 1, 949 | "Ice Phoenix": 2, 950 | "Teodeoboon": 1, 951 | "Gold Chain of Transcendant Pain": 1, 952 | "Gold Amulette of Wicked Terror": 1, 953 | "Adamantium Chain of Transcendant Light": 1, 954 | "Subhamati": 1, 955 | "Molten Dragon": 1, 956 | "Nanael": 1, 957 | "Silver Chain of Abundant Power": 1, 958 | "Platinum Chain of Overwhelming Light": 1, 959 | "Tapesel": 1, 960 | "Habriel": 1, 961 | "Gold Pendant of Hidden Fear": 1, 962 | "Adamantium Chain of Demonic Fear": 1, 963 | "Platinum Chain of Unstoppable Terror": 1, 964 | "Eerbiaz": 1, 965 | "Vequaniel": 1, 966 | "Herchel": 1, 967 | "Gojac": 1, 968 | "Rodianth, Protector of The Sky": 1, 969 | "Silver Pendant of Unstoppable War": 1, 970 | "Crystal Ghoul": 6, 971 | "Gold Pendant of Eternal Lightning": 1, 972 | "Gold Talisman of Abundant Speed": 1, 973 | "Torrelth, The Charmer": 1, 974 | "Platinum Chain of Lost Lightning": 1, 975 | "Ithuriel": 1, 976 | "Walanna": 1, 977 | "Platinum Amulette of Hidden Ice": 1, 978 | "Crystal Pendant of Immortal Death": 1, 979 | "Cecrises": 1, 980 | "Groulhopper": 1, 981 | "Saessai, The Grumpy": 1, 982 | "Silver Chain of Immortal Ice": 1, 983 | "Gold Chain of Demonic War": 1, 984 | "Crystal Chain of Unstoppable Speed": 1, 985 | "Semyaza": 1, 986 | "Gold Chain of Eternal Light": 2, 987 | "Platinum Chain of Divine Fire": 1, 988 | "Silver Pendant of Lost Speed": 1, 989 | "Oimrielyn, The Jealous One": 1, 990 | "Arttu": 1, 991 | "Adamantium Pendant of Infinite Nightmare": 1, 992 | "Silver Pendant of Swarming Blood": 1, 993 | "Crystal Pendant of Abundant Darkness": 1, 994 | "Ozduq": 1, 995 | "Crystal Amulette of Lost Nightmare": 1, 996 | "Alluhaliya": 1, 997 | "Silver Pendant of Hidden Darkness": 1, 998 | "Silver Talisman of Demonic Lightning": 1, 999 | "Badgauqaa": 1, 1000 | "Orgruun": 1, 1001 | "Silver Pendant of Divine Terror": 2, 1002 | "Molten Griffon": 7, 1003 | "Mutated Ent": 2, 1004 | "Platinum Pendant of Infinite Pain": 1, 1005 | "Samantha": 1, 1006 | "Silver Chain of Swarming Lightning": 1, 1007 | "Adamantium Chain of Unstoppable Nightmare": 1, 1008 | "Gold Pendant of Overwhelming Blood": 2, 1009 | "Platinum Talisman of Corrupt Power": 1, 1010 | "Adamantium Talisman of Demonic Ice": 1, 1011 | "Platinum Chain of Eternal Ice": 1, 1012 | "Adamantium Chain of Swarming Death": 1, 1013 | "Platinum Talisman of Demonic Pain": 1, 1014 | "Bezrathun": 1, 1015 | "Adamantium Talisman of Infinite Fire": 1, 1016 | "Silver Chain of Abundant Pain": 2, 1017 | "Silver Amulette of Hidden Blood": 1, 1018 | "Silver Pendant of Lost Ether": 1, 1019 | "Er'gonneth": 1, 1020 | "Alliboote": 1, 1021 | "Silver Chain of Evil Blood": 2, 1022 | "Adamantium Pendant of Evil Death": 1, 1023 | "Thayroa": 1, 1024 | "Cupcake": 1, 1025 | "Platinum Chain of Swarming Power": 1, 1026 | "Kagad": 1, 1027 | "Usiu": 1, 1028 | "Gold Amulette of Hidden Fear": 1, 1029 | "Silver Talisman of Swarming Terror": 1, 1030 | "Silver Chain of Infinite Nightmare": 1, 1031 | "Silver Pendant of Swarming Light": 1, 1032 | "Platinum Chain of Eternal Terror": 1, 1033 | "Ripley": 1, 1034 | "Platinum Chain of Immortal Power": 1, 1035 | "Platinum Chain of Corrupt Power": 1, 1036 | "Varkon": 1, 1037 | "Huslu": 1, 1038 | "Gold Pendant of Corrupt Ice": 1, 1039 | "Metal Unicorn": 4, 1040 | "Pulreonass, Lord of Fire": 1, 1041 | "Myr": 1, 1042 | "Gold Chain of Untainted Darkness": 1, 1043 | "Silver Talisman of Wicked Ice": 1, 1044 | "Platinum Amulette of Evil Nightmare": 1, 1045 | "Humbert": 1, 1046 | "Mutated Mantis": 1, 1047 | "Silver Pendant of Demonic Speed": 1, 1048 | "Goqrugek": 1, 1049 | "Silver Chain of Immortal War": 1, 1050 | "Theretes": 1, 1051 | "Platinum Talisman of Demonic Ether": 1, 1052 | "Boddred, The Bright": 1, 1053 | "Smokestorm": 1, 1054 | "Thanede": 1, 1055 | "Adamantium Chain of Divine Fear": 1, 1056 | "Gold Chain of Unstoppable War": 1, 1057 | "Gold Talisman of Abundant Nightmare": 1, 1058 | "Silver Pendant of Wicked Ice": 1, 1059 | "Burnard": 1, 1060 | "Crystal Chain of Immortal Death": 1, 1061 | "Tandra": 1, 1062 | "Gold Pendant of Infinite Lightning": 1, 1063 | "Undead Ghoul": 1, 1064 | "Daogurk": 1, 1065 | "Scorite": 1, 1066 | "Gold Chain of Hidden Ether": 1, 1067 | "Adamantium Chain of Corrupt Ether": 1, 1068 | "Goq": 1, 1069 | "Silver Chain of Overwhelming Lightning": 1, 1070 | "Baron": 1, 1071 | "Silver Chain of Immortal Light": 1, 1072 | "Narkede": 1, 1073 | "Platinum Amulette of Corrupt Ether": 1, 1074 | "Adamantium Talisman of Overwhelming Fear": 1, 1075 | "Gold Chain of Abundant Light": 1, 1076 | "Silver Talisman of Untainted Darkness": 1, 1077 | "Bane": 1, 1078 | "Nessal, The Stubborn": 1, 1079 | "Preparvan": 1, 1080 | "Platinum Chain of Untainted Blood": 1, 1081 | "Immortal Golem": 1, 1082 | "Crystal Talisman of Overwhelming Darkness": 1, 1083 | "Gold Chain of Evil Terror": 1, 1084 | "Amnayelth": 1, 1085 | "Thotus": 1, 1086 | "Niddecseo": 1, 1087 | "Gold Amulette of Unstoppable Ether": 1, 1088 | "Gold Chain of Infinite Fire": 1, 1089 | "Metal Ape": 1, 1090 | "Adamantium Chain of Untainted Fire": 1, 1091 | "Gold Amulette of Abundant Nightmare": 1, 1092 | "Silver Chain of Divine Pain": 1, 1093 | "Gergamak": 1, 1094 | "Cyibjo": 1, 1095 | "Misirryss, The Clean": 1, 1096 | "Jasonius": 1, 1097 | "Silver Chain of Overwhelming Fire": 1, 1098 | "Silver Talisman of Infinite Death": 1, 1099 | "Traarmu": 1, 1100 | "Gold Chain of Wicked Pain": 1, 1101 | "Thunder Skeleton": 4, 1102 | "Adalbero": 1, 1103 | "Adamantium Chain of Lost Ether": 1, 1104 | "Robbie": 1, 1105 | "Vasillos": 1, 1106 | "Vot": 1, 1107 | "Silver Pendant of Eternal Terror": 1, 1108 | "Trashkeeper": 1, 1109 | "Qaupaal": 1, 1110 | "Silver Pendant of Transcendant Life": 1, 1111 | "Adamantium Pendant of Swarming Fear": 2, 1112 | "Platinum Chain of Evil Terror": 1, 1113 | "Silver Chain of Hidden Life": 1, 1114 | "Gold Pendant of Lost Fear": 1, 1115 | "Silver Talisman of Swarming Fire": 1, 1116 | "Silver Talisman of Unstoppable Power": 1, 1117 | "Tadhiel": 1, 1118 | "Savvades": 1, 1119 | "Buck": 1, 1120 | "Tanbhanu": 1, 1121 | "Gold Pendant of Infinite Blood": 1, 1122 | "Crystal Chain of Divine Ether": 1, 1123 | "Silver Amulette of Lost Blood": 1, 1124 | "Ophiel": 1, 1125 | "Zoamia, The Scary One": 1, 1126 | "Bero": 1, 1127 | "Silver Pendant of Corrupt Pain": 1, 1128 | "Gold Pendant of Abundant War": 1, 1129 | "Silver Chain of Divine Terror": 2, 1130 | "Silver Amulette of Hidden Lightning": 1, 1131 | "Adellum": 1, 1132 | "Timien": 1, 1133 | "Crystal Chain of Lost Nightmare": 2, 1134 | "Justin": 1, 1135 | "Mutated Lizard": 2, 1136 | "Vaz": 1, 1137 | "Meteor": 1, 1138 | "Iorurrynth, The Ravager": 1, 1139 | "Ariuk": 1, 1140 | "Metal Leopard": 1, 1141 | "Hammer": 1, 1142 | "Orsaline": 1, 1143 | "Silver Chain of Abundant Blood": 1, 1144 | "Silver Amulette of Divine Darkness": 1, 1145 | "Platinum Chain of Infinite Power": 1, 1146 | "Theo": 1, 1147 | "Silver Pendant of Corrupt Light": 1, 1148 | "Silver Chain of Lost Fire": 1, 1149 | "Noilriesso, The Wind Whisperer": 1, 1150 | "Adamantium Talisman of Evil Death": 1, 1151 | "Silver Pendant of Demonic Fear": 1, 1152 | "Silver Chain of Demonic Pain": 1, 1153 | "Gold Pendant of Infinite Life": 1, 1154 | "Silver Pendant of Abundant Fire": 1, 1155 | "Gold Chain of Hidden War": 1, 1156 | "Georgy": 1, 1157 | "Lyconeus": 1, 1158 | "Bernd": 1, 1159 | "Silver Pendant of Immortal Ice": 1, 1160 | "Crystal Chain of Abundant Fear": 1, 1161 | "Paeldruss, The Revolutionary": 1, 1162 | "Sarebra": 1, 1163 | "Immortal Imp": 1, 1164 | "Tirlag, The Unphased": 1, 1165 | "Adamantium Chain of Overwhelming Nightmare": 1, 1166 | "Gold Pendant of Unstoppable Ice": 1, 1167 | "Gold Pendant of Corrupt War": 1, 1168 | "Krarob": 1, 1169 | "Iajax": 1, 1170 | "Idaros": 1, 1171 | "Silver Pendant of Corrupt Life": 1, 1172 | "Emberfeet": 1, 1173 | "Cadriel": 1, 1174 | "Artereus": 1, 1175 | "Buster": 1, 1176 | "Gold Pendant of Abundant Ether": 1, 1177 | "Anaiel": 1, 1178 | "Kuma": 1, 1179 | "Silver Pendant of Unstoppable Fire": 1, 1180 | "Gold Chain of Demonic Death": 1, 1181 | "Iangrukkad": 1, 1182 | "Immortal Phoenix": 1, 1183 | "Grover": 1, 1184 | "Silver Talisman of Untainted Terror": 1, 1185 | "Gold Chain of Lost Darkness": 1, 1186 | "Gold Pendant of Evil War": 1, 1187 | "Vaot": 1, 1188 | "Silver Talisman of Wicked Fire": 1, 1189 | "Crystal Chain of Eternal Speed": 1, 1190 | "Silver Pendant of Abundant Nightmare": 1, 1191 | "Silver Talisman of Demonic Darkness": 2, 1192 | "Silver Pendant of Demonic Life": 1, 1193 | "Apostalus": 1, 1194 | "Mitramalin": 1, 1195 | "Silver Chain of Unstoppable Terror": 1, 1196 | "Platinum Chain of Overwhelming Death": 1, 1197 | "Berengaria": 1, 1198 | "Adamantium Pendant of Demonic Lightning": 1, 1199 | "Platinum Chain of Wicked Power": 1, 1200 | "Venus": 1, 1201 | "Silver Chain of Unstoppable Speed": 1, 1202 | "Silver Pendant of Eternal Ether": 1, 1203 | "Platinum Pendant of Hidden War": 1, 1204 | "Silver Chain of Demonic Speed": 1, 1205 | "Nacealing": 1, 1206 | "Silver Chain of Corrupt War": 1, 1207 | "Slimeflayer": 1, 1208 | "Silver Chain of Swarming Fear": 1, 1209 | "Penouddeopea": 1, 1210 | "Silver Chain of Evil Pain": 1, 1211 | "Platinum Chain of Lost Fire": 1, 1212 | "Gold Chain of Evil Ice": 1, 1213 | "Silver Pendant of Overwhelming Ether": 1, 1214 | "Gold Pendant of Transcendant War": 1, 1215 | "Ummeith, The Arbiter": 1, 1216 | "Adamantium Pendant of Untainted Death": 1, 1217 | "Gold Chain of Wicked Ether": 1, 1218 | "Kooparak": 1, 1219 | "Platinum Chain of Overwhelming Pain": 1, 1220 | "Druzur": 1, 1221 | "Silver Pendant of Unstoppable Terror": 1, 1222 | "Platinum Pendant of Untainted Lightning": 1, 1223 | "Turmyray, Icebreath": 1, 1224 | "Silver Chain of Infinite Fire": 1, 1225 | "Silver Chain of Overwhelming Light": 1, 1226 | "Silver Pendant of Hidden Terror": 1, 1227 | "Silver Pendant of Hidden Lightning": 1, 1228 | "Crystal Pendant of Untainted Death": 1, 1229 | "Lalaus": 1, 1230 | "Patch": 1, 1231 | "Silver Pendant of Wicked War": 1, 1232 | "Striker": 1, 1233 | "Crystal Chain of Transcendant Life": 1, 1234 | "Platinum Chain of Lost Power": 1, 1235 | "Gold Chain of Unstoppable Ether": 1, 1236 | "Platinum Chain of Untainted Nightmare": 1, 1237 | "Gold Amulette of Hidden Ice": 1, 1238 | "Silver Chain of Abundant Ice": 1, 1239 | "Silver Chain of Hidden Death": 1, 1240 | "Silver Pendant of Swarming Darkness": 1, 1241 | "Imnaton": 1, 1242 | "Choziass, Guardian of The North": 1, 1243 | "Astodem": 1, 1244 | "Dandelion": 1, 1245 | "Silver Pendant of Eternal Fear": 1, 1246 | "Gold Pendant of Wicked Light": 1, 1247 | "Platinum Pendant of Evil Nightmare": 1, 1248 | "Platinum Chain of Evil Lightning": 1, 1249 | "George": 1, 1250 | "Adamantium Pendant of Hidden Death": 1, 1251 | "Kolbjorn": 1, 1252 | "Kaggon": 1, 1253 | "Crystal Pendant of Divine Speed": 1, 1254 | "Platinum Talisman of Corrupt Life": 1, 1255 | "Platinum Talisman of Unstoppable Nightmare": 1, 1256 | "Twinky": 1, 1257 | "Sollau": 1, 1258 | "Varrava": 1, 1259 | "Adamantium Pendant of Lost Terror": 1, 1260 | "Perrolio": 1, 1261 | "Uto, Giver of Life": 1, 1262 | "Silver Pendant of Transcendant Death": 1, 1263 | "Blaze": 1, 1264 | "Silver Chain of Wicked Nightmare": 1, 1265 | "Silver Chain of Immortal Lightning": 1, 1266 | "Condololth, The Skinny One": 1, 1267 | "Crystal Pendant of Infinite Blood": 1, 1268 | "Elephausseomu": 1, 1269 | "Platinum Amulette of Eternal Lightning": 1, 1270 | "Silver Talisman of Demonic War": 1, 1271 | "Barrattiel": 1, 1272 | "Mutated Sprite": 1, 1273 | "Silver Talisman of Immortal Life": 1, 1274 | "Gold Chain of Corrupt Nightmare": 1, 1275 | "Platinum Chain of Abundant War": 1, 1276 | "Platinum Chain of Infinite Ice": 1, 1277 | "Dudark": 1, 1278 | "Chac": 1, 1279 | "Gold Pendant of Corrupt Terror": 1, 1280 | "Crystal Amulette of Evil War": 1, 1281 | "Pudoa, Lord of The Green": 1, 1282 | "Adamantium Chain of Divine Ether": 1, 1283 | "Gold Pendant of Abundant Pain": 1, 1284 | "Yairliz": 1, 1285 | "Gold Pendant of Immortal Nightmare": 1, 1286 | "Gold Talisman of Divine Blood": 1, 1287 | "Adamantium Amulette of Wicked Terror": 1, 1288 | "Silver Chain of Divine Speed": 1, 1289 | "Silver Chain of Swarming Terror": 1, 1290 | "Vupiss, The Quiet": 1, 1291 | "Adamantium Amulette of Corrupt Darkness": 1, 1292 | "Ugrahava": 1, 1293 | "Idomalion": 1, 1294 | "Goizzug, The Somber": 1, 1295 | "Crystal Amulette of Eternal Darkness": 1, 1296 | "Adamantium Pendant of Immortal Blood": 1, 1297 | "Ruktuc": 1, 1298 | "Crystal Chain of Abundant Nightmare": 1, 1299 | "Adamantium Amulette of Wicked Blood": 1, 1300 | "Gold Chain of Lost Light": 1, 1301 | "Rix": 1, 1302 | "Athziaa": 1, 1303 | "Gold Pendant of Transcendant Speed": 1, 1304 | "Crystal Pendant of Wicked Speed": 1, 1305 | "Adamantium Talisman of Infinite Terror": 1, 1306 | "Silver Pendant of Untainted Ice": 1, 1307 | "Gold Talisman of Infinite Light": 1, 1308 | "Silver Pendant of Hidden Fear": 1, 1309 | "Platinum Chain of Immortal Death": 1, 1310 | "Dalitaari": 1, 1311 | "Platinum Talisman of Eternal War": 1, 1312 | "Silver Chain of Lost Terror": 1, 1313 | "Crystal Amulette of Unstoppable Pain": 1, 1314 | "Adamantium Pendant of Infinite Power": 1, 1315 | "Iaoel": 1, 1316 | "Silver Talisman of Unstoppable Fear": 1, 1317 | "Silver Talisman of Hidden Fire": 1, 1318 | "Anteflooksu": 1, 1319 | "Platinum Chain of Unstoppable War": 1, 1320 | "Hoghyn, Eternal Savior": 1, 1321 | "Kembur, Worm Heart": 1, 1322 | "Platinum Chain of Abundant Terror": 1, 1323 | "Crystal Pendant of Abundant Death": 1, 1324 | "Gold Chain of Divine Light": 1, 1325 | "Gold Chain of Eternal Lightning": 1, 1326 | "Isobel": 1, 1327 | "Marcix": 1, 1328 | "Platinum Talisman of Demonic Power": 1, 1329 | "Silver Chain of Abundant Fire": 1, 1330 | "Silver Talisman of Overwhelming Light": 1, 1331 | "Crowfury": 1, 1332 | "Hialzoih": 1 1333 | } 1334 | --------------------------------------------------------------------------------