Reference: items: every item class by category - id, name, English name, weight, price, GUID - the keys the API takes, one big table; load only when the mode needs one
# Items
> Every item class of the game by category: the ids, names, English names and GUIDs a script or a chat command may use.
Every item class of Kingdom Come: Deliverance II - **5604** classes from the game's `Tables.pak`
(`Libs/Tables/item/item*.xml`, Tables.pak), one page per category. The category is the
table's row type - the word `FindItems` matches and `[audit] guarded_categories` in `server.toml` names.
A script or a chat command names an item by any of four keys:
- the **id** - `GivePlayerItem(pid, 2492)`, `/give 2492`: the class's place in the name-sorted export. Stable for
one export of one game build; a game patch that adds items shifts it, so keep the name or the GUID in anything durable;
- the game's **name** - `CreatePickup("longSwordDuel", ...)`, `/give longSwordDuel` (case-insensitive);
- the **English name** - `/give duelling longsword 2`, `GetItemClass("Duelling longsword")`. When several classes share
one (`Broken shield` fifteen times) the plainest answers: no `_empty`, `_broken`, `_damaged` or `_dirty` suffix, then
the lowest id; `/items ` lists the rest;
- the class **GUID**, the durable key the protocol carries (the only one accepted without the tables export).
In a game mode: `GetItemClass(key)`, `GetItemName(key)`, `GetItemInfo(key)`, `FindItems(pattern [, max])`
([Lua](/lua/server/#catalogues), [C#](/csharp/server/)); in the chat: `/items `, `/give`, `/item`.
| Page | Entries |
|---|---:|
| [Alchemy bases (`AlchemyBase`)](/reference/items/alchemy-base/) | 4 |
| [Ammunition (`Ammo`)](/reference/items/ammo/) | 41 |
| [Armour (`Armor`) (1/2: B-F)](/reference/items/armor-1/) | 1424 |
| [Armour (`Armor`) (2/2: F-Z)](/reference/items/armor-2/) | 1424 |
| [Bows, crossbows and guns (`MissileWeapon`)](/reference/items/missile-weapon/) | 57 |
| [Crafting materials (`CraftingMaterial`)](/reference/items/crafting-material/) | 52 |
| [Dice (`Die`)](/reference/items/die/) | 45 |
| [Dice badges (`DiceBadge`)](/reference/items/dice-badge/) | 36 |
| [Documents (`Document`)](/reference/items/document/) | 403 |
| [Food and drink (`Food`)](/reference/items/food/) | 328 |
| [Helmets (`Helmet`)](/reference/items/helmet/) | 152 |
| [Herbs (`Herb`)](/reference/items/herb/) | 37 |
| [Hoods (`Hood`)](/reference/items/hood/) | 150 |
| [Item aliases (`ItemAlias`)](/reference/items/item-alias/) | 51 |
| [Key rings (`KeyRing`)](/reference/items/key-ring/) | 1 |
| [Keys (`Key`)](/reference/items/key/) | 2 |
| [Melee weapons and shields (`MeleeWeapon`)](/reference/items/melee-weapon/) | 665 |
| [Miscellaneous items (`MiscItem`)](/reference/items/misc-item/) | 414 |
| [Money (`Money`)](/reference/items/money/) | 1 |
| [NPC tools (`NPCTool`)](/reference/items/npctool/) | 258 |
| [Ointments and bandages (`Ointment`)](/reference/items/ointment/) | 28 |
| [Pickable items (`PickableItem`)](/reference/items/pickable-item/) | 8 |
| [Poisons (`Poison`)](/reference/items/poison/) | 15 |
| [Quick-slot containers (`QuickSlotContainer`)](/reference/items/quick-slot-container/) | 8 |
# Items: Alchemy bases
> The 4 item classes of the game's AlchemyBase table: id, name, English name, weight, price and class GUID.
The game's **`AlchemyBase`** rows - 4 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 7 | `alchemyOil` | | 0 | 0 | `34bd1d0b-1203-42a0-b9b4-d3585a4d9b48` |
| 8 | `alchemySpiritus` | | 0 | 0 | `310e921d-da62-48e4-88ef-de9f295e0045` |
| 9 | `alchemyWater` | | 0 | 0 | `e96d768e-04e5-4480-9197-1c256d642ddc` |
| 10 | `alchemyWine` | | 0 | 0 | `d5efb270-948b-4a38-b391-38b2edd31c8d` |
# Items: Ammunition
> The 41 item classes of the game's Ammo table: id, name, English name, weight, price and class GUID.
The game's **`Ammo`** rows - 41 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 123 | `arrow_crude` | Crude arrow | 0.1 | 10 | `dfea5d01-b25c-414a-9ab4-6911a5f82118` |
| 124 | `arrow_cutting` | Wounding arrow | 0.1 | 33 | `c49aa63a-07a6-4417-9f9b-97f2712a4cd0` |
| 125 | `arrow_enh_cutting` | Improved wounding arrow | 0.1 | 98 | `13ba7468-11a2-483d-8cb9-25ce36a2d228` |
| 126 | `arrow_enh_hunting` | Improved hunting arrow | 0.1 | 88 | `802507e9-d620-47b5-ae66-08fcc314e26a` |
| 127 | `arrow_enh_piercing` | Improved piercing arrow | 0.1 | 111 | `a5b31bbc-1e11-4831-835b-c06d5b13a7da` |
| 128 | `arrow_enh_precise` | Improved long-range arrow | 0.1 | 79 | `7db6b854-e307-4a47-ba39-943190b2469e` |
| 129 | `arrow_EXAMPLE` | New test arrow | 0.1 | 10 | `278d26d1-e9a7-4354-84f9-37d20cb72b45` |
| 130 | `arrow_hunting` | Hunting arrow | 0.1 | 52 | `710e3706-8974-404b-b23a-6f51670ef1ed` |
| 131 | `arrow_normal` | Ordinary arrow | 0.1 | 29 | `ad6f0f01-aec4-44d1-982c-1210eb01b74a` |
| 132 | `arrow_piercing` | Piercing arrow | 0.1 | 68 | `e5b3f681-3714-4623-97be-4015fa454797` |
| 133 | `arrow_precise` | Long-range arrow | 0.1 | 38 | `d5e6764d-18ba-44cb-8dd0-6640a17785a8` |
| 134 | `arrow_tournament` | Tournament arrow | 0.1 | 14 | `c20b2a42-8d5c-48bc-ad24-a4a529207ca9` |
| 419 | `battle_arrow` | Battle arrow | 0.1 | 14 | `d2a18521-696e-42be-adf3-0b82ad84d8bc` |
| 420 | `battle_bolt` | Battle bolt | 0.1 | 10 | `ec38d11f-63ca-4dac-b9f5-ce4ff648b59c` |
| 433 | `battle_shot` | Battle shot | 0.1 | 30 | `fb30c64e-2360-4ed7-b805-531b3424fe4d` |
| 479 | `bolt_crude` | Crude bolt | 0.1 | 12 | `bcdd6887-8c80-4bae-8aa6-567574a75867` |
| 480 | `bolt_cutting` | Wounding bolt | 0.1 | 48 | `7b0531bd-cbd8-4f35-a626-a872467e4fd4` |
| 481 | `bolt_enh_cutting` | Improved wounding bolt | 0.1 | 75 | `e6652736-4cb4-42e9-b012-050064405f37` |
| 482 | `bolt_enh_hunting` | Improved hunting bolt | 0.1 | 70 | `b738d184-4ae1-4d74-8fac-b8db1943b1d4` |
| 483 | `bolt_enh_piercing` | Improved piercing bolt | 0.1 | 74 | `c82f1a8d-3617-42b7-98a9-36e96ff71294` |
| 484 | `bolt_enh_precise` | Sharpshooter's bolt | 0.1 | 72 | `081fc4a1-25e9-4492-8dc8-2d9d6668c07a` |
| 485 | `bolt_fine` | Fine bolt | 0.1 | 100 | `67c11981-a636-42d8-8bb2-84f5170825eb` |
| 486 | `bolt_hunting` | Hunting bolt | 0.1 | 37 | `40337bef-e965-4a60-abee-695e9a784fa4` |
| 487 | `bolt_normal` | Common bolt | 0.1 | 23 | `8460003f-637f-4713-92c9-4954037c4b9c` |
| 488 | `bolt_piercing` | Piercing bolt | 0.1 | 50 | `166b4c7b-5e17-48db-bf0d-02f24eacdcbf` |
| 489 | `bolt_precise` | Marksman's bolt | 0.1 | 48 | `1ed55cb8-80bd-4190-981b-146dc916d434` |
| 490 | `bolt_tournament` | Tournament bolt | 0.1 | 22 | `a431da4e-3472-4bc8-9817-f5357ebf853b` |
| 1538 | `combattest_shot_ball` | A suspicious bag | 0.1 | 60 | `85b8bf86-3507-4348-8374-5c6cee362334` |
| 3328 | `magickySip_magickaSipka` | Arrow from Karel's Head | 0.1 | 50 | `55e0731f-4658-485e-96cd-74bda87edcd0` |
| 3787 | `poi_strelnice_blackArrow` | Black arrow | 0.1 | 90 | `1abe5629-ffc4-4693-9cd7-700ea75e3386` |
| 3839 | `posledniPomazani_bohutaOpBolt` | Marksman's bolt | 0.1 | 50 | `ad5bcf05-c082-4ead-be9c-2f16c6d3dde7` |
| 4688 | `shot_ball` | Lead ball | 0.1 | 500 | `f10ded12-a41c-40bf-a8ae-883d4e845059` |
| 4689 | `shot_scatter` | Scattershot | 0.1 | 300 | `b302ee9d-d64c-4dc2-b045-05cd7d238eb4` |
| 4958 | `test_arrow` | A suspicious bag | 0.1 | 30 | `398f4cbb-d1db-436b-aea3-fbeeaff1318c` |
| 4960 | `test_ball` | A suspicious bag | 0.1 | 30 | `398f4cbb-d1db-436b-aea3-fbeeaff1318e` |
| 4964 | `test_barbora_coolArrow` | A suspicious bag | 0.1 | 60 | `b3b18ab1-d46b-4818-b12e-b99142e8e9b3` |
| 4968 | `test_barbora_lameArrow` | A suspicious bag | 0.1 | 60 | `e08b4ee1-ab7f-4ff3-b019-1eb31dcb9382` |
| 4981 | `test_barbora_sortofArrow` | A suspicious bag | 0.1 | 60 | `a4d75b12-011e-4a35-a21c-dc1f6082affe` |
| 4986 | `test_better_arrow` | A suspicious bag | 0.1 | 300 | `398f4cbb-0000-436b-aea3-fbeeaff1318c` |
| 4997 | `test_bolt` | A suspicious bag | 0.1 | 30 | `398f4cbb-d1db-436b-aea3-fbeeaff1318d` |
| 5050 | `test_shotgun` | A suspicious bag | 0.1 | 30 | `398f4cbb-d1db-436b-aea3-fbeeaff1318f` |
# Items: Armour (1/2: B-F)
> The 1424 item classes of the game's Armor table: id, name, English name, weight, price and class GUID.
The game's **`Armor`** rows - 1424 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 1 | `_B` | A suspicious bag | 0.2 | 565 | `36b84113-9aee-4fd2-ba08-ec53a9114eab` |
| 2 | `_TEST` | A suspicious bag | 0.8 | 241 | `4d887670-13cb-746d-5e27-5d234e146cb3` |
| 3 | `_test_attachmnet_shirt` | A suspicious bag | 0.8 | 2119 | `4cac53f7-2971-4b94-577a-a4b310a7c4a8` |
| 4 | `_test_female_cotte` | A suspicious bag | 0.8 | 4000 | `41c13ac4-ee03-073c-3a31-3f04a97e6abd` |
| 5 | `_test_Radek` | A suspicious bag | 4.5 | 42 | `48a3e071-1a87-a5c1-9291-568fdea21e8c` |
| 88 | `ArmBrigandine_placeholder` | A suspicious bag | 4.5 | 2213 | `141b79e0-fe55-4215-bc95-2242e8b4e997` |
| 90 | `ArmPlate01_m01_C2` | Couters with rondel | 1 | 741 | `3f5dc1aa-ae52-4760-a466-0ebac0d483ed` |
| 91 | `ArmPlate01_m02_C2` | Couters with rondel | 1 | 741 | `951c694f-0067-4456-b182-16b9938bbab9` |
| 92 | `ArmPlate01_m03_C2` | Couters with rondel | 1 | 745 | `a3c3146a-84a7-4c98-a7a9-eb27d547e547` |
| 93 | `ArmPlate01_m04_C2` | Couters with rondel | 1 | 741 | `26475e65-7714-47cc-9125-4a04814bb087` |
| 94 | `ArmPlate02_m01_C3` | Plate knight sleeves | 4 | 16556 | `d89df714-7b5e-41a0-a3f6-d9538a97e630` |
| 95 | `ArmPlate02_m02_C3` | Plate knight sleeves | 4 | 16556 | `aea861d5-30ef-483d-a326-6a29a98ea726` |
| 96 | `ArmPlate02_m03_C3` | Plate knight sleeves | 4 | 16556 | `344b633a-b7a0-44ef-8a11-9d1288f9a0ca` |
| 97 | `ArmPlate02_m04_C3` | Plate knight sleeves | 4 | 16556 | `f9be9c8b-de15-4216-bf0d-7e71d25c0b84` |
| 98 | `ArmPlate02_m05_C3` | Plate knight sleeves | 4 | 16556 | `1c0572da-4b5a-40ba-b23f-b8baedbd03a7` |
| 99 | `ArmPlate03_m01_D1` | Couters | 1 | 460 | `8dd4862d-8290-4f36-ac8b-c53d42c60f65` |
| 100 | `ArmPlate03_m02_D1` | Couters | 1 | 460 | `0bd0ee54-f7c8-4808-b620-da6d059640fe` |
| 101 | `ArmPlate03_m03_D1` | Couters | 1 | 460 | `76f096c4-6829-43fb-8101-a163d15468e0` |
| 102 | `ArmPlate03_m04_D1` | Couters | 1 | 460 | `be0d233f-7e06-4dcb-aa5f-67b99aee2efc` |
| 103 | `ArmPlate04_m01_A5` | Nuremberg plate sleeves | 6 | 87582 | `410ee66c-ee38-4d67-9a93-ac1ec288f89c` |
| 104 | `ArmPlate04_m02_A5` | Nuremberg plate sleeves | 6 | 87582 | `2d2efb88-50a1-4923-93d4-b4320ffab45e` |
| 105 | `ArmPlate04_m03_A5` | Nuremberg plate sleeves | 6 | 84695 | `38e9a461-5607-457f-bd8d-933fa9138551` |
| 106 | `ArmPlate04_m04_A5` | Nuremberg plate sleeves | 6 | 84695 | `11b0fbff-28b9-409c-81ee-c9b5eda50921` |
| 107 | `ArmPlate04_m05_A5` | Nuremberg plate sleeves | 6 | 84695 | `5905fc54-67d4-43b4-8f0f-fc9f3fd733c3` |
| 108 | `ArmPlate04_m06_A5` | Nuremberg plate sleeves | 6 | 87582 | `54a1327a-76f5-4f15-9780-5edcb794760d` |
| 109 | `ArmPlate04_m07_A5` | Nuremberg plate sleeves | 6 | 84695 | `2d081144-adc3-4eb7-9c6d-355daa600faf` |
| 110 | `ArmPlate04_m08_A5` | Nuremberg plate sleeves | 6 | 87582 | `a5322fcd-27b4-4f4e-bfbf-49c519c74c74` |
| 111 | `ArmPlate04_mAlberich` | Nuremberg plate sleeves | 6 | 87582 | `2366d5d2-89f2-4467-bab1-f522b64ad2b1` |
| 112 | `ArmPlate05_m01_B4` | Magdeburg plate arms | 4.5 | 29309 | `1eab8a90-7ca5-4aba-ace2-547de78086f4` |
| 113 | `ArmPlate05_m02_B4` | Magdeburg plate arms | 4.5 | 27562 | `3f31f6fd-e150-4564-80a5-2a9d1ed7dd6b` |
| 114 | `ArmPlate05_m03_B4` | Magdeburg plate arms | 4.5 | 27562 | `438298f9-3657-4fce-8052-a7f393cba29e` |
| 115 | `ArmPlate05_m04_B4` | Magdeburg plate arms | 4.5 | 29309 | `f9aed059-bbe3-4144-af1f-8ac41bd5173b` |
| 116 | `ArmPlate05_mAulitz` | Magdeburg plate arms | 5 | 39662 | `dd6e5871-9436-4825-9546-ee27c5f8735b` |
| 117 | `ArmPlate06_m01_A5` | Kuttenberg plate sleeves | 4.2 | 29309 | `dae27df7-d30b-4c93-bd22-5a0d95478c50` |
| 118 | `ArmPlate_placeholder` | A suspicious bag | 4.5 | 278 | `e046f9d4-d12f-4090-8836-a407717ae944` |
| 119 | `ArmPlateBergov_m01` | Magdeburg plate arms | 5 | 39662 | `c324577c-469f-4d89-a156-b7ab0a8ef45e` |
| 120 | `ArmPlateBrunswig_m01` | Brunswick's plate sleeves | 4 | 17465 | `448e8c3b-a420-41ff-af0f-b98d48784ea8` |
| 121 | `ArmPlateHanush_m01` | Magdeburg plate arms | 5 | 39662 | `ed42a542-70f4-486f-be47-5ac6a237ba87` |
| 191 | `BagOverHead_m01` | A suspicious bag | 2.6 | 180 | `0d0ba084-8eba-43b3-a1d6-48643c1a07d3` |
| 295 | `BasicBridle01_m01` | Soft leather bridle | 2 | 1500 | `6ebbf914-5917-4ce0-850b-caf2c04f6562` |
| 296 | `BasicBridle01_m02` | Soft leather bridle | 2 | 1500 | `eff39384-5a02-4cc5-89d8-4717824480bc` |
| 297 | `BasicBridle01_m03` | Soft leather bridle | 2 | 1500 | `8033fb08-2fbb-40fd-88a0-db257ea7409a` |
| 298 | `BasicBridle01_m04` | Soft leather bridle | 2 | 1500 | `d9277418-34a7-42c5-8514-03e1f1d4850f` |
| 299 | `BasicBridle01_m05` | Soft leather bridle | 2 | 1500 | `aa4fe572-9442-4184-8dba-d8c91efd3700` |
| 300 | `BasicBridle01_m06` | Soft leather bridle | 2 | 1500 | `3a8dc292-52a2-4140-82af-eaa8737a52e9` |
| 301 | `BasicBridle01_m07` | Soft leather bridle | 2 | 1500 | `9fc5c8ee-4b81-4e99-8b84-b2fa60b833b5` |
| 302 | `BasicBridle01_m08` | Soft leather bridle | 2 | 1500 | `fb6859ba-cda9-417b-926c-97e2357d51df` |
| 303 | `BasicBridle01_m09` | Soft leather bridle | 2 | 1500 | `7093c5df-79d8-41f3-9e9d-f3227072b875` |
| 304 | `BasicBridle01_m10` | Soft leather bridle | 2 | 1500 | `d6da5adc-f3aa-4e20-b65e-903971bbe55a` |
| 305 | `BasicBridle02_m01` | Soft leather bridle | 2.2 | 2000 | `49d08322-10f6-4f56-b9ae-ceb8b62d5c52` |
| 306 | `BasicBridle02_m02` | Bridle with plating | 2.2 | 2000 | `c2749a78-ed35-4df9-a7e9-0942bc8ccc9d` |
| 307 | `BasicBridle02_m03` | Bridle with plating | 2.2 | 2000 | `4ed20d32-2ae9-4eae-8b66-4f017eeb59ab` |
| 308 | `BasicBridle02_m04` | Bridle with plating | 2.2 | 2000 | `e6ea8edc-0c8a-4e93-9ba2-0b2c67cfd336` |
| 309 | `BasicBridle02_m05` | Bridle with plating | 2.2 | 2000 | `89001105-166c-4276-b92c-da1b6bb83805` |
| 310 | `BasicBridle02_m06` | Bridle with plating | 2.2 | 2000 | `596212ea-ce9b-4b8c-af09-278ae2d834bb` |
| 311 | `BasicBridle02_m07` | Bridle with plating | 2.2 | 2000 | `21f1f549-1bbb-479c-8368-0ee986dc7636` |
| 312 | `BasicBridle02_m08` | Bridle with plating | 2.2 | 2000 | `c5d6da49-48b0-461c-b7ae-eb16b0599b15` |
| 313 | `BasicBridle02_m09` | Bridle with plating | 2.2 | 2000 | `9c4be44a-ddcf-4829-9cf4-71f0161c5108` |
| 314 | `BasicBridle02_m10` | Bridle with plating | 2.2 | 2000 | `6f04d4c1-d6bf-440b-a199-f6a081843558` |
| 315 | `BasicBridle03_m01` | Noseband bridle | 2 | 1500 | `3a865dd3-3380-456a-9818-7b96efe83876` |
| 316 | `BasicBridle03_m02` | Noseband bridle | 2 | 1500 | `c68f7174-ae53-4d75-ac92-88c54eccc452` |
| 317 | `BasicBridle03_m03` | Noseband bridle | 2 | 1500 | `3fed5dda-18f1-4e5e-b1f8-471a0f7d1241` |
| 318 | `BasicBridle03_m04` | Noseband bridle | 2 | 1500 | `e6352ea6-c400-4284-ae13-dc2c04e6ea4b` |
| 319 | `BasicBridle03_m05` | Noseband bridle | 2 | 1500 | `ded459e9-fb6f-4225-8d8f-2ff70300884d` |
| 320 | `BasicBridle03_m06` | Noseband bridle | 2 | 1500 | `cbe3909c-1d76-4ef8-94bd-7c419ead48f9` |
| 321 | `BasicBridle03_m07` | Noseband bridle | 2 | 1500 | `84ef8a68-a21b-4227-83be-a3d69bcbe7af` |
| 322 | `BasicBridle03_m08` | Noseband bridle | 2 | 1500 | `59823877-63a1-4e97-8c5f-e3e5db024823` |
| 323 | `BasicBridle03_m09` | Noseband bridle | 2 | 1500 | `c0b3273b-5121-49ae-ae0e-95c35634ff2d` |
| 324 | `BasicBridle03_m10` | Noseband bridle | 2 | 1500 | `98a01fba-7694-4f59-8e6f-0e68364bf850` |
| 325 | `BasicHarness01_m01` | Wielun breeching | 9 | 2167 | `14b87250-c51b-43bc-b8af-abaa7e192102` |
| 326 | `BasicHarness01_m02` | Wielun breeching | 9 | 2167 | `a0f0411b-78f9-4e13-aaee-2db04706021d` |
| 327 | `BasicHarness01_m03` | Wielun breeching | 9 | 2167 | `1d979689-a035-44d8-adad-4e6068a74714` |
| 328 | `BasicHarness01_m04` | Wielun breeching | 9 | 2167 | `5c93de8b-a82c-45ed-9d69-466d71d5056f` |
| 329 | `BasicHarness01_m05` | Wielun breeching | 9 | 2167 | `6f3c3b10-687a-480c-93dc-771b063250c6` |
| 330 | `BasicHarness01_m06` | Wielun breeching | 9 | 2167 | `215b3118-14aa-4576-ace0-e14c96785314` |
| 331 | `BasicHarness01_m07` | Wielun breeching | 9 | 2167 | `88b82d1f-dd8d-4546-b3fa-73d3f2356552` |
| 332 | `BasicHarness01_m08` | Wielun breeching | 9 | 2167 | `94fdc2b1-95a3-4519-a1c6-093c2a854009` |
| 333 | `BasicHarness01_m09` | Wielun breeching | 9 | 2167 | `ecd94ac4-e8f0-48c4-95e4-729685ca8f28` |
| 334 | `BasicHarness01_m10` | Wielun breeching | 9 | 2167 | `b5e1afb0-d067-486a-9d8e-0b4a278c43ee` |
| 335 | `BasicHarness01_m11` | Wielun breeching | 9 | 2167 | `132977d7-bfe2-466d-ba43-f7328beb8f86` |
| 336 | `BasicHarness01_m12` | Wielun breeching | 9 | 2167 | `b0f581d8-b787-4489-bb7b-b5fd049d1e43` |
| 337 | `BasicHarness01_m13` | Wielun breeching | 9 | 2167 | `156d7c44-9882-4951-a1a5-bb6717a665e6` |
| 338 | `BasicHarness01_m14` | Wielun breeching | 9 | 2167 | `5f2ae2c5-b557-4399-a01e-4d7de16bfa49` |
| 339 | `BasicHarness02_m01` | Mainz breeching | 8.4 | 2000 | `353e4bb0-d365-4281-8a47-a5ab9d694c62` |
| 340 | `BasicHarness02_m02` | Mainz breeching | 8.4 | 2000 | `1017710d-9585-4416-9a14-92c271ff0077` |
| 341 | `BasicHarness02_m03` | Mainz breeching | 8.4 | 2000 | `1da7e68f-e06d-4417-bac8-901350da15b7` |
| 342 | `BasicHarness02_m04` | Mainz breeching | 8.4 | 2000 | `d358142b-ba22-422a-ac40-9f6613776bc4` |
| 343 | `BasicHarness02_m05` | Mainz breeching | 8.4 | 2000 | `3793a429-6d49-4542-a263-bd6f16425790` |
| 344 | `BasicHarness02_m06` | Mainz breeching | 8.4 | 2000 | `4967ecb7-3dae-4390-a9a2-6a0f08a4b92e` |
| 345 | `BasicHarness02_m07` | Mainz breeching | 8.4 | 2000 | `10378077-c05f-4fd3-ab2e-627a969e51b3` |
| 346 | `BasicHarness02_m08` | Mainz breeching | 8.4 | 2000 | `88455b1c-c518-4ebf-a637-90852153dddd` |
| 347 | `BasicHarness02_m09` | Mainz breeching | 8.4 | 2000 | `4ed167e1-9712-464c-9b34-032ab10b3b20` |
| 348 | `BasicHarness02_m10` | Mainz breeching | 8.4 | 2000 | `aa12cf71-7816-40da-9b1b-a5cef0874dda` |
| 349 | `BasicHarness02_m11` | Mainz breeching | 8.4 | 2000 | `928226ee-b328-4c29-b2aa-6a3aec846972` |
| 350 | `BasicHarness02_m12` | Mainz breeching | 8.4 | 2000 | `88ad09e8-f339-4f9f-8b26-2572e58c5023` |
| 351 | `BasicHarness02_m13` | Mainz breeching | 8.4 | 2000 | `3a7911af-8a5b-4038-890a-90cd4f66c1a4` |
| 352 | `BasicHarness02_m14` | Mainz breeching | 8.4 | 2000 | `9a91b09f-bcc2-4bc5-9505-7822f59826af` |
| 353 | `BasicHarness03_m01` | Hague breeching | 10.2 | 2875 | `b2cff226-0f20-4bb4-be37-21b03d8b932f` |
| 354 | `BasicHarness03_m02` | Hague breeching | 10.2 | 2875 | `10aa607a-06eb-497f-86cf-3a5afc931657` |
| 355 | `BasicHarness03_m03` | Hague breeching | 10.2 | 2875 | `67878a6d-91b7-4ba2-9fec-939496d61b38` |
| 356 | `BasicHarness03_m04` | Hague breeching | 10.2 | 2875 | `911df0af-e8c8-4ff6-b487-a13f29cefe38` |
| 357 | `BasicHarness03_m05` | Hague breeching | 10.2 | 2875 | `9671fc3f-0734-4866-8586-ff174189a59f` |
| 358 | `BasicHarness03_m06` | Hague breeching | 10.2 | 2875 | `8dbd1400-754b-4e84-ba7d-5e0bb36401b2` |
| 359 | `BasicHarness03_m07` | Hague breeching | 10.2 | 2875 | `aaee1995-16c8-4c35-af8e-f9f17f7f66b1` |
| 360 | `BasicHarness03_m08` | Hague breeching | 10.2 | 2875 | `9253e9d4-41ba-4ded-bb04-5b6860f8ea57` |
| 361 | `BasicHarness03_m09` | Hague breeching | 10.2 | 2875 | `cab8d2b3-ffe8-4341-aab1-eb4c7d020f21` |
| 362 | `BasicHarness03_m10` | Hague breeching | 10.2 | 2875 | `ddf60ba6-e7e9-4823-85fb-220ba1086886` |
| 363 | `BasicHarness03_m11` | Hague breeching | 10.2 | 2875 | `0ff0a7d1-8f34-4e5f-a71a-5d83faf890ca` |
| 364 | `BasicHarness03_m12` | Hague breeching | 10.2 | 2875 | `cc358866-4314-4c97-80ae-d1849f6203ed` |
| 365 | `BasicHarness03_m13` | Hague breeching | 10.2 | 2875 | `8afad34e-877e-4e3b-aa51-787288c22e21` |
| 366 | `BasicHarness03_m14` | Hague breeching | 10.2 | 2875 | `303572e5-fdcf-4241-a710-f557fa51c6b2` |
| 367 | `BasicHarness03_m15` | Hague breeching | 10.2 | 2875 | `fcb39e3e-138a-4072-8234-92df6c366327` |
| 368 | `BasicSaddle01_m01` | Prague saddle | 12 | 2000 | `12427009-3f05-45f4-81f4-c8163b3a8543` |
| 369 | `BasicSaddle01_m02` | Prague saddle | 12 | 2000 | `95fdc8c1-9c4a-4d69-b398-9708b1760478` |
| 370 | `BasicSaddle01_m03` | Prague saddle | 12 | 2000 | `66c02e00-86a3-49ee-94d6-6b007e4fb7b3` |
| 371 | `BasicSaddle01_m04` | Prague saddle | 12 | 2000 | `c1c03e61-2d2a-4ece-8426-426a52c58c14` |
| 372 | `BasicSaddle01_m05` | Prague saddle | 12 | 2000 | `8509c519-4a13-4b63-be62-182b9c392c1e` |
| 373 | `BasicSaddle01_m06` | Prague saddle | 12 | 2000 | `03319c8e-1096-4ef0-80ae-c52de29a9fbb` |
| 374 | `BasicSaddle01_m07` | Prague saddle | 12 | 2000 | `e7c5ad73-951d-43e7-8722-8006a79393d2` |
| 375 | `BasicSaddle01_m08` | Prague saddle | 12 | 2000 | `980969f0-fe14-4faf-9ab9-18b98762f518` |
| 376 | `BasicSaddle01_m09` | Prague saddle | 12 | 2000 | `381c996c-7c8b-416b-a217-5fbb483b22ca` |
| 377 | `BasicSaddle01_m10` | Prague saddle | 12 | 2000 | `d859030d-12f4-4af5-babb-043839d20b71` |
| 378 | `BasicSaddle01_m11` | Prague saddle | 12 | 2000 | `7dc67d5d-30bc-4bd0-8f0d-210854390dfd` |
| 379 | `BasicSaddle01_m12` | Prague saddle | 12 | 2000 | `1b23dccf-4b1f-4156-9441-f438dd662244` |
| 380 | `BasicSaddle02_m01` | Soldier's saddle | 13.2 | 4000 | `80058304-bb23-45fa-83a4-e632d89c1938` |
| 381 | `BasicSaddle02_m02` | Soldier's saddle | 13.2 | 4000 | `0c044d3b-508e-4da2-bb9b-e57f7e457827` |
| 382 | `BasicSaddle02_m03` | Soldier's saddle | 13.2 | 4000 | `9b456bd7-f2a9-4603-a658-0d568a4c5094` |
| 383 | `BasicSaddle02_m04` | Soldier's saddle | 13.2 | 4000 | `3cb68c2a-dccc-41be-8515-626ed0756b97` |
| 384 | `BasicSaddle02_m05` | Soldier's saddle | 13.2 | 4000 | `ff65c42b-b3de-4347-b01f-36626bf4c1ee` |
| 385 | `BasicSaddle02_m06` | Soldier's saddle | 13.2 | 4000 | `4cbec1f9-335e-4ad2-822f-12771f82ad68` |
| 386 | `BasicSaddle02_m07` | Soldier's saddle | 13.2 | 4000 | `966760b0-75c6-4387-ae57-8c5238f09df9` |
| 387 | `BasicSaddle02_m08` | Soldier's saddle | 13.2 | 4000 | `85983427-faf2-48e1-a700-2aa4da881e5d` |
| 388 | `BasicSaddle02_m09` | Soldier's saddle | 13.2 | 4000 | `f66fc83f-074e-447a-ab41-361887c47a2a` |
| 389 | `BasicSaddle02_m10` | Soldier's saddle | 13.2 | 4000 | `55a4a336-9617-4f9d-b4a3-c98d263da72e` |
| 390 | `BasicSaddle02_m11` | Soldier's saddle | 13.2 | 4000 | `9c6158cf-5f30-4aef-bcef-d665505c3623` |
| 391 | `BasicSaddle02_m12` | Soldier's saddle | 13.2 | 4000 | `52bae50a-2cc3-498a-8736-04ac6a31fd12` |
| 392 | `BasicSaddle03_m01` | Norman saddle | 14.4 | 6000 | `8007b1d2-6179-49bb-a9eb-132bfc1b0ab6` |
| 393 | `BasicSaddle03_m02` | Norman saddle | 14.4 | 6000 | `b6bd8d57-2d4c-442c-9a6e-522142af25ed` |
| 394 | `BasicSaddle03_m03` | Norman saddle | 14.4 | 6000 | `2e343e8a-2c21-4794-8c7d-7ee11f720676` |
| 395 | `BasicSaddle03_m04` | Norman saddle | 14.4 | 6000 | `e72d851c-0da3-43fa-9433-fa8f60ae4bea` |
| 396 | `BasicSaddle03_m05` | Norman saddle | 14.4 | 6000 | `3350f93c-2b8b-4c83-ae3f-9e85cd67497f` |
| 397 | `BasicSaddle03_m06` | Norman saddle | 16.8 | 10000 | `d51bb072-916b-4235-85d2-ddba645c1c93` |
| 398 | `BasicSaddle03_m07` | Norman saddle | 14.4 | 6000 | `3ae53d22-43b5-47c8-9486-de739e4eabde` |
| 399 | `BasicSaddle03_m08` | Norman saddle | 14.4 | 6000 | `155571e4-ff66-4f2b-848a-01f78ed44b4b` |
| 400 | `BasicSaddle03_m09` | Norman saddle | 14.4 | 6000 | `e576ae73-6422-46ca-9898-5e6f35f5c654` |
| 401 | `BasicSaddle03_m10` | Norman saddle | 14.4 | 6000 | `9e770c83-7d7c-4fa4-b7a2-35ea7ea1c1c5` |
| 402 | `BasicSaddle03_m11` | Norman saddle | 14.4 | 6000 | `02de7fc4-7679-4fd1-925d-36683b2bd9a1` |
| 403 | `BasicSaddle03_m12` | Norman saddle | 14.4 | 6000 | `0b51c334-71e2-4c20-bbe4-ba7d4037d25a` |
| 492 | `BootsAnkle01_m01_C` | Working boots | 2 | 423 | `5d5b2f4d-5f18-4ebe-ae2e-6eccbd8f92ea` |
| 493 | `BootsAnkle01_m02_C` | Work boots | 2 | 423 | `847e9aa2-8c3a-4a4f-a38e-dab873310062` |
| 494 | `BootsAnkle01_m03_C` | Work boots | 2 | 423 | `7ae64aa3-444f-4f10-b05d-4a943c965551` |
| 495 | `BootsAnkle01_m04_C` | Work boots | 2 | 423 | `a8786209-94d2-4a53-8492-a9d9efa8b5a2` |
| 496 | `BootsAnkle01_m05_C` | Work boots | 2 | 423 | `9875d003-86c0-4820-805d-12f5d23a9205` |
| 497 | `BootsAnkle01_m06_C` | Quiet boots | 1.8 | 903 | `32ce2960-642c-42a0-8af8-cd98212eeb42` |
| 498 | `BootsAnkle01_m07_C` | Work boots | 2 | 423 | `d727bf2c-2ed1-47af-aa40-a581e941b087` |
| 499 | `BootsAnkle01_m08_C` | Work boots | 2 | 423 | `9ae5932a-5122-48bf-b8a7-56b054340580` |
| 500 | `BootsAnkle02_m01_B` | Travel boots | 2 | 683 | `d87e0065-4eae-429f-917a-df1db1b7285a` |
| 501 | `BootsAnkle02_m02_B` | Travel boots | 2 | 683 | `eea85e6d-e30a-46ce-a451-f1ec7685bdc2` |
| 502 | `BootsAnkle02_m03_B` | Travel boots | 2 | 860 | `d444ea2d-1233-4040-b3bc-269e8426d40e` |
| 503 | `BootsAnkle02_m04_B` | Travel boots | 2 | 683 | `bd85e846-3f62-4c85-a1c4-c18410c7ec65` |
| 504 | `BootsAnkle02_m05_B` | Travel boots | 2 | 683 | `b4ab07ae-25e6-4dc8-b9c7-8ac8b68d4378` |
| 505 | `BootsAnkle02_m06_B` | Travel boots | 2 | 683 | `a4f3f0bb-1739-41f6-9440-f2100156bc6b` |
| 506 | `BootsAnkle02_m07_B` | Travel boots | 2 | 683 | `2d19b8cd-ca77-4084-ba72-3dd18cec0162` |
| 507 | `BootsAnkle02_m08_B` | Travel boots | 2 | 683 | `b537321b-adff-4653-8a7b-73a5532251d6` |
| 508 | `BootsAnkle03_m01_D` | Vagrant's boots | 2 | 165 | `2a169fbe-251a-49f8-85d1-0b9a651f61d1` |
| 509 | `BootsAnkle03_m02_D` | Vagrant's boots | 2 | 253 | `dfe5ef26-fd78-42ad-a0b6-1cdfae252f56` |
| 510 | `BootsAnkle03_m03_D` | Vagrant's boots | 2 | 298 | `ff7b2eb9-7cc5-45ad-b48f-551fc71658eb` |
| 511 | `BootsAnkle03_m04_D` | Vagrant's boots | 2 | 165 | `985fba5f-ad3d-4ddf-a901-52199528ea6f` |
| 512 | `BootsAnkle03_m05_D` | Vagrant's boots | 2 | 298 | `d1892cda-ba5e-4048-af2b-1565da5ce385` |
| 513 | `BootsAnkle03_m06_D` | Vagrant's boots | 2 | 165 | `0b3f7f50-486d-4556-b0da-a0fc87f5feb9` |
| 514 | `BootsAnkle03_m07_D` | Vagrant's boots | 2 | 298 | `df4f8b04-ea19-434e-8b07-0c9e674f25bb` |
| 515 | `BootsAnkle03_m08_D` | Vagrant's boots | 2 | 253 | `4c7e749d-3e49-4344-897e-f0df5101cf81` |
| 516 | `BootsAnkle03_mIstvan` | A suspicious bag | 2 | 683 | `a88da312-9523-4790-851a-773122af3413` |
| 517 | `BootsAnkle03_mTwitch` | Warhorse boots | 2 | 539 | `dacee2bf-6394-47b8-b7b7-175cd9a60b94` |
| 518 | `BootsAnkle04_m01_A` | Courtiers boots | 2 | 1225 | `a67fc79d-fe99-4ea7-bd60-f619d229c5cd` |
| 519 | `BootsAnkle04_m02_A` | Courtiers boots | 2 | 1821 | `4d6a1362-6bd2-4827-bdb1-33cfece59fec` |
| 520 | `BootsAnkle04_m03_A` | Courtier's boots | 2 | 1662 | `dcbc377e-ce87-45d6-8bd1-f7e21d84fd7c` |
| 521 | `BootsAnkle04_m04_A` | Courtiers boots | 2 | 1225 | `dea34002-3f44-4a25-891e-8674b075fed6` |
| 522 | `BootsAnkle04_m05_A` | Courtiers boots | 2 | 1821 | `66cc653b-8dd6-48ad-93d2-b0918fe74ae8` |
| 523 | `BootsAnkle04_m06_A` | Courtiers boots | 2 | 1225 | `1ca7f8e0-9077-4632-bc4e-b69ff1a0a2f0` |
| 524 | `BootsAnkle04_m07_A` | Courtiers boots | 2 | 1821 | `bff255a1-4874-452b-a973-245d891e5d6f` |
| 525 | `BootsAnkle04_m08_A` | Courtiers boots | 2 | 1821 | `15189439-5098-4a3a-bab4-18b42dfd936c` |
| 526 | `BootsAnkle04_mCapon` | A suspicious bag | 2 | 683 | `8b7030eb-9056-404d-9d87-5cf79438e346` |
| 527 | `BootsAnkle04_mSigismund` | A suspicious bag | 2 | 942 | `dd546f33-fdae-4faa-9c70-b4db06d8c459` |
| 528 | `BootsAnkle05_m01_C` | Firm boots | 2 | 423 | `88f1ceff-5a1e-40b5-92f7-68e941268f3b` |
| 529 | `BootsAnkle05_m02_C` | Firm boots | 2 | 423 | `a1526093-c93e-4b10-9bb2-6d75ef8bf9dc` |
| 530 | `BootsAnkle05_m03_C` | Firm boots | 2 | 423 | `9dfd4215-673d-460b-a052-a38ba439857e` |
| 531 | `BootsAnkle05_m04_C` | Firm boots | 2 | 557 | `ad878f77-e53d-4dec-948b-2627fea5df1d` |
| 532 | `BootsAnkle05_m05_C` | Firm boots | 2 | 624 | `2464a0a8-8240-4ee1-8076-5df6a74408c8` |
| 533 | `BootsAnkle05_m06_C` | Pickpocket's shoes | 1.8 | 875 | `e86931e4-0d66-4984-9609-867c6ce67009` |
| 534 | `BootsAnkle05_m07_C` | Firm boots | 2 | 624 | `aefd0612-6c7a-4198-bc75-45c5a8575862` |
| 535 | `BootsAnkle05_m08_C` | Firm boots | 2 | 423 | `c74c715a-296f-4bc7-9b86-9c72c605f312` |
| 536 | `BootsAnkle06_m01_C` | Jester shoes | 2 | 470 | `d76f284a-247c-4c42-b632-91bf7e1ae667` |
| 537 | `BootsAnkle06_m02_C` | Jester shoes | 2 | 470 | `0f2dcc59-3a10-493a-a85e-29d28bd924a1` |
| 538 | `BootsAnkle06_m03_C` | Jester shoes | 2 | 470 | `e44e2a53-6764-4f06-8c79-b147cdd29336` |
| 539 | `BootsAnkle06_m04_C` | Jester shoes | 2 | 470 | `d48a0eb5-a2d6-4cf3-b5e8-3efa708817b9` |
| 540 | `BootsAnkle06_m05_C` | Jester shoes | 2 | 470 | `4f4d7ed2-49db-443b-925b-63ea9e765b87` |
| 541 | `BootsAnkle06_m06_C` | Jester shoes | 2 | 311 | `04386d39-90fd-4de7-8da1-5f16a1b5bda6` |
| 542 | `BootsAnkle_placeholder` | A suspicious bag | 3.8 | 593 | `de656e08-e385-49df-be56-b03820caa3f2` |
| 543 | `BootsKnee01_m01_C` | Noble boots | 3 | 1347 | `569438e6-7cae-483b-a4db-d1d25aa783d0` |
| 544 | `BootsKnee01_m02_C` | Noble boots | 3 | 1950 | `cefe7a3f-c1bb-40fe-9563-e32a96844725` |
| 545 | `BootsKnee01_m03_C` | Noble boots | 3 | 2185 | `f7ce1893-d207-472c-adec-929319f7ac25` |
| 546 | `BootsKnee01_m04_C` | Noble boots | 3 | 1950 | `03523eb8-1db0-4e14-b76c-14877cc8fae8` |
| 547 | `BootsKnee01_m05_C` | Noble boots | 3 | 2185 | `c80a7165-dfb3-486e-9a9d-b6f36db905ef` |
| 548 | `BootsKnee01_m06_C` | Noble boots | 3 | 2185 | `aa33e7f4-78d7-4e0f-9da0-10458f2a0ea5` |
| 549 | `BootsKnee01_m07_C` | Noble boots | 3 | 1347 | `739f8e83-1b0c-45f6-9ba1-df921e042e6c` |
| 550 | `BootsKnee01_m08_C` | Noble boots | 3 | 1347 | `5d9b16e8-fb1d-4efd-8c37-f3c359a104e4` |
| 551 | `BootsKnee01_mCherthan_C` | A suspicious bag | 3 | 1347 | `ac2dfada-15da-429c-af13-e61716207018` |
| 552 | `BootsKnee01_mPisek_C` | A suspicious bag | 3 | 1347 | `f2c053a3-d8d0-472e-9fe7-4b63cfe1dc71` |
| 553 | `BootsKnee02_m02_B` | Burgher's shoes | 3 | 1236 | `3bbfcad3-ff56-4069-9a24-b1b87dea38c6` |
| 554 | `BootsKnee02_m03_B` | Burgher's shoes | 3 | 1986 | `0d098cc5-4eb4-4ed6-84d2-a88d86084f8a` |
| 555 | `BootsKnee02_m04_B` | Burgher's shoes | 3 | 1986 | `40011bb3-7e8c-46bc-bf75-60f75e3dc0ec` |
| 556 | `BootsKnee02_m05_B` | Burgher's shoes | 3 | 1236 | `4f864840-8011-4b3d-a070-4b8d987c8b42` |
| 557 | `BootsKnee02_m06_B` | Burgher's shoes | 3 | 1986 | `e7eeaa26-f360-4db1-a462-936e7c171544` |
| 558 | `BootsKnee02_m07_B` | Burgher's shoes | 3 | 1236 | `c848fce2-ee73-4953-bcc6-bea5787b63e3` |
| 559 | `BootsKnee02_m08_B` | Burgher's shoes | 3 | 1778 | `6c0a9616-c84c-4cf3-bc1d-eda02b3473fc` |
| 560 | `BootsKnee02_mLichtenstein` | Burgher's shoes | 3 | 1236 | `6b2c6cda-eb16-48fe-86b8-f67195a71262` |
| 561 | `BootsKnee02_mSamuel` | A suspicious bag | 3 | 743 | `74a815e9-0ddc-4b9d-a3c0-06218573a5e3` |
| 562 | `BootsKnee03_m01_C` | Riding boots | 3 | 743 | `a06cfbf0-3d59-4003-89d4-69a82eb735af` |
| 563 | `BootsKnee03_m02_C` | Soft boots | 2.7 | 1438 | `d4fa8f92-4a10-48f9-976d-be4eb8a77701` |
| 564 | `BootsKnee03_m03_C` | Riding boots | 3 | 743 | `3c488ae2-0031-48f9-92e3-3bbe612e161a` |
| 565 | `BootsKnee03_m04_C` | Riding boots | 3 | 1168 | `e04f5ec2-5dc7-404a-8966-ebfd239991a4` |
| 566 | `BootsKnee03_m05_C` | Riding boots | 3 | 1168 | `e77de265-0b65-493c-bf4d-6ae0149838d7` |
| 567 | `BootsKnee03_m06_C` | Riding boots | 3 | 743 | `ae03f551-3438-48e3-973b-9ff0a13265c8` |
| 568 | `BootsKnee03_m07_C` | Riding boots | 3 | 743 | `33463930-7cb0-4da4-9706-cd508c41d3c3` |
| 569 | `BootsKnee03_m08_C` | Riding boots | 3 | 743 | `4c8f353a-0b3c-44f6-86b2-4b230438bb3b` |
| 570 | `BootsKnee03_mHanush` | Riding boots | 3 | 1903 | `14847226-1258-4979-97f4-7067693d9cb6` |
| 571 | `BootsKnee03_mRadzig` | A suspicious bag | 3 | 1903 | `e311ea75-ae1c-493b-9bf5-65ee3152eb0e` |
| 572 | `BootsKnee04_m01_D` | Thief's shoes | 2.7 | 1261 | `245188d0-9cc8-46d3-9b15-08d12f7db981` |
| 573 | `BootsKnee04_m02_D` | High boots | 3 | 248 | `808101ad-28ff-4425-ad2a-5fbe4f9fbbbe` |
| 574 | `BootsKnee04_m03_D` | High boots | 3 | 248 | `ce4a010d-441a-4004-a3a6-a09d9ed4b497` |
| 575 | `BootsKnee04_m04_D` | High boots | 3 | 248 | `889e883e-aef9-4a88-a9fa-f64f4d840306` |
| 576 | `BootsKnee04_m05_D` | High boots | 3 | 248 | `34183ada-3a8f-4edb-bc87-56750b397a28` |
| 577 | `BootsKnee04_m06_D` | High boots | 3 | 533 | `92fdb06e-b97e-4886-b468-6d278e4a1024` |
| 578 | `BootsKnee04_m07_D` | High boots | 3 | 533 | `d4363c47-972f-4985-81b2-467c1d4317c4` |
| 579 | `BootsKnee04_m08_D` | High boots | 3 | 248 | `dd52b0ec-0266-40da-bd8c-2afea1e71d0f` |
| 580 | `BootsKnee05_m01_C` | Cuman boots | 3 | 743 | `21d3bd2a-a877-41c8-9b12-ea8744b9ec02` |
| 581 | `BootsKnee05_m02_C` | Cuman boots | 3 | 1168 | `86258ffd-5382-4d7b-99ec-119c2ded4766` |
| 582 | `BootsKnee05_m03_C` | Cuman boots | 3 | 743 | `f3e23054-4e26-41c0-ae6f-c8769af2c292` |
| 583 | `BootsKnee05_m04_C` | Cuman boots | 3 | 743 | `7ee19ec0-1656-4680-85d4-dabd707a783d` |
| 584 | `BootsKnee05_m05_C` | Cuman boots | 3 | 1026 | `34681c47-6337-4e4c-ab02-7a89a46fc8c7` |
| 585 | `BootsKnee05_m06_C` | Cuman boots | 3 | 1168 | `97bd58d3-13cd-4832-8977-20329b9dd5cf` |
| 586 | `BootsKnee05_m07_C` | Cuman boots | 3 | 743 | `1b80b30a-a330-46c7-8fe9-aeee8abf50b3` |
| 587 | `BootsKnee05_m08_C` | Cuman boots | 3 | 743 | `c5aaa111-ced3-4ecd-8867-afd1ea94df77` |
| 588 | `BootsKnee05_m09_C` | Cuman boots | 3 | 1168 | `7302d988-8c0a-4304-942e-e383a257c7bd` |
| 589 | `BootsKnee05_mUher_C` | Cuman boots | 3 | 743 | `9ed686ed-1ae4-4374-a311-6c4afe8c7720` |
| 590 | `BootsKnee06_m01_B` | Master huntsman's boots | 3 | 1802 | `7c881eec-7585-44ff-83a2-d44eddf55a3a` |
| 591 | `BootsKnee_placeholder` | A suspicious bag | 15.2 | 213 | `90f2591e-2fc2-40f4-acad-ca7b01e99f78` |
| 628 | `Bridle_placeholder` | A suspicious bag | 0.5 | 14108 | `58b3b141-7bde-49a8-a201-3b9bf4167d35` |
| 630 | `Brigandine01_m01_D3` | Simple brigandine | 12 | 15640 | `43f25763-bdbd-4e22-a946-722e2fd156c4` |
| 631 | `Brigandine01_m02_D3` | Simple brigandine | 12 | 15193 | `f8f97efa-a624-486d-b966-fbf35757431f` |
| 632 | `Brigandine01_m03_D3` | Simple brigandine | 12 | 15640 | `3a8e3e12-bd79-48f8-8b77-8db11d6c37c9` |
| 633 | `Brigandine01_m04_D3` | Simple brigandine | 12 | 15491 | `2a4d5c1b-e9e1-415b-a708-3569db42d34f` |
| 634 | `Brigandine01_m05_D3` | Simple brigandine | 12 | 15491 | `77288289-02b0-4664-86b7-c786163388c9` |
| 635 | `Brigandine01_m06_D3` | Simple brigandine | 12 | 14900 | `8fda905c-f217-4405-82c8-21b2c3391ae9` |
| 636 | `Brigandine01_m07_D3` | Simple brigandine | 12 | 15640 | `0279ca13-5ab4-4bf1-ab29-76efbcb39a6e` |
| 637 | `Brigandine01_m08_D3` | Simple brigandine | 12 | 14900 | `13e6ae67-8533-4722-843a-7a114d2cdeee` |
| 638 | `Brigandine01_m09_D3` | Simple brigandine | 12 | 15640 | `44566eb6-bca6-48a0-bae2-9ef94cc22d8b` |
| 639 | `Brigandine01_m10_D3` | Simple brigandine | 12 | 15640 | `dbfb7f84-3685-41b9-a16e-f4b2b2aad484` |
| 640 | `Brigandine01_m11_D3` | Simple brigandine | 12 | 15640 | `f9baa3be-b110-4202-a9ef-f3df22388390` |
| 641 | `Brigandine01_m12_D3` | Simple brigandine | 12 | 15640 | `4b84dc4e-6472-494f-a3e9-2e5470adc148` |
| 642 | `Brigandine02_m01_E2` | Bandit's brigandine | 7 | 6622 | `f0fe1f59-9dd5-4dab-ab69-586bb7267258` |
| 643 | `Brigandine02_m02_E2` | Bandit's brigandine | 7 | 6622 | `93d145b7-251f-49e2-b44d-8c3e455621a4` |
| 644 | `Brigandine02_m03_E2` | Bandit's brigandine | 7 | 6622 | `f9d5d37e-a7d2-427a-a277-55d40e6f5dfb` |
| 645 | `Brigandine02_m04_E2` | Bandit's brigandine - dark | 5.9 | 7152 | `6ad578ee-4e5e-4756-b4c9-c056d76dba75` |
| 646 | `Brigandine02_m05_E2` | Bandit's brigandine | 7 | 6622 | `984b9db9-3783-44be-852c-79417d0caf74` |
| 647 | `Brigandine03_m01_A4` | Saxon brigandine | 14.7 | 67660 | `53a0ba78-7f73-4f19-8932-a8bae86f7814` |
| 648 | `Brigandine03_m02_A4` | Saxon brigandine | 14.7 | 54821 | `8d414fa3-e215-48a0-919b-a8a80605e29e` |
| 649 | `Brigandine03_m03_A4` | Saxon brigandine | 14.7 | 54821 | `0a22cfc4-bc18-4066-876b-95fe7041376b` |
| 650 | `Brigandine03_m04_A4` | Robber baron's brigandine | 12.3 | 73531 | `e9ecce39-1c01-4cc8-8cb0-d245a3fd8009` |
| 651 | `Brigandine03_m05_A4` | Saxon brigandine | 14.7 | 55680 | `355ac165-5e2d-4664-bd16-eccec7ec03b3` |
| 652 | `Brigandine03_m06_A4` | Saxon brigandine | 14.7 | 55680 | `5e528984-9185-4543-af82-99b405753e42` |
| 653 | `Brigandine03_m07_A4` | Saxon brigandine | 14.7 | 54821 | `3a924889-7886-4a3f-b880-bd74618c0ccc` |
| 654 | `Brigandine03_m08_A4` | Saxon brigandine | 14.7 | 54821 | `7c555686-2a47-45d3-9547-0d29c0dc27d6` |
| 655 | `Brigandine03_m09_A4` | Saxon brigandine | 14.7 | 70629 | `490e12f2-476f-4e31-87a5-88d711fa7c01` |
| 656 | `Brigandine03_m10_A4` | Saxon brigandine | 14.7 | 54821 | `8305d806-a858-4f8d-813c-6904dc584a01` |
| 657 | `Brigandine05_m01_C3` | Milanese brigandine - dark | 10.8 | 33514 | `769e850a-6bd6-40f5-9238-1be7b7dfa6ac` |
| 658 | `Brigandine05_m03_C3` | Milanese brigandine | 12.7 | 26294 | `29f0020e-1bf9-4fe8-b4f2-0ca2e2cb4be6` |
| 659 | `Brigandine05_m04_C3` | Milanese brigandine | 12.7 | 26294 | `a8723887-ac6e-45a0-a6a4-0cf905716b6d` |
| 660 | `Brigandine05_m05_C3` | Milanese brigandine | 12.7 | 25519 | `9e19280b-f3a2-445b-9283-8bd2b6b611ad` |
| 661 | `Brigandine05_m06_C3` | Milanese brigandine | 12.7 | 26294 | `bd75ed98-df88-4603-a6b4-fc6a6676d147` |
| 662 | `Brigandine05_m07_C3` | Milanese brigandine | 12.7 | 25519 | `8d8c079e-066c-4e00-bb56-37c52f6b4442` |
| 663 | `Brigandine05_m08_C3` | Milanese brigandine | 12.7 | 25519 | `407d0b00-9517-45c5-9d87-63895ed72dd0` |
| 664 | `Brigandine05_m09_C3` | Milanese brigandine | 12.7 | 25519 | `46981958-4f04-42ed-b545-bc7564112d38` |
| 665 | `Brigandine05_m10_C3` | Milanese brigandine | 12.7 | 25519 | `6fea0285-a936-4d49-8e6b-661c7d6c546e` |
| 666 | `Brigandine05_mErik` | A suspicious bag | 14.7 | 54821 | `d3f2c2e8-dd01-4455-b654-4513ca28c055` |
| 667 | `Brigandine05_mSamuel` | A suspicious bag | 14.7 | 50427 | `1c493151-714a-4fa8-b98d-28194211736e` |
| 668 | `Brigandine05_mTeuton` | Teutonic brigandine | 10.8 | 33514 | `e3e004e0-df5a-472c-a5d7-2f835bc92842` |
| 669 | `Brigandine10_m01_A5` | Cuirass with falds | 16 | 96341 | `2e6c0926-0d37-4009-beb2-0a8edcb502cb` |
| 670 | `Brigandine10_m02_A5` | Cuirass with falds | 16 | 95658 | `975e6b9b-06a9-407c-873c-79602ae690f8` |
| 671 | `Brigandine10_m03_A5` | Cuirass with falds | 16 | 96341 | `59de403c-a85f-4a6d-9b5f-5cbde29c7b03` |
| 672 | `Brigandine10_m04_A5` | Cuirass with falds | 16 | 83774 | `cce8a15b-88ea-4ca6-afde-3b576539516a` |
| 673 | `Brigandine10_m05_A5` | Cuirass with falds | 16 | 96341 | `bd900862-61e2-450c-a8c4-c9d3e46811e2` |
| 674 | `Brigandine10_m06_A5` | Cuirass with falds | 16 | 83774 | `8c21aba6-cc35-4022-807b-22e4bd987e5a` |
| 675 | `Brigandine10_m07_A5` | Cuirass with falds | 16 | 96341 | `264cac3e-f5f6-4988-8809-2822403865d1` |
| 676 | `Brigandine10_m08_A5` | Cuirass with falds | 16 | 83180 | `d4908c0f-7e81-420f-b3cb-84012a4c3b69` |
| 677 | `Brigandine10_m09_A5` | Cuirass with falds | 16 | 83180 | `1aadf1e5-c37b-41c3-bc65-354187022c91` |
| 678 | `Brigandine10_m10_A5` | Cuirass with falds | 16 | 81993 | `0c2685e0-c0b8-4fa4-aefd-b4112393fead` |
| 679 | `BrigandineAlberich_m01` | Noble laminar sleeves | 14.7 | 52475 | `9dd30e40-765c-4182-a748-46c29c11690d` |
| 680 | `BrigandineArm01_m01_D1` | Plain laminar sleeves | 3.5 | 11589 | `86055ea8-0e06-47f2-a976-e5453bdf84d1` |
| 681 | `BrigandineArm01_m02_D1` | Plain laminar sleeves | 3.5 | 11589 | `6e49be7e-8972-4a8f-bd3b-011ffa55a198` |
| 682 | `BrigandineArm01_m03_D1` | Plain laminar sleeves | 3.5 | 11927 | `0fc917da-bb37-433f-909f-ab21d9857b47` |
| 683 | `BrigandineArm01_m04_D1` | Plain laminar sleeves | 3.5 | 11701 | `48e7619e-9436-4f27-948c-1577daa9a6e9` |
| 684 | `BrigandineArm01_m05_D1` | Plain laminar sleeves | 3.5 | 11589 | `978586ca-3269-493b-a1fd-88ae04a6ded6` |
| 685 | `BrigandineArm02_m01_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `7c8cdd6c-b094-4b70-b588-286b50cffe02` |
| 686 | `BrigandineArm02_m02_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `177e55fc-31bc-40dc-b399-899b478093d0` |
| 687 | `BrigandineArm02_m03_C3` | Laminar sleeves with rondels | 4.4 | 29241 | `932a7c22-975e-47c7-ab61-ea8c1c2eaddc` |
| 688 | `BrigandineArm02_m04_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `e94552d1-3049-4633-960f-8cb612948708` |
| 689 | `BrigandineArm02_m05_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `68471905-e1e5-4036-ad1b-bd6acbf98fda` |
| 690 | `BrigandineArm02_m06_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `604a7a21-028f-4936-95f2-3d4f5dd1ee65` |
| 691 | `BrigandineArm02_m07_C3` | Laminar sleeves with rondels | 4.4 | 28735 | `54d7a9f5-fe2c-45f3-b386-b74e19155d6f` |
| 692 | `BrigandineArm02_m08_C3` | Laminar sleeves with rondels | 4.4 | 28903 | `189d2f3f-849b-4c91-a0e4-361f1c8bdf76` |
| 693 | `BrigandineArm03_m01_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `2a4b891d-9131-4a45-8b93-4734da890724` |
| 694 | `BrigandineArm03_m02_C2` | Reinforced tempered sleeves | 4.1 | 25591 | `c84841ed-dd1e-4516-991e-fde0055a98ff` |
| 695 | `BrigandineArm03_m03_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `f92a401e-39d9-4bc7-857c-4341b49fe84a` |
| 696 | `BrigandineArm03_m04_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `47c62975-bc28-42ca-9ad8-dd7e67887240` |
| 697 | `BrigandineArm03_m05_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `a42c2f51-88e5-45ce-b672-aa4e4e42a4ee` |
| 698 | `BrigandineArm03_m06_C2` | Reinforced tempered sleeves | 4.1 | 25253 | `c88028dc-8ea1-4401-82ae-03179a9eab7d` |
| 699 | `BrigandineArm03_m07_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `2020e7bc-766b-4853-814a-7a45d2ce4dcc` |
| 700 | `BrigandineArm03_m08_C2` | Reinforced tempered sleeves | 4.1 | 25084 | `5f12b9a1-579c-4921-9a7d-afcc0f38294b` |
| 701 | `BrigandineArm03_mSamuel` | A suspicious bag | 5.3 | 50884 | `f68584b7-1460-4cf2-9485-b4c554aa54a8` |
| 702 | `BrigandineArm03_mTwitch` | Warhorse brigandine sleeves | 4.3 | 26932 | `f2813ad4-32ed-4bdd-920c-2ca7fbec4e7a` |
| 703 | `BrigandineArm05_m01_B4` | Silesian brigandine sleeves | 5.3 | 53296 | `4e3394b9-fb77-424f-a7b5-eca35dc51c43` |
| 704 | `BrigandineArm05_m02_B4` | Silesian brigandine sleeves | 5.3 | 52778 | `ec7148ad-7998-455d-ade8-7bddf358d515` |
| 705 | `BrigandineArm05_m03_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `5c1c81dd-f04b-4def-a735-e1b85e8bd919` |
| 706 | `BrigandineArm05_m04_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `5866cdf9-181d-4a50-85d4-a6f704986e72` |
| 707 | `BrigandineArm05_m05_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `17ce237d-232c-4ada-b2c9-46926ca9eb6a` |
| 708 | `BrigandineArm05_m06_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `5afa3ce1-db38-4b2e-9acf-25fea6dfb5d6` |
| 709 | `BrigandineArm05_m07_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `5f3aed6b-4415-4e45-ad5e-5ef74df8b2e6` |
| 710 | `BrigandineArm05_m08_B4` | Silesian brigandine sleeves | 5.3 | 52778 | `8acd858e-97e4-4d65-ba2c-c4cb4ca1deb7` |
| 711 | `BrigandineArm05_m09_B4` | Silesian brigandine sleeves | 5.3 | 53296 | `ae5d86e4-d0d9-4674-8838-d041bcd5731f` |
| 712 | `BrigandineArm05_m10_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `9071b358-2ee8-4a1a-96c0-33ace2cf41e2` |
| 713 | `BrigandineArm05_m11_B4` | Silesian brigandine sleeves | 5.3 | 52519 | `dcc178b9-ed1c-41c4-b2e7-ebda930e8af9` |
| 714 | `BrigandineArm06_m01_B5` | Noble laminar sleeves | 5.5 | 69321 | `c7793648-89e3-4730-9972-66a19f23ebf4` |
| 715 | `BrigandineArm06_m02_B5` | Noble laminar sleeves | 5.5 | 70066 | `43225a23-21fb-476a-916a-2becef0f4bf0` |
| 716 | `BrigandineArm06_m03_B5` | Noble laminar sleeves | 5.5 | 70066 | `a854b491-cc87-4852-abc1-3deb4838c631` |
| 717 | `BrigandineArm06_m04_B5` | Noble laminar sleeves | 5.5 | 68948 | `f1985960-065b-4535-b3d2-566981240838` |
| 718 | `BrigandineArm06_m05_A4` | Noble laminar sleeves | 5.5 | 59713 | `d15fa5f0-f7c5-4dba-ba89-ccae0093a1b2` |
| 719 | `BrigandineArm06_m06_B5` | Noble laminar sleeves | 5.5 | 68948 | `d58a08de-b346-4809-a09f-d8083a613c17` |
| 720 | `BrigandineArm06_m07_B5` | Noble laminar sleeves | 5.5 | 68948 | `1493ef2a-10a3-45f9-9352-1e514c9dbe26` |
| 721 | `BrigandineArm06_m08_B5` | Noble laminar sleeves | 5.5 | 68948 | `0e5e386e-98cd-46a3-bd46-b154c7e74151` |
| 722 | `BrigandineArm06_mErik_A3` | Noble laminar sleeves | 5.5 | 57365 | `729ebab8-9044-455b-a532-423622c7f2b1` |
| 723 | `BrigandineAulitz01_m01` | Noble laminar sleeves | 14.7 | 52475 | `41ca6379-56eb-4f98-97ba-539e76981544` |
| 724 | `brooch_brass_inscription` | Brass brooch with lettering | 0 | 300 | `be3e24c7-a4cb-4d7f-8765-c55828c04a7f` |
| 725 | `brooch_golden_erb` | Golden heraldic brooch | 0 | 6600 | `70f838fb-ccb5-4f57-ba3e-71073bffa249` |
| 726 | `brooch_golden_letter` | Golden initial brooch | 0 | 6600 | `079130b1-3367-48aa-937e-b5ecea0f750e` |
| 727 | `brooch_inlaid` | Women's brooche | 0 | 1948 | `1cbf71eb-e915-42a1-97af-2366386257a3` |
| 728 | `brooch_silver` | Silver brooch | 0 | 300 | `10ee3680-48cb-4f21-8349-590e531062e1` |
| 729 | `brooch_silver_enamel` | Silver brooch enamelled | 0 | 1948 | `ed256c21-cd6b-4e26-8d43-f9e429a8e484` |
| 764 | `BullPaint_m01` | Colour from the bull | 0.5 | 0 | `2574952f-3f37-44b2-8486-1051cc2a18d5` |
| 765 | `BullPaint_m02` | Colour from the bull | 0.5 | 0 | `564d4736-b7f6-4090-ae35-4c3ad3dc9744` |
| 766 | `BullPaint_m03` | Colour from the bull | 0.5 | 0 | `ea71bd7e-2e85-4aa7-8b33-1a182063b46d` |
| 775 | `Caftan01_m01_D1` | Cuman caftan | 14 | 2778 | `1ee88d1d-cf11-494b-b1cb-e9680d555890` |
| 776 | `Caftan01_m02_D1` | Cuman caftan | 14 | 2895 | `db5c885c-d40f-4712-994b-69ae4da2690c` |
| 777 | `Caftan01_m03_D1` | Cuman caftan | 14 | 2778 | `f4cb4dbd-93ad-4a82-a2e2-4b2295775d91` |
| 778 | `Caftan01_m04_D1` | Cuman caftan | 14 | 2953 | `3add3a6d-c382-4f80-97f0-01938cbe83a2` |
| 779 | `Caftan01_m05_D1` | Cuman caftan | 14 | 2953 | `eba6202d-46c4-4acb-b527-865c31600908` |
| 780 | `Caftan01_m06_D1` | Cuman caftan | 14 | 2953 | `4ee9b9ed-fa6d-4463-af64-eda3553bd609` |
| 781 | `Caftan01_m07_D1` | Cuman caftan | 14 | 2778 | `b555642b-a29c-4909-beac-1ad82c1dd650` |
| 782 | `Caftan01_m08_D1` | Cuman caftan | 14 | 2778 | `d8fe0fbf-4579-495d-afc2-37539927ee43` |
| 783 | `Caftan01_m09_D1` | Cuman caftan | 14 | 2953 | `0068874e-067a-474a-8af9-3b9a466b34d1` |
| 784 | `Caftan01_m10_D1` | Cuman caftan | 14 | 2953 | `62f5f992-a5b3-4304-91d7-60207031a838` |
| 785 | `Caftan02_m01_A2` | Lavish caftan | 14.4 | 7865 | `916e6f56-c606-4d70-892e-e4558d09e7ff` |
| 786 | `Caftan02_m02_A2` | Lavish caftan | 14.4 | 7865 | `5338c259-1041-48c3-b17e-45e3d09b851f` |
| 787 | `Caftan02_m03_A2` | Lavish caftan | 14.4 | 7865 | `5de44311-a590-4652-a76c-13b43f07e70b` |
| 788 | `Caftan02_m04_A2` | Lavish caftan | 14.4 | 7281 | `c7f7920d-3c46-4579-8e79-fc6734cedbac` |
| 789 | `Caftan02_m05_A2` | Lavish caftan | 14.4 | 6938 | `0b9035cf-5e1d-46d7-8c89-e93c4d9c8da8` |
| 790 | `Caftan02_m06_A2` | Lavish caftan | 14.4 | 6647 | `6b1eb8c2-e7ad-4523-9aaf-c57ba4311340` |
| 791 | `Caftan02_m07_A2` | Lavish caftan | 14.4 | 6938 | `e615798b-8a85-441a-9013-2abe4ff25714` |
| 792 | `Caftan02_m08_A2` | Lavish caftan | 14.4 | 6938 | `df8a0e80-738b-4e4f-8213-7e9e385100d2` |
| 793 | `Caftan02_m09_A2` | Lavish caftan | 14.4 | 7281 | `2fd1d0e1-28e3-4e7d-82ad-834ec45aa635` |
| 794 | `Caftan02_m10_A2` | Lavish caftan | 14.4 | 6938 | `90a65d86-bd06-4542-b687-f4300f60cfd4` |
| 795 | `Caftan02_mCherthan_A2` | Lavish caftan | 14.4 | 7670 | `38f3a103-fe9e-4cde-b023-3911e2626020` |
| 796 | `Caftan02_mCherthanBlood_A2` | Lavish caftan | 0.5 | 0 | `e25ba309-2e97-4b6e-a45c-2fcbe0bd2f0b` |
| 797 | `Caftan03_m01_C1` | Fastened caftan | 13.6 | 1655 | `11596dff-882e-4c6b-8281-08ececcf12f8` |
| 798 | `Caftan03_m02_C1` | Fastened caftan | 13.6 | 2432 | `6db01b1d-af61-4f5e-8939-7f40a0e90e85` |
| 799 | `Caftan03_m03_C1` | Fastened caftan | 13.6 | 1655 | `fa5f3d45-8d52-4119-8b9d-40f0e56d9bed` |
| 800 | `Caftan03_m04_C1` | Fastened caftan | 13.6 | 1960 | `bb0306a8-7ddc-489a-a339-df621817c151` |
| 801 | `Caftan03_m05_C1` | Fastened caftan | 13.6 | 1960 | `59ff0454-c574-4c6a-abb1-3e0b7de98bd4` |
| 802 | `Caftan03_m06_C1` | Fastened caftan | 13.6 | 1655 | `10129c55-6481-4e24-9645-6424562322d0` |
| 803 | `Caftan03_m07_C1` | Fastened caftan | 13.6 | 1960 | `4fd1ba83-ce8e-41b8-a15a-2129570359c2` |
| 804 | `Caftan03_m08_C1` | Fastened caftan | 13.6 | 1690 | `98e69e65-3a0a-4ac7-8e3e-a96875cbb2ee` |
| 805 | `Caftan03_m09_C1` | Fastened caftan | 13.6 | 1960 | `f0fbf1c3-dc92-486d-801c-5979ad5d896f` |
| 806 | `Caftan03_m10_C1` | Fastened caftan | 13.6 | 1668 | `fc19d965-53a1-4dc5-b35e-990b347b10bf` |
| 807 | `Caftan04_m01_D2` | Riding caftan | 14.6 | 7019 | `f753c1fe-278b-4383-95dd-4430f1bf193b` |
| 808 | `Caftan04_m02_D2` | Riding caftan | 14.6 | 7135 | `734e704a-38b8-4c71-a829-46262c7c78dd` |
| 809 | `Caftan04_m03_D2` | Riding caftan | 14.6 | 7135 | `9d23b721-adad-415f-8b81-885894c335c5` |
| 810 | `Caftan04_m04_D2` | Riding caftan | 14.6 | 7135 | `ed6bb678-87af-4c56-9d5d-b96352894ce7` |
| 811 | `Caftan04_m05_D2` | Riding caftan | 14.6 | 7019 | `94013e8b-23a8-4c0b-bfdc-dec8f225cbd0` |
| 812 | `Caftan04_m06_D2` | Riding caftan | 14.6 | 7019 | `37c28762-b8bd-4441-96fb-8d52f65ae41a` |
| 813 | `Caftan04_m07_D2` | Riding caftan | 14.6 | 7135 | `63edd2e4-d663-4d9a-a08f-9ba5e15704bb` |
| 814 | `Caftan04_m08_D2` | Riding caftan | 14.6 | 7135 | `e51ca28f-a239-4cbb-8dda-e23f46a1d048` |
| 815 | `Caftan04_m09_D2` | Riding caftan | 14.6 | 7019 | `719dd7c1-eb23-4a91-bf97-78ded6fbe55a` |
| 816 | `Caftan04_m10_D2` | Riding caftan | 14.6 | 7135 | `1208a028-f5c6-4cba-9aed-18fc31c63a70` |
| 817 | `Caftan05_m01_D3` | Quilted caftan | 15.2 | 12697 | `ac58f8fa-e6ce-4503-812d-b446612c46e1` |
| 818 | `Caftan05_m02_D3` | Quilted caftan | 15.2 | 12697 | `f544730a-0494-4e5b-bb5b-70e4204bf227` |
| 819 | `Caftan05_m03_D3` | Quilted caftan - black | 13.4 | 12748 | `0c405844-5336-4c6a-ad73-5de85e4a88f9` |
| 820 | `Caftan05_m04_D3` | Quilted caftan | 15.2 | 12567 | `27ef47e4-e489-4d01-8c17-4df9b13baf15` |
| 821 | `Caftan05_m05_D3` | Quilted caftan | 15.2 | 12567 | `cb5d0268-d43e-4a8e-aba2-6a4bcdc3c9aa` |
| 822 | `Caftan05_m06_D3` | Quilted caftan | 15.2 | 12697 | `e29bfd7a-a7f5-45e5-b280-df5cb3c3e404` |
| 823 | `Caftan05_m07_D3` | Quilted caftan | 15.2 | 12697 | `26b70bd7-4896-485a-b668-24f5f0068293` |
| 824 | `Caftan05_m08_D3` | Quilted caftan | 15.2 | 12697 | `4b84117f-7972-4be6-84c2-c1e270a09452` |
| 825 | `Caftan05_m09_D3` | Quilted caftan | 15.2 | 12697 | `e9fc25ef-93e7-439e-8fb2-49e5da1c56e7` |
| 826 | `Caftan05_m10_D3` | Quilted caftan | 15.2 | 12697 | `3b9c4a97-b176-4dc0-854f-c609020ab05a` |
| 827 | `Caftan05_m11_D3` | Quilted caftan | 15.2 | 12697 | `aa210295-4812-4277-b80d-a3ef11d91f60` |
| 828 | `Caftan05_m12_D3` | Quilted caftan | 15.2 | 12697 | `bcff2dd5-a710-416a-88bc-81f2ff54eec4` |
| 829 | `CaftanBasic_placeholder` | A suspicious bag | 0.5 | 3592 | `4465f08f-aff7-0ff7-dbb6-5b6d6cd0a984` |
| 830 | `CaftanLong_placeholder` | A suspicious bag | 0.5 | 10083 | `4f0e8929-39f6-e0ae-739f-682a0389319a` |
| 832 | `Cap01_m01_Apprentice` | Round cap | 0.5 | 433 | `24de28ab-a30a-4da7-9d9e-579f1dd8029b` |
| 833 | `Cap01_m01_C` | Round cap | 0.5 | 433 | `a6868ef1-38e4-4660-9e64-5c87b5ebaf5a` |
| 834 | `Cap01_m02_C` | Round cap | 0.5 | 561 | `8aa945cf-fbdc-422d-a0da-4b864a4bf666` |
| 835 | `Cap01_m03_C` | Round cap | 0.5 | 561 | `ec66d106-8459-4495-8767-e219fac9203e` |
| 836 | `Cap01_m04_Apprentice` | Round cap | 0.5 | 519 | `78c833b7-ca32-4292-8190-81e111ba9f6b` |
| 837 | `Cap01_m04_Apprentice02` | Round cap | 0.5 | 519 | `a2faf278-e5c3-4601-9bd5-418031a7e42d` |
| 838 | `Cap01_m04_C` | Round cap | 0.5 | 519 | `02af093e-411c-4369-b428-5502ffe277cc` |
| 839 | `Cap01_m05_C` | Round cap | 0.5 | 433 | `88cf91cb-5e8c-4640-acff-393c8500f2c3` |
| 840 | `Cap01_m07_C` | Round cap | 0.5 | 561 | `8e725bdf-bf78-4866-aa18-1220edbdd5df` |
| 841 | `Cap01_m08_Blacksmith` | Round cap | 0.5 | 433 | `ada40358-786b-49b0-8845-b868b1111ce5` |
| 842 | `Cap01_m08_C` | Round cap | 0.5 | 433 | `9ee3d3cc-4545-4c5f-bc3d-9dbfba2dd85c` |
| 843 | `Cap01_m09_Blacksmith` | Round cap | 0.5 | 433 | `321049f4-18fc-4835-bcd7-a8ce9873957f` |
| 844 | `Cap01_m09_C` | Round cap | 0.5 | 433 | `40732042-069f-441b-a6c8-6ca46c8c483e` |
| 845 | `Cap01_m10_C` | Round cap | 0.5 | 561 | `6e8a9ff0-cfa8-44ca-9936-7fccd76af714` |
| 846 | `Cap01_mApprentice` | | 0 | 0 | `401cd532-608c-4042-b842-21c3df70c31f` |
| 847 | `Cap01_mApprentice01` | | 0 | 0 | `e9d5e8d0-944d-4837-8e08-8f7d3397e3b9` |
| 848 | `Cap01_mApprentice02` | | 0 | 0 | `680e6b79-d4ed-4a68-8c08-2b6ef0452a7d` |
| 849 | `Cap01_mApprentice03` | | 0 | 0 | `15f50598-4521-4e4c-9d36-c5789ba3bc12` |
| 850 | `Cap01_mApprentice04` | | 0 | 0 | `5a747c8e-139a-4d32-9939-a9ef6572e286` |
| 851 | `Cap01_mBlacksmith01` | | 0 | 0 | `2ba7e295-26f1-419a-b860-da79c9339654` |
| 852 | `Cap01_mBlacksmith02` | | 0 | 0 | `bec267b1-bc97-489c-9a59-4cdf4ef1a915` |
| 853 | `Cap01_mBlacksmith03` | | 0 | 0 | `458d823d-5fb4-4e27-b095-3a5b6981d616` |
| 854 | `Cap01_mBlacksmith04` | | 0 | 0 | `7327c4ce-52ea-43ac-aaaf-c3a9311919e8` |
| 855 | `Cap01_mBlacskmith` | | 0 | 0 | `c01bcedd-3d01-4823-ac87-19b5b7813751` |
| 856 | `Cap02_m01_B` | Frilled cap | 0.5 | 935 | `b5940236-f481-4d78-b787-dca6c6aee76f` |
| 857 | `Cap02_m02_B` | Frilled cap | 0.5 | 1008 | `30ab29dd-cfb3-4bae-b549-e23728189421` |
| 858 | `Cap02_m03_B` | Frilled cap | 0.5 | 1008 | `435fca15-3125-4d45-b8c9-eb09694e22f3` |
| 859 | `Cap02_m04_B` | Frilled cap | 0.5 | 1008 | `43d4f735-1fd5-4d87-b2bc-1e2c81c266a3` |
| 860 | `Cap02_m05_B` | Frilled cap | 0.5 | 1008 | `83ca3839-e8e3-4e2d-a9f0-d73b56348cb4` |
| 861 | `Cap02_m06_B` | Frilled cap | 0.5 | 788 | `763cc45b-c826-40d5-ab76-fd2b8c1194a2` |
| 862 | `Cap02_m07_B` | Frilled cap | 0.5 | 812 | `ea0fa9bc-c402-4903-9a3b-f3721d75d3b9` |
| 863 | `Cap02_m08_B` | Frilled cap | 0.5 | 788 | `f185324e-b04b-4f2f-9e2d-bacd8b0bce43` |
| 864 | `Cap02_m09_B` | Frilled cap | 0.5 | 788 | `e4b86fd5-cb28-4de2-8d23-a0226ce6636d` |
| 865 | `Cap02_m10_B` | Frilled cap | 0.5 | 1008 | `0d8460c0-1bda-4c59-b478-ab5432f786a1` |
| 866 | `Cap03_m01_E` | Felt cap | 0.5 | 59 | `10e02ed7-76e0-4e73-9767-1f67e455bb02` |
| 867 | `Cap03_m02_E` | Felt cap | 0.5 | 16 | `ca1f6ad6-3c2a-4bd1-951e-16883bc09dd2` |
| 868 | `Cap03_m03_E` | Felt cap | 0.5 | 16 | `a3699b3e-2bed-4feb-ba40-31cc40ee0f74` |
| 869 | `Cap03_m04_E` | Felt cap | 0.5 | 59 | `84f3a3a4-5a12-4812-84d2-e84ce0d758a1` |
| 870 | `Cap03_m05_E` | Felt cap | 0.5 | 16 | `8cba0ee8-0862-4819-ba33-b19e9e67150e` |
| 871 | `Cap03_m06_E` | Felt cap | 0.5 | 44 | `389fbc5f-a9b7-4ef9-bafd-93b40fd7e46e` |
| 872 | `Cap03_m07_E` | Felt cap | 0.5 | 59 | `b6c5f093-1a1e-413c-96fb-6e5918302b0f` |
| 873 | `Cap03_m08_E` | Felt cap | 0.5 | 59 | `0610877c-83f4-4fdb-95e9-c3edf813ba0b` |
| 874 | `Cap03_mMikes_E` | Felt cap | 0.5 | 89 | `d0bec26c-d954-4914-abff-bcc53c16c1db` |
| 875 | `Cap04_m01_D` | Wide straw hat | 0.5 | 268 | `1cc196ef-a1a1-4211-9bd5-0be66bb10aee` |
| 876 | `Cap04_m02_D` | Wide straw hat | 0.5 | 268 | `1d3ae118-9349-43f8-a3f0-cc60909b71e3` |
| 877 | `Cap05_m01_D` | Baggy cap | 0.5 | 311 | `acf965b7-7011-48d1-a89d-cef260ed3701` |
| 878 | `Cap05_m02_D` | Baggy cap | 0.5 | 311 | `9b614795-8193-4107-9c63-f8f7e9fd2216` |
| 879 | `Cap05_m03_D` | Baggy cap | 0.5 | 225 | `9fcaff60-d405-434a-9148-c2c43b3b42bc` |
| 880 | `Cap05_m04_D` | Baggy cap | 0.5 | 311 | `30921247-8358-4c8a-b3a4-6ea2a69c4320` |
| 881 | `Cap05_m05_D` | Baggy cap | 0.5 | 225 | `7b85aa56-71a8-46d4-8ea3-d891bcd1511b` |
| 882 | `Cap05_m06_D` | Baggy cap | 0.5 | 281 | `1ee67c61-66ba-4413-997f-be5aa7671864` |
| 883 | `Cap05_m07_D` | Baggy cap | 0.5 | 281 | `156e3517-4dcb-49ed-886e-e18dd36cefa4` |
| 884 | `Cap05_m08_D` | Baggy cap | 0.5 | 311 | `cfa33d78-f37d-45e4-a3a9-35d4a4ca76e7` |
| 885 | `Cap05_m09_D` | Baggy cap | 0.5 | 225 | `3c0d4694-d99a-4099-9595-2d52e95234fe` |
| 886 | `Cap05_m10_D` | Baggy cap | 0.5 | 225 | `d9e5eb77-4d41-4dd3-97fa-6c555ec433d5` |
| 887 | `Cap06_m01_D` | Cuman leather hat | 0.5 | 225 | `083f9cc6-fd41-4c5d-9f3a-cc63d7a1bc1b` |
| 888 | `Cap06_m02_D` | Cuman leather hat | 0.5 | 311 | `01b821a8-ff61-405f-bc31-35ae85c7c029` |
| 889 | `Cap06_m03_D` | Cuman leather hat | 0.5 | 225 | `25978deb-8bf1-40aa-924b-c229625016f3` |
| 890 | `Cap06_m04_D` | Cuman leather hat | 0.5 | 311 | `bc804c0a-e688-4fdd-ac87-a1d3463736ad` |
| 891 | `Cap06_m05_D` | Cuman leather hat | 0.5 | 281 | `a03b2465-ffeb-419c-9a16-1da38da68c13` |
| 892 | `Cap06_m06_D` | Cuman leather hat | 0.5 | 311 | `19889cae-7217-4645-8273-dc60ecd0dede` |
| 893 | `Cap06_m07_D` | Cuman leather hat | 0.5 | 225 | `5dadef94-0233-4788-9ab2-aa9fb9bde4e5` |
| 894 | `Cap06_m08_D` | Cuman leather hat | 0.5 | 311 | `cf0711c9-cb90-4462-af57-e0bad5fe1c62` |
| 895 | `Cap06_m09_D` | Cuman leather hat | 0.5 | 311 | `01894921-14e0-4012-a3a6-5f1fcf01d2d2` |
| 896 | `Cap06_m10_D` | Cuman leather hat | 0.5 | 311 | `e811f02f-d513-4489-9213-ed2df19d6fcc` |
| 897 | `Cap07_m01_B` | Embroidered chaperon | 0.5 | 976 | `d86f4f37-268f-40aa-b584-23dba83fe46e` |
| 898 | `Cap07_m02_B` | Embroidered chaperon | 0.5 | 976 | `5cddb16d-56f5-4ed8-a954-7d4644307eef` |
| 899 | `Cap07_m03_B` | Embroidered chaperon | 0.5 | 905 | `bda9fdc5-0aa2-4c05-a742-44c07b3b3b61` |
| 900 | `Cap07_m04_B` | Embroidered chaperon | 0.5 | 763 | `cab7b342-26d7-446d-8137-dc6de5359f7f` |
| 901 | `Cap07_m05_B` | Embroidered chaperon | 0.5 | 976 | `2cc453b4-7f3b-42db-945f-1b144ede0672` |
| 902 | `Cap07_m06_B` | Embroidered chaperon | 0.5 | 976 | `8be134b9-c1fd-436a-93a0-f4323b210a91` |
| 903 | `Cap07_m07_B` | Embroidered chaperon | 0.5 | 905 | `da859fa4-30d0-4385-acca-e3816a710c12` |
| 904 | `Cap07_m08_B` | Embroidered chaperon | 0.5 | 976 | `f02e03db-4a8e-4cf0-a65a-5c62fcdc3e49` |
| 905 | `Cap07_m09_B` | Embroidered chaperon | 0.5 | 976 | `1f990335-8545-4a5c-8112-8e2656f46ae5` |
| 906 | `Cap07_m10_B` | Embroidered chaperon | 0.5 | 976 | `bd84244c-efe9-42dd-92ce-9379a8a7dfd9` |
| 907 | `Cap07_m11_B` | Embroidered chaperon | 0.5 | 763 | `4abe6efc-4cf3-4797-86e1-a7db80a0db68` |
| 908 | `Cap07_m12_B` | Embroidered chaperon | 0.5 | 976 | `b5e0ebd7-5b5d-42a1-a350-af5028e21e7c` |
| 909 | `Cap07_mIstvan_A` | Lord Toth's chaperon | 0.5 | 812 | `f223e51f-fdd4-405b-bc56-bd62ba7354de` |
| 910 | `Cap08_m01_B` | Burgundian hat | 0.5 | 1008 | `6b9f3418-856b-4b4b-82a9-0e4256df4986` |
| 911 | `Cap08_m02_B` | Burgundian hat | 0.5 | 1008 | `ec613870-e861-48a7-b880-69f84d7d2054` |
| 912 | `Cap08_m03_B` | Burgundian hat | 0.5 | 1008 | `0f710617-6a70-4684-a857-eec8b4046443` |
| 913 | `Cap08_m04_B` | Burgundian hat | 0.5 | 1008 | `39141a90-7892-45cb-8a08-b3fac01980c5` |
| 914 | `Cap08_m05_B` | Burgundian hat | 0.5 | 812 | `17225693-9644-4d80-8716-1864a788179c` |
| 915 | `Cap08_m06_B` | Burgundian hat | 0.5 | 1008 | `902d20eb-6456-4abe-9b8b-8058e185f230` |
| 916 | `Cap08_m07_B` | Burgundian hat | 0.5 | 1008 | `822799d3-5523-4e07-90f1-52d5f163529d` |
| 917 | `Cap08_m08_B` | Burgundian hat | 0.5 | 1008 | `e5a5bb22-1e2e-48f6-b192-48bf86262030` |
| 918 | `Cap08_m09_B` | Burgundian hat | 0.5 | 788 | `46169253-fca0-413e-b5b9-b1a9783c9288` |
| 919 | `Cap08_m10_B` | Burgundian hat | 0.5 | 788 | `f8e674ee-4c14-4f77-942f-b10d2b7086de` |
| 920 | `Cap09_m01_C` | Pointy cap | 0.5 | 561 | `fc71a57e-cbb0-4f1e-bae3-9314ac2b06b4` |
| 921 | `Cap09_m02_C` | Pointy cap | 0.5 | 561 | `1c27cedf-b38a-421b-8fd1-ab8d460e6500` |
| 922 | `Cap09_m03_C` | Pointy cap | 0.5 | 561 | `e57e8939-cfb7-4e49-9dc2-9e1c34d31691` |
| 923 | `Cap09_m04_C` | Pointy cap | 0.5 | 433 | `f3d4831b-bc56-44e7-9751-ba55fde40145` |
| 924 | `Cap09_m05_C` | Pointy cap | 0.5 | 561 | `a5201dca-4fe1-4c58-9e29-1d563aacdbf7` |
| 925 | `Cap09_m06_C` | Pointy cap | 0.5 | 561 | `8ad17f24-e12e-4982-a5ff-8faf60ae2b74` |
| 926 | `Cap09_m07_C` | Pointy cap | 0.5 | 561 | `3d5a0649-a046-4eb6-9ca9-8ed9315f0622` |
| 927 | `Cap09_m08_C` | Pointy cap | 0.5 | 433 | `396f4380-2f6b-4892-b14d-e65141ba4074` |
| 928 | `Cap09_m09_C` | Pointy cap | 0.5 | 561 | `b5583fd1-745e-428a-98c8-c353309a0fc8` |
| 929 | `Cap09_m10_C` | Pointy cap | 0.5 | 433 | `963f4e9b-765e-4c33-9ea5-f89bd80fa03c` |
| 930 | `Cap10_m01_B` | Pointy cap | 0.5 | 1221 | `d302e91e-d35e-4b98-b29e-e779bd8b9322` |
| 931 | `Cap10_m02_B` | Hunting cap | 0.5 | 1129 | `baf9f635-c893-4b28-aae1-e14cb7c8e4bd` |
| 932 | `Cap10_m03_B` | Hunting cap | 0.5 | 1221 | `fb4cdf39-d880-4cad-9f5c-0404c60f599e` |
| 933 | `Cap10_m04_B` | Hunting cap | 0.5 | 1221 | `629f080d-0a10-42ce-8ad9-c77a07f06a46` |
| 934 | `Cap10_m05_B` | Hunting cap | 0.5 | 1221 | `cb7b0f61-cd04-4c7f-8f61-18002cb14563` |
| 935 | `Cap10_m06_B` | Hunting cap | 0.5 | 1221 | `40e261ff-e784-446d-ab36-6d25bec8f1b5` |
| 936 | `Cap10_m07_B` | Hunting cap | 0.5 | 1221 | `b3218b3f-06ab-4b56-8030-a10d64ec1d41` |
| 937 | `Cap10_m08_B` | Hunting cap | 0.5 | 1221 | `d0eca898-2038-4831-9bdc-a9fb1e2e3470` |
| 938 | `Cap10_m09_B` | Hunting cap | 0.5 | 943 | `8ee88581-6dc8-4246-a92f-654ce4b5c63c` |
| 939 | `Cap10_m10_B` | Hunting cap | 0.5 | 1221 | `f26e5d2d-e036-4cc1-8e61-d884740f8953` |
| 940 | `Cap10_mMikus_B` | Mikush's cap | 0.5 | 812 | `48755100-c074-48ac-b233-e98b50ab3991` |
| 941 | `Cap11_m01_D` | Work scarf | 0.5 | 225 | `f13cfc8b-eb2b-47eb-9ea1-d773e8908e32` |
| 942 | `Cap11_m02_D` | Work scarf | 0.5 | 225 | `5963c026-aed4-49e5-ad44-8ed048fae1ba` |
| 943 | `Cap11_m03_D` | Work scarf | 0.5 | 311 | `7b47b880-79db-49d0-b3d8-0105c1065ea4` |
| 944 | `Cap11_m04_D` | Work scarf | 0.5 | 225 | `bad05ebe-aa46-47f2-b3ae-4b7cfee2a2cd` |
| 945 | `Cap11_m05_D` | Work scarf | 0.5 | 225 | `328f9996-a384-452e-a5a5-57c9c108a996` |
| 946 | `Cap11_m06_D` | Work scarf | 0.5 | 311 | `3e892401-2410-4d20-ab4c-896e031303f0` |
| 947 | `Cap11_m07_D` | Work scarf | 0.5 | 225 | `528b4703-c5c5-41cb-8653-cd0aaa2434c2` |
| 948 | `Cap11_m08_D` | Work scarf | 0.5 | 311 | `ec5420f5-9c86-4dd9-b373-320b81831327` |
| 949 | `Cap11_m09_D` | Work scarf | 0.5 | 225 | `81ddb564-7b10-4412-b8ae-15d521482c18` |
| 950 | `Cap11_m10_D` | Work scarf | 0.5 | 311 | `f6aa674f-f64e-41ae-8a51-e6234c05901b` |
| 951 | `Cap12_m01_D` | Wanderer's hat | 0.5 | 394 | `abb3e8b3-8c25-47f1-8e44-9b4b61380bef` |
| 952 | `Cap12_m02_Apprentice` | Burgher's hat | 0.5 | 812 | `6d9f052f-921e-4f88-8aee-72ca01717e08` |
| 953 | `Cap12_m02_Blacksmith` | Burgher's hat | 0.5 | 812 | `37441cfb-8c9c-4b47-8c81-a2a4f3bc2c3b` |
| 954 | `Cap12_m02_D` | Wanderer's hat | 0.5 | 225 | `2ebfd5a8-c34a-418f-bea1-23c8f45e1651` |
| 955 | `Cap12_m03_D` | Wanderer's hat | 0.5 | 408 | `23371353-e425-483c-8725-f81a7e70df19` |
| 956 | `Cap12_m04_Blacksmith` | Wanderer's hat | 0.5 | 311 | `28503af0-2452-4a3f-8ce2-53e07cff25cf` |
| 957 | `Cap12_m04_D` | Wanderer's hat | 0.5 | 311 | `9d3703c5-d3e7-4386-907b-e11a2b936cfc` |
| 958 | `Cap12_m05_D` | Wanderer's hat | 0.5 | 408 | `61790e19-ff9f-4e0b-9afc-4da65b234b0c` |
| 959 | `Cap12_m06_D` | Wanderer's hat | 0.5 | 311 | `6fe74ea3-7daf-4a9a-9c17-ec33e25202fd` |
| 960 | `Cap12_m07_D` | Wanderer's hat | 0.5 | 346 | `96efea9e-1cdf-462a-a8b5-8aa58035d16b` |
| 961 | `Cap12_m08_D` | Vagrant's hat | 0.5 | 490 | `cf9ec8c3-71aa-48f8-98b3-6dab11b25c9e` |
| 962 | `Cap12_mKozlik_D` | Wanderer's hat | 0.5 | 408 | `67d94657-0883-46f2-afda-4bccb7390dcf` |
| 963 | `Cap13_m01_D` | Tall Cuman cap | 0.5 | 225 | `ea62cf9a-a593-4abe-a113-92e8aaebbc07` |
| 964 | `Cap13_m02_D` | Tall Cuman cap | 0.5 | 281 | `222e447b-f1a0-428b-acb6-5cd7fe9ccbdb` |
| 965 | `Cap13_m03_D` | Tall Cuman cap | 0.5 | 225 | `a2c99721-0958-439f-a42e-f71e13a31ecc` |
| 966 | `Cap13_m04_D` | Tall Cuman cap | 0.5 | 225 | `8d591641-5354-464c-b30f-cc2157a9d32a` |
| 967 | `Cap13_m05_D` | Tall Cuman cap | 0.5 | 311 | `d17d892e-beca-417e-9785-9f860593b73b` |
| 968 | `Cap13_m06_D` | Tall Cuman cap | 0.5 | 225 | `6a12847a-6efb-448e-a2df-b64406a997f2` |
| 969 | `Cap13_m07_D` | Tall Cuman cap | 0.5 | 311 | `e3f727ce-aaa3-4225-9162-0cb03051f4e9` |
| 970 | `Cap13_m08_D` | Tall Cuman cap | 0.5 | 225 | `a851944a-cec0-4d0e-a3cf-ae46f81da933` |
| 971 | `Cap13_m09_D` | Tall Cuman cap | 0.5 | 225 | `bb5b97da-8f90-44c6-8bc3-ee040303e7a6` |
| 972 | `Cap13_m10_D` | Tall Cuman cap | 0.5 | 311 | `f4f1191a-91fe-400f-afbd-d3da1d1e0b23` |
| 973 | `Cap14_m01_A` | Cap with peacock feathers | 0.5 | 1471 | `ad823378-0275-4604-8dd9-bf7a558b2789` |
| 974 | `Cap14_m02_A` | Cap with peacock feathers | 0.5 | 1471 | `177a03eb-3592-4454-af1d-7501967b5969` |
| 975 | `Cap14_m03_A` | Cap with peacock feathers | 0.5 | 1471 | `ae8cf8a1-7050-4138-9b1c-ed55947fd08e` |
| 976 | `Cap14_m04_A` | Cap with peacock feathers | 0.5 | 1471 | `db8c54e4-ab07-478b-a191-0d258487a25b` |
| 977 | `Cap14_m05_A` | Cap with peacock feathers | 0.5 | 1471 | `ab276602-2137-489d-80e5-b49929328f1e` |
| 978 | `Cap14_m06_A` | Cap with peacock feathers | 0.5 | 1152 | `b5ddbe11-3b32-4dfb-9920-ee16dddc13b5` |
| 979 | `Cap14_m07_A` | Cap with peacock feathers | 0.5 | 1471 | `6ae9759c-ee8c-44ae-9c0e-bffaa42d34b4` |
| 980 | `Cap14_m08_A` | Cap with peacock feathers | 0.5 | 1471 | `9852222d-5114-495a-bec0-31edcdefd62f` |
| 981 | `Cap14_m09_A` | Cap with peacock feathers | 0.5 | 1471 | `e87c5b4b-066c-408b-ac37-e5d61ab6cc19` |
| 982 | `Cap14_m10_A` | Cap with peacock feathers | 0.5 | 1152 | `e9e8db79-6235-40e2-8a96-134102947773` |
| 983 | `Cap15_m01_D` | Narrow straw hat | 0.5 | 268 | `6749e206-053f-4966-98fa-08ef99cf93a5` |
| 984 | `Cap15_m02_D` | Narrow straw hat | 0.5 | 268 | `f24ce681-be1d-4c5b-b8f1-49ac536b6ffe` |
| 985 | `Cap16_m01_E` | Headscarf | 0.5 | 16 | `f96a10d6-3fb7-4e57-a5c1-f84c7a4f64f9` |
| 986 | `Cap16_m02_E` | Headscarf | 0.5 | 44 | `a10e616f-d143-4a6c-8405-82314ccf841d` |
| 987 | `Cap16_m03_E` | Headscarf | 0.5 | 59 | `e7caca56-8aaf-4cb1-ba87-7260809b856d` |
| 988 | `Cap16_m04_E` | Headscarf | 0.5 | 16 | `762523e1-9df5-422f-b0a4-6124fd75c44d` |
| 989 | `Cap16_m05_E` | Headscarf | 0.5 | 16 | `16977d23-7510-48e6-82e6-a9fda39e52ff` |
| 990 | `Cap16_m06_E` | Headscarf | 0.5 | 16 | `4790b2cf-6eac-4d8c-addd-7444352ce4c7` |
| 991 | `Cap16_m07_Apprentice` | Headscarf | 0.5 | 16 | `7655dee9-d874-475e-a767-34666ca0900d` |
| 992 | `Cap16_m07_E` | Headscarf | 0.5 | 16 | `5c39d160-135a-4faf-ab1e-0e601a5dcc63` |
| 993 | `Cap16_m08_E` | Headscarf | 0.5 | 16 | `fba91521-a381-4980-8c15-8fdca6bd34ad` |
| 994 | `Cap17_m01_C` | Bohemian cap | 0.5 | 708 | `fb999545-a4b1-493b-bb61-84ce505434c4` |
| 995 | `Cap17_m02_C` | Bohemian cap | 0.5 | 543 | `8d10b609-0c3c-42dd-acec-991e89874bfe` |
| 996 | `Cap17_m03_C` | Bohemian cap | 0.5 | 561 | `7668a95d-22d2-4754-b9a0-1ceb0cda2182` |
| 997 | `Cap17_m04_C` | Bohemian cap | 0.5 | 561 | `155ae461-886c-4bd2-9cef-faa6916992e9` |
| 998 | `Cap17_m05_C` | Bohemian cap | 0.5 | 561 | `8e837873-db5b-415b-9f98-508a1e74baac` |
| 999 | `Cap17_m06_C` | Bohemian cap | 0.5 | 708 | `e80c3672-d6e6-452c-ba19-f3009e17b1b7` |
| 1000 | `Cap17_m07_C` | Bohemian cap | 0.5 | 708 | `25e522fc-213a-45e4-880a-2f6089aff01b` |
| 1001 | `Cap17_m08_C` | Bohemian cap | 0.5 | 543 | `8dc40bbd-aa60-4f56-b49a-58595d79b4d2` |
| 1002 | `Cap17_m09_C` | Bohemian cap | 0.5 | 708 | `24718614-953b-4a01-90f0-8f0eb7cd1535` |
| 1003 | `Cap17_m10_C` | Bohemian cap | 0.5 | 543 | `5d114fb7-639c-4105-8517-e1e07598e234` |
| 1004 | `Cap18_m01_A` | Nobleman's hat | 0.5 | 1973 | `1d7d89df-da5c-418c-8749-11b758064ca0` |
| 1005 | `Cap18_m02_A` | Nobleman's hat | 0.5 | 2639 | `6269ab2b-3518-47f1-98c5-b7e7858d512c` |
| 1006 | `Cap18_m03_A` | Nobleman's hat | 0.5 | 2639 | `8282730b-0195-4b73-b4b8-5fb1e46a78ac` |
| 1007 | `Cap18_m04_A` | Nobleman's hat | 0.5 | 1973 | `3480bc5a-b7a1-417a-b447-8051bcb30a2c` |
| 1008 | `Cap18_m05_A` | Nobleman's hat | 0.5 | 1973 | `59c8f6a2-c084-49b4-9699-69a29c58481d` |
| 1009 | `Cap18_m06_A` | Nobleman's hat | 0.5 | 2306 | `55aa7896-e052-4a9e-bbc0-b3617cfbb58a` |
| 1010 | `Cap18_m07_A` | Nobleman's hat | 0.5 | 2639 | `1d171c5b-a0c9-49bc-b176-2acd80f1ee90` |
| 1011 | `Cap18_m08_A` | Nobleman's hat | 0.5 | 2639 | `458860b0-1f35-451e-b7d9-92edfc81ef45` |
| 1012 | `Cap18_m09_A` | Nobleman's hat | 0.5 | 2639 | `e6c2d88a-dc5d-4939-bf4a-2d78f2939087` |
| 1013 | `Cap18_m10_A` | Nobleman's hat | 0.5 | 2639 | `6746ce07-78de-4fca-b37d-a6bbf3a17d50` |
| 1014 | `Cap18_mMurderer` | Nobleman's hat | 0.5 | 2306 | `a2c0288a-c985-4e68-943a-805cf7fba526` |
| 1015 | `Cap18_mPisek_A` | A suspicious bag | 0.5 | 2639 | `466806c3-4f09-4efe-a9b5-283594dbad1d` |
| 1016 | `Cap19_m01_C` | Miner's cap | 0.5 | 561 | `3165cfd9-692f-4605-8d51-b877e4959cd1` |
| 1017 | `Cap19_m02_C` | Miner's cap | 0.5 | 708 | `0bc213eb-e3a1-4e23-94c0-63b6ab90aa21` |
| 1018 | `Cap19_m03_C` | Pickpocket's hat | 0.5 | 1048 | `c12935c1-a6df-4127-a9f8-f80c36ba42dc` |
| 1019 | `Cap19_m04_C` | Miner's cap | 0.5 | 519 | `198512c9-aea3-4536-83ad-b15b481fddae` |
| 1020 | `Cap19_m05_C` | Miner's cap | 0.5 | 561 | `04029519-5e1b-4a82-8e21-5754cf07ea00` |
| 1021 | `Cap19_m06_C` | Miner's cap | 0.5 | 433 | `e8b651d2-fd27-4c94-9752-c5b21a9d02ad` |
| 1022 | `Cap19_m07_C` | Miner's cap | 0.5 | 561 | `611c2196-5e33-4846-a9e2-de1fda81882b` |
| 1023 | `Cap19_m08_C` | Miner's cap | 0.5 | 561 | `2250adef-3a3b-4873-aa83-7c4e1260669b` |
| 1024 | `Cap19_m09_C` | Miner's cap | 0.5 | 561 | `547814f3-1d5f-4435-a33d-7701983a87de` |
| 1025 | `Cap19_m10_C` | Miner's cap | 0.5 | 561 | `1394d752-cbf2-4586-b7eb-27ed0b57169d` |
| 1026 | `Cap19_mFather` | A suspicious bag | 0.5 | 433 | `4eaacefb-70af-4e9f-9a06-311a3dcadb23` |
| 1027 | `Cap19_mFather_cutscene` | A suspicious bag | 0.5 | 433 | `6d5fccfd-5c39-4897-b433-5a9cb4df4f7a` |
| 1028 | `Cap20_m01_E` | Felt cap | 0.5 | 16 | `d8fa23f2-5200-4503-874b-a609bb4b52a8` |
| 1029 | `Cap20_m02_E` | Felt cap | 0.5 | 16 | `b9a27a3f-ae15-43df-8bd3-2c927e36341b` |
| 1030 | `Cap20_m03_E` | Felt cap | 0.5 | 16 | `a15a1849-ec36-4b51-833c-1903d2c14b24` |
| 1031 | `Cap20_m04_E` | Felt cap | 0.5 | 16 | `45f81a96-0f3e-43b5-bafb-144d4cf9a6c8` |
| 1032 | `Cap20_m05_E` | Felt cap | 0.5 | 16 | `6ffb3ec9-cf43-4fa8-86c0-72ee462943af` |
| 1033 | `Cap20_m06_E` | Felt cap | 0.5 | 16 | `e72485da-2ab7-4a90-8c6c-d5382821c20a` |
| 1034 | `Cap20_m07_E` | Felt cap | 0.5 | 16 | `7493a39f-6649-477a-9f00-a059c1e396dd` |
| 1035 | `Cap20_m08_E` | Felt cap | 0.5 | 16 | `27608599-6707-4bcb-8399-12e6a2dfe8ca` |
| 1036 | `Cap20_m09_E` | Felt cap | 0.5 | 16 | `3ccd2b58-f0c5-4148-a671-7d6ca024d22e` |
| 1037 | `Cap20_m10_E` | Felt cap | 0.5 | 16 | `2fd6171a-e788-45c8-b07a-c6d83db790d3` |
| 1038 | `Cap21_m01_C` | Thief's cap | 0.5 | 1970 | `622c59e5-c409-45c7-8be1-cac931926104` |
| 1039 | `Cap21_m02_C` | Silesian cap | 0.5 | 561 | `5fa9d7c1-f8ee-45df-a4d7-5a9702302983` |
| 1040 | `Cap21_m03_C` | Silesian cap | 0.5 | 433 | `28b482ab-0b6c-4615-9f65-849c1a1fb92d` |
| 1041 | `Cap21_m04_C` | Silesian cap | 0.5 | 433 | `9e1c7ec5-0b95-4b48-bfbb-4f3e291a3629` |
| 1042 | `Cap21_m05_C` | Silesian cap | 0.5 | 561 | `a0503616-90d8-410a-afb1-db600bf40c6a` |
| 1043 | `Cap21_m06_C` | Silesian cap | 0.5 | 433 | `a2fe0244-0070-4552-984b-7fa0055a3dcd` |
| 1044 | `Cap21_m07_C` | Silesian cap | 0.5 | 561 | `3ea90725-e61b-4822-a94d-ab0b65d8f0b4` |
| 1045 | `Cap21_m08_C` | Silesian cap | 0.5 | 561 | `94b0fa8d-f75a-48b2-bfd6-8eec5a767557` |
| 1046 | `Cap21_m09_C` | Silesian cap | 0.5 | 561 | `085ca82f-2872-4eb7-b373-137d4a39d382` |
| 1047 | `Cap21_m10_C` | Silesian cap | 0.5 | 433 | `ab00cbfa-758d-4e95-8361-9027a1c1b515` |
| 1048 | `Cap21_mGodwin` | Silesian cap | 0.5 | 561 | `95560508-6beb-4a61-9d07-60c01629016a` |
| 1049 | `Cap21_mOderin_C` | Silesian cap | 0.5 | 433 | `89675c90-a6d7-4f5a-91dc-118f7d445b52` |
| 1050 | `Cap21_mRabi` | A suspicious bag | 0.5 | 642 | `6e811201-88a3-464c-b1e1-98dbde207281` |
| 1051 | `Cap22_m01_A` | Chaperon with brooch | 0.5 | 3104 | `8e68672a-e4d0-4c7f-87fe-081d2d9ad5f4` |
| 1052 | `Cap22_m02_A` | Chaperon with brooch | 0.5 | 3104 | `5d68180e-69b9-4cd0-a562-09fdaff8c1b4` |
| 1053 | `Cap22_m03_A` | Chaperon with brooch | 0.5 | 3104 | `71ac7078-9890-43ff-8eed-2b71f88b7dfc` |
| 1054 | `Cap22_m04_A` | Chaperon with brooch | 0.5 | 2306 | `f6b79b12-8e1f-44ae-853f-eb1f87d18799` |
| 1055 | `Cap22_m05_A` | Chaperon with brooch | 0.5 | 3104 | `3a66b6d0-c4f5-4a66-8ee8-78299ddfd318` |
| 1056 | `Cap22_m06_A` | Chaperon with brooch | 0.5 | 3104 | `47f1bb29-163e-4912-bea3-bea556b6bf16` |
| 1057 | `Cap22_m07_A` | Chaperon with brooch | 0.5 | 3104 | `e790ed79-7798-41a8-8a62-761ba4a67f0f` |
| 1058 | `Cap22_m08_A` | Chaperon with brooch | 0.5 | 3104 | `ecc7178b-7d61-4574-9bf9-36a4188c7508` |
| 1059 | `Cap22_m09_A` | Chaperon with brooch | 0.5 | 3104 | `a4bf4caf-d19a-4b42-9f30-573f8d30392c` |
| 1060 | `Cap22_m10_A` | Chaperon with brooch | 0.5 | 3104 | `3561207a-fac6-4540-9561-03684d105178` |
| 1061 | `Cap23_m01_A` | Burgher's hat | 0.5 | 850 | `c7c24e2a-24ce-4692-ac9b-fe82b5c40ade` |
| 1062 | `Cap23_m02_B` | Burgher's hat | 0.5 | 812 | `ae8a5d4f-c148-499b-8f84-49bf6d4017b5` |
| 1063 | `Cap23_m03_B` | Burgher's hat | 0.5 | 642 | `dfa98c91-b4f6-49c6-b209-0e8368dd6c91` |
| 1064 | `Cap23_m04_B` | Burgher's hat | 0.5 | 812 | `daefd8d9-1a6f-4a86-ae33-da185147f146` |
| 1065 | `Cap23_m05_B` | Burgher's hat | 0.5 | 812 | `e5403669-ec23-4d62-bde3-d46ebbe9ae65` |
| 1066 | `Cap23_m06_B` | Burgher's hat | 0.5 | 642 | `66274903-2236-4561-a6f9-8737facdc601` |
| 1067 | `Cap23_m07_B` | Burgher's hat | 0.5 | 812 | `0e2d88eb-da92-4115-b2a4-7ca33f9cd0f3` |
| 1068 | `Cap23_m08_B` | Burgher's hat | 0.5 | 812 | `76def0f7-1464-471c-aa02-10e3f1de4d36` |
| 1069 | `Cap23_m09_B` | Burgher's hat | 0.5 | 812 | `5c27901d-2c34-470f-94a4-2692c7ebf9a5` |
| 1070 | `Cap23_m10_B` | Burgher's hat | 0.5 | 812 | `6a5b27db-d0bf-4d65-9456-99c1414f08be` |
| 1071 | `Cap24_m01_B` | Master huntsman's hat | 0.5 | 879 | `7c63de58-f0e9-4daf-b646-6a651aace476` |
| 1072 | `Cap24_m02_B` | Master huntsman's hat | 0.5 | 879 | `015e6ed5-47e0-4d48-add8-cd7a813ad5c1` |
| 1073 | `Cap24_m03_B` | Master huntsman's hat | 0.5 | 879 | `51cea738-3446-43eb-9dd2-21cb3cf2a886` |
| 1074 | `Cap24_m04_B` | Master huntsman's hat | 0.5 | 879 | `1753a78f-1f1b-4cc9-8d4c-8d2d6f6bbee4` |
| 1075 | `Cap24_m05_B` | Master huntsman's hat | 0.5 | 879 | `36a86bf1-9714-4219-b877-9a7338a0a0e5` |
| 1076 | `Cap24_m06_B` | Master huntsman's hat | 0.5 | 879 | `cb91f9a3-b1dd-4d98-b2d3-a2f60936e41f` |
| 1077 | `Cap24_m07_B` | Master huntsman's hat | 0.5 | 816 | `c1c9ceda-9f62-4a56-b65d-b3fca4a12f13` |
| 1078 | `Cap24_m08_B` | Master huntsman's hat | 0.5 | 879 | `773b7147-0bac-4005-9e3f-f3a4c942cc0b` |
| 1079 | `Cap24_m09_B` | Master huntsman's hat | 0.5 | 690 | `08eadfa5-3f62-4202-adb0-ad358bba2c95` |
| 1080 | `Cap24_m10_B` | Master huntsman's hat | 0.5 | 879 | `1cf2608b-4b87-4270-81eb-1f918779e25a` |
| 1081 | `Cap24_mKarlik` | Charlie's hat | 0.5 | 642 | `9b448bd7-c101-4627-8e74-5d7e701cf1c6` |
| 1082 | `Cap25_m01_C` | Chaperon | 0.5 | 683 | `b63d9104-8563-4325-9369-28792667fb23` |
| 1083 | `Cap25_m02_C` | Chaperon | 0.5 | 683 | `c7b197d6-266e-4c04-88d3-42b6c93a1639` |
| 1084 | `Cap25_m03_C` | Chaperon | 0.5 | 683 | `a607362b-7aea-49fc-88a2-6ad92cb52008` |
| 1085 | `Cap25_m04_C` | Chaperon | 0.5 | 683 | `1338251d-8367-4d8d-acd0-37fafc204146` |
| 1086 | `Cap25_m05_C` | Chaperon | 0.5 | 524 | `fa422bab-781a-4f44-9d23-23a17531eb4e` |
| 1087 | `Cap25_m06_C` | Chaperon | 0.5 | 683 | `10a24b9c-3843-4ba3-8c98-b6b566b0be75` |
| 1088 | `Cap25_m07_C` | Chaperon | 0.5 | 524 | `5d6b70ad-6da0-43fc-8f2e-6802c5bd85d0` |
| 1089 | `Cap25_m08_C` | Chaperon | 0.5 | 683 | `7bee2fc1-5396-4247-b96e-b17da94c368e` |
| 1090 | `Cap25_m09_C` | Chaperon | 0.5 | 683 | `44999759-bf8b-4c1e-b935-84695ccc1d8e` |
| 1091 | `Cap25_m10_C` | Chaperon | 0.5 | 524 | `08f88060-ba4f-4b3d-a4ef-464ee18eb872` |
| 1092 | `Cap26_m01_D` | Fur-lined hat | 0.5 | 225 | `b5919d10-da5a-4b53-9588-fdd98c46a092` |
| 1093 | `Cap26_m02_D` | Fur-lined hat | 0.5 | 225 | `436e4431-9c0b-41fb-a15d-9f534c16ebec` |
| 1094 | `Cap26_m03_D` | Fur-lined hat | 0.5 | 225 | `6b35be56-a572-4124-86c7-a686895e5bbf` |
| 1095 | `Cap26_m04_D` | Fur-lined hat | 0.5 | 225 | `ca4f5498-2f06-4ce1-9ac4-884b32f22bb2` |
| 1096 | `Cap26_m05_D` | Fur-lined hat | 0.5 | 225 | `c9aab196-73f7-4ab9-8f7e-f7eb08f29046` |
| 1097 | `Cap27_m01_Apprentice` | Felt hat | 0.5 | 225 | `f8332be4-1686-4060-91f5-4d7e4b2dcc0e` |
| 1098 | `Cap27_m01_D` | Felt hat | 0.5 | 225 | `b97bcc9a-7ada-4aad-9dfc-d6f895e9d1c4` |
| 1099 | `Cap27_m02_Apprentice` | Felt hat | 0.5 | 311 | `08fb8345-14f1-48f1-a2b8-8b3945e18fdc` |
| 1100 | `Cap27_m02_D` | Felt hat | 0.5 | 311 | `8e4c3ce6-3e4a-40ea-bb40-a4cb2c2254a0` |
| 1101 | `Cap27_m03_D` | Felt hat | 0.5 | 311 | `27184b09-c011-46ea-b934-6634210c00e4` |
| 1102 | `Cap27_m04_Apprentice` | Felt hat | 0.5 | 311 | `ea707ece-2d23-49a1-827e-26772ac4468a` |
| 1103 | `Cap27_m04_D` | Felt hat | 0.5 | 311 | `2e876c86-60bd-4f7e-b5d7-149a0e49e7ec` |
| 1104 | `Cap27_m05_D` | Felt hat | 0.5 | 311 | `e101baf7-21c3-4f60-99bc-2de89bbb1678` |
| 1105 | `Cap27_m06_D` | Felt hat | 0.5 | 281 | `581b8934-2b5e-4565-94a9-afb9b1063dc6` |
| 1106 | `Cap27_m07_D` | Felt hat | 0.5 | 281 | `5441d6c2-5ac2-4e6f-8e2b-fe7e1e941878` |
| 1107 | `Cap28_m01_C` | Jewish hat | 0.5 | 561 | `0f5672a7-eb5d-4e65-bbfe-c3c56a28f1c3` |
| 1108 | `Cap28_m02_C` | Jewish hat | 0.5 | 561 | `09b21d63-7d4c-4837-91eb-131ea7fb4dda` |
| 1109 | `Cap28_m03_C` | Jewish hat | 0.5 | 561 | `7cdbd3d0-a99f-40a3-8e85-2ea554473628` |
| 1110 | `Cap29_m01_C` | Miner's hat | 0.5 | 561 | `4559650a-f8a5-4621-9e9f-6f47f23e9c88` |
| 1111 | `Cap29_m02_C` | Miner's hat | 0.5 | 433 | `b795b2e1-7d69-4255-a7fe-cc1d075a7305` |
| 1112 | `Cap29_m03_C` | Miner's hat | 0.5 | 433 | `398c9ce1-fc83-4814-a997-88436ee3e822` |
| 1113 | `Cap29_m04_C` | Miner's hat | 0.5 | 561 | `bf1fbd3a-799f-46cb-9248-e807f4ba1006` |
| 1114 | `Cap29_m05_C` | Miner's hat | 0.5 | 519 | `dfc98a60-3412-45b1-92b2-e8d20562be68` |
| 1115 | `Cap29_m06_C` | Miner's hat | 0.5 | 561 | `d286a6b6-6e2f-4976-a309-d552b0f5f48c` |
| 1116 | `Cap29_mPisek_C` | A suspicious bag | 0.5 | 561 | `a979cc8b-7256-4e65-8f90-b47909cc97f3` |
| 1117 | `Cap30_m01_D` | Vagrant's hat | 0.5 | 341 | `6c236047-0990-474c-8b5b-81f7b7886e64` |
| 1118 | `Cap30_m02_D` | Vagrant's hat | 0.5 | 225 | `b596f465-4f28-44d9-89bc-c912f3248af2` |
| 1119 | `Cap30_m03_D` | Vagrant's hat | 0.5 | 375 | `1a2ed049-20e8-4f2d-b84f-6bc22fdbc180` |
| 1120 | `Cap30_m04_D` | Vagrant's hat | 0.5 | 375 | `2787f87c-85e4-4a60-bff6-04ba067d89d9` |
| 1121 | `Cap30_m05_D` | Vagrant's hat | 0.5 | 375 | `4fdffa7f-33e4-427c-80d0-aacc82511d3c` |
| 1122 | `Cap30_m06_D` | Vagrant's hat | 0.5 | 375 | `a4edfa35-7152-4eb5-9cb0-c335a745dc8c` |
| 1123 | `Cap30_m07_D` | Vagrant's hat | 0.5 | 273 | `0175e8ac-0777-4ad4-8bf9-dba35921dca8` |
| 1124 | `Cap31_m01_D` | Straw hat with ribbon | 0.5 | 268 | `5ae19ed8-9e8f-4930-9618-ef6472043cae` |
| 1125 | `Cap31_m02_D` | Straw hat with ribbon | 0.5 | 268 | `15f9396e-fe7b-4018-8d44-f0eec3b76035` |
| 1126 | `Cap31_m03_D` | Straw hat with ribbon | 0.5 | 268 | `92895c0c-eb20-42ab-8e25-c87b31812fda` |
| 1127 | `Cap32_m01_E` | Old straw hat | 0.5 | 38 | `cb897833-68bb-47f7-a3f9-867b65ff7a1e` |
| 1128 | `Cap32_m02_E` | Old straw hat | 0.5 | 38 | `72fd94b4-839c-4800-bc27-8b326a1763f5` |
| 1129 | `Cap33_m01_B` | Master huntsman's hat | 0.5 | 879 | `8e5179d1-7ffd-49c1-85da-62b801a7396e` |
| 1130 | `Cap33_m02_B` | Master huntsman's hat | 0.5 | 879 | `5a3bf3ee-169d-4bee-84b6-21c9585aaee0` |
| 1131 | `Cap33_m03_B` | Master huntsman's hat | 0.5 | 690 | `a4ba18a5-b6ad-4e67-a146-909099f515aa` |
| 1132 | `Cap33_m04_B` | Master huntsman's hat | 0.5 | 879 | `b52f068d-ec96-4831-b7a0-77c352e1516c` |
| 1133 | `Cap33_m05_B` | Courtier's hat | 0.5 | 1483 | `e8894b5c-e6d6-4ff0-9767-55f7d1b7ee1b` |
| 1134 | `Cap33_m06_B` | Master huntsman's hat | 0.5 | 690 | `20747da0-1be5-40bd-9ae3-f7b2a2345b7a` |
| 1135 | `Cap34_m01_A` | Noble chaperon | 0.5 | 1235 | `8a3e203a-7c11-4e88-8fdb-6dbcbd15e2ed` |
| 1136 | `Cap34_m02_A` | Noble chaperon | 0.5 | 1235 | `75efc6ff-2f7b-48a9-b059-009cee57e6bb` |
| 1137 | `Cap34_m03_A` | Noble chaperon | 0.5 | 1150 | `6210c80a-e47f-4c22-b8d1-33683fa87fd9` |
| 1138 | `Cap34_m04_A` | Noble chaperon | 0.5 | 1235 | `896b3e6e-5080-4c23-86bd-dcb959320590` |
| 1139 | `Cap34_m05_A` | Noble chaperon | 0.5 | 978 | `ffd03165-2eb7-41b2-a11a-c3cecc19c123` |
| 1140 | `Cap34_m06_A` | Noble chaperon | 0.5 | 1235 | `546df9c3-6353-4065-bd44-3334aa326dee` |
| 1141 | `Cap34_mGottfried` | Noble chaperon | 0.5 | 1235 | `d1661aec-1793-4346-b145-b920c1ec1eeb` |
| 1142 | `Cap35_m01_B` | St. Hubert's hat | 0.5 | 991 | `d7d3aedf-76e2-43db-96cf-2135dc4436bb` |
| 1143 | `Cap_placeholder` | A suspicious bag | 0.5 | 6094 | `1d534b2e-4774-4063-8b67-cb5217da6d19` |
| 1144 | `CapAlberich_m01` | A suspicious bag | 5 | 8635 | `64e44d04-f3d8-47eb-9cb7-99ea251fa344` |
| 1145 | `CapAlbik_m01` | A suspicious bag | 5 | 8635 | `3338de4b-37a4-4fa3-93ff-e9b1d1a0f58f` |
| 1146 | `Caparison01_m01` | Plain tourney caparison | 10.4 | 2938 | `c21df618-bf34-4532-9ee2-06e32914d732` |
| 1147 | `Caparison01_m02` | Plain tourney caparison | 10.4 | 2938 | `23f1afa6-51b3-4053-81d3-e1b64460a8c8` |
| 1148 | `Caparison01_m03` | Plain tourney caparison | 10.4 | 2938 | `013be77f-e0e9-44d4-af3a-8888ebc0d6fd` |
| 1149 | `Caparison01_m04` | Plain tourney caparison | 10.4 | 2938 | `0a768dfe-859f-4db8-9ce1-18ad29b9206c` |
| 1150 | `Caparison01_m05` | Plain tourney caparison | 10.4 | 2938 | `ca590f8c-5c65-4a56-ab70-acf8f6a2426f` |
| 1151 | `Caparison01_m06` | Plain tourney caparison | 10.4 | 2938 | `59015337-0b25-458c-80dd-b35af648a599` |
| 1152 | `Caparison01_m07` | Plain tourney caparison | 10.4 | 2938 | `15bcd913-3ce3-4ab7-82c5-16a9ee61c286` |
| 1153 | `Caparison01_m08` | Plain tourney caparison | 10.4 | 2938 | `72b01b0c-fae2-4f5d-9bac-4ec905586767` |
| 1154 | `Caparison01_mLeipa` | Plain tourney caparison | 10.4 | 2938 | `2e062fed-74d0-4c00-b566-56a64be719cc` |
| 1155 | `Caparison01_mLeipa01` | Plain tourney caparison | 10.4 | 2938 | `b65ceba3-a532-45be-8d82-dc6a202f98dc` |
| 1156 | `Caparison01_mPros` | Skalitz caparison | 1.7 | 269 | `36694031-e85d-4547-8054-5e67b51aa8fe` |
| 1157 | `Caparison01_mRuhard` | Plain tourney caparison | 10.4 | 2938 | `fd4b04c1-6400-449d-8471-75980518cace` |
| 1158 | `Caparison01_mRuhard02` | Plain tourney caparison | 10.4 | 2938 | `95d5e043-2bba-43dc-8897-4ea8c64ae68a` |
| 1159 | `Caparison01_mSemin` | Plain tourney caparison | 10.4 | 2938 | `e6c56923-4062-451c-8a83-39aa76977b00` |
| 1160 | `Caparison01_mSemin02` | Plain tourney caparison | 10.4 | 2938 | `f1657cbd-97f4-45f3-948b-68ec3962027e` |
| 1161 | `Caparison02_m01` | Executioner's caparison simple | 8 | 2000 | `e3d5498a-4869-476d-9edd-8561df9f2931` |
| 1162 | `Caparison02_m02` | Executioner's caparison simple | 8 | 2000 | `f0dc849e-2439-40d7-9a8c-8d629f77f9a5` |
| 1163 | `Caparison02_m03` | Executioner's caparison simple | 8 | 2000 | `4b59331b-2dbe-4831-ac2a-4453935e4342` |
| 1164 | `Caparison02_m04` | Executioner's caparison simple | 8 | 2000 | `77d38e9d-a374-4a16-930f-b5ca6bd86f49` |
| 1165 | `Caparison02_m05` | Executioner's caparison simple | 8 | 2000 | `0a5439f2-0145-4eb5-9301-f3d2f614dc53` |
| 1166 | `Caparison02_m06` | Executioner's caparison simple | 8 | 2000 | `d842004a-b83f-4768-8551-a2fe0bbfe0a4` |
| 1167 | `Caparison02_m07` | Executioner's caparison simple | 8 | 2000 | `55d6ad0e-011e-4a3e-93ec-1c7f582edf63` |
| 1168 | `Caparison02_m08` | Executioner's caparison simple | 8 | 2000 | `2ca11fcf-c0a1-4424-97cc-9538c3a5be7c` |
| 1169 | `Caparison02_mTeuton` | Teutonic caparison | 8 | 2000 | `aef0433b-a68a-4429-8432-1c6c975f709b` |
| 1170 | `Caparison03_m01` | Caparison á la peytral simple | 8.8 | 2313 | `665005e3-8f19-477e-a10c-6cb665ce1df9` |
| 1171 | `Caparison03_m02` | Caparison á la peytral simple | 8.8 | 2313 | `b50bc28e-7a5a-4ec7-92a6-454800f158e9` |
| 1172 | `Caparison03_m03` | Caparison á la peytral simple | 8.8 | 2313 | `26566627-402c-4d3f-adf8-2aa205194b0e` |
| 1173 | `Caparison03_m04` | Caparison á la peytral simple | 8.8 | 2313 | `010dace9-e80f-49db-b744-968a2a05b3ed` |
| 1174 | `Caparison03_m05` | Caparison á la peytral simple | 8.8 | 2313 | `d0864235-80e2-4077-9586-8316c95a3bcb` |
| 1175 | `Caparison03_m06` | Caparison á la peytral simple | 8.8 | 2313 | `74c05b8b-6461-4e24-a344-99a48197c503` |
| 1176 | `Caparison03_m07` | Caparison á la peytral simple | 8.8 | 2313 | `f5c64a03-c38c-4736-8805-28f743646ff9` |
| 1177 | `Caparison03_m08` | Caparison á la peytral simple | 8.8 | 2313 | `51f8ae21-65c9-424f-b0ef-3ab7453714a8` |
| 1178 | `Caparison03_mLeipa` | Caparison of the Lords of Leipa | 8.8 | 2313 | `a57afc93-b952-461b-8dfa-18ba1a446431` |
| 1179 | `Caparison03_mLeipa01` | Caparison of the Lords of Leipa | 8.8 | 2313 | `972175ab-00fc-471b-ae1d-6d257a18ad58` |
| 1180 | `Caparison03_mLeipa02` | Caparison of the Lords of Leipa | 8.8 | 2313 | `5979f0c3-bf55-4bd5-9d91-f4dc08902257` |
| 1181 | `Caparison03_mLeipa03` | Caparison of the Lords of Leipa | 8.8 | 2313 | `9902f662-a748-4765-b78a-23b1fc91333f` |
| 1182 | `Caparison03_mRuthard` | Caparison of the Lord Ruthard | 8.8 | 2313 | `1e0ac4a2-00f9-4d50-b80e-0e3033bf12ba` |
| 1183 | `Caparison03_mRuthard02` | Caparison of the Lord Ruthard | 8.8 | 2313 | `96fd2a94-7570-473a-b4ba-7b64829247f7` |
| 1184 | `Caparison03_mSemin` | Caparison of the Lord of Semine | 8.8 | 2313 | `2c972710-02d1-41e0-83cd-8de8f9bc7216` |
| 1185 | `Caparison04_m01` | Caparison á la crupper simple | 9.6 | 2625 | `27467b6f-a8d8-498b-9297-b8eaba69e80c` |
| 1186 | `Caparison04_m02` | Caparison á la crupper simple | 9.6 | 2625 | `f8307be9-ec64-4934-953b-cbea36aa4b2d` |
| 1187 | `Caparison04_m03` | Caparison á la crupper simple | 9.6 | 2625 | `dea605c7-2f09-4d49-af83-6224d036bc21` |
| 1188 | `Caparison04_m04` | Caparison á la crupper simple | 9.6 | 2625 | `97c45588-7a43-432e-b364-913159035351` |
| 1189 | `Caparison04_m05` | Caparison á la crupper simple | 9.6 | 2625 | `903e2f21-996c-487b-aa2c-ec31d246f937` |
| 1190 | `Caparison04_m06` | Caparison á la crupper simple | 9.6 | 2625 | `676a72d3-c088-477b-9fd5-47c0c65d18fb` |
| 1191 | `Caparison04_m07` | Caparison á la crupper simple | 9.6 | 2625 | `c0da574d-f21f-4d6f-916f-eeeca45d895b` |
| 1192 | `Caparison04_m08` | Caparison á la crupper simple | 9.6 | 2625 | `644aeef7-5230-4912-a7d7-a021e5674df6` |
| 1193 | `Caparison05_m01` | Halved caparison crenellated | 9.6 | 2625 | `3a098596-5bb6-405c-b7b5-70cdff8db673` |
| 1194 | `Caparison05_m02` | Halved caparison crenellated | 9.6 | 2625 | `a8308a40-31ae-459f-8a93-d82de04efd15` |
| 1195 | `Caparison05_m03` | Halved caparison crenellated | 9.6 | 2625 | `dfb5ebaf-70d3-4db8-8eae-340a225bb452` |
| 1196 | `Caparison05_m04` | Halved caparison crenellated | 9.6 | 2625 | `08488293-63b5-42c6-803a-8d547d425925` |
| 1197 | `Caparison05_m05` | Halved caparison crenellated | 9.6 | 2625 | `8ce6b2ec-d2bb-45a3-bbd1-4574d293607c` |
| 1198 | `Caparison05_m06` | Halved caparison crenellated | 9.6 | 2625 | `bb84ffa6-211c-4fd3-9771-873f9f939dc1` |
| 1199 | `Caparison05_m07` | Halved caparison crenellated | 9.6 | 2625 | `8d345816-ec28-4f71-8fdb-79438308df70` |
| 1200 | `Caparison05_m08` | Halved caparison crenellated | 9.6 | 2625 | `bbfb564d-768f-4252-8998-91edcf2cab86` |
| 1201 | `Caparison_placeholder` | A suspicious bag | 1.8 | 12593 | `6fad7800-d0b6-41dc-96c3-a0b7821c341b` |
| 1202 | `CaparisonBrunswig_m01` | Brunswick's caparison | 4.8 | 2185 | `d4fb7944-20da-47b1-bf93-03bc58176793` |
| 1203 | `CapChamberlain_flipped_m01` | Chamberlain Ulrich's hat | 4.5 | 642 | `ab7226df-7798-4d48-b3ee-20d5dd26408b` |
| 1204 | `CapChamberlain_m01` | Chamberlain Ulrich's hat | 0.5 | 966 | `13e7dede-8f42-4d3d-8586-3f432567ffca` |
| 1205 | `CapIstvan_flipped_m01` | A suspicious bag | 0.5 | 966 | `2c921aa0-cfff-4e93-b56e-b60df98f8e75` |
| 1206 | `CapIstvan_m01` | A suspicious bag | 5 | 8635 | `c0f92b8e-60f5-4792-9863-de36807ed981` |
| 1207 | `CapIstvan_m01_poi` | Istvan's chaperon | 1.9 | 5586 | `19c2e221-91b9-439a-9db5-e56d867e1e6b` |
| 1208 | `CapJobst_m01` | A suspicious bag | 0.5 | 860 | `e717222e-fca0-4cc4-9d69-da449ff54d8d` |
| 1209 | `CapLegate_m01` | Legate's hat | 0.5 | 860 | `801d5db6-d241-4eb8-8059-e201d00f1147` |
| 1210 | `CapMusa_m01` | A suspicious bag | 0.5 | 860 | `a05a2567-ec81-4c81-875e-453d8a64eded` |
| 1211 | `CapPainter_flipped_m01` | Painter Vojtiech's cap | 0.5 | 1086 | `c64f5f80-595c-45eb-bfad-5274a78545dd` |
| 1212 | `CapPainter_m01` | Painter Vojtiech's cap | 0.5 | 1086 | `bfd05904-6287-42c7-a87d-e3d1262a1613` |
| 1213 | `CapZachary_m01` | Painter Vojtiech's cap | 0.5 | 1086 | `dd996b2d-f1a1-4bfd-bf5e-8dcb548ef815` |
| 1218 | `CartBridle01_m01` | A suspicious bag | 5.4 | 191 | `7bca8097-7d3c-4d5d-8de0-9c336de7761d` |
| 1219 | `CartBridle01_m02` | A suspicious bag | 5.4 | 2018 | `6ef6d6e4-f2de-48e2-851a-810f2699c0a4` |
| 1220 | `CartBridle01_m03` | A suspicious bag | 5.4 | 100 | `b4802f55-cb4c-40aa-965a-a62a2e62c022` |
| 1221 | `CartBridle01_m04` | A suspicious bag | 5.1 | 64 | `0bc067ff-f27c-4ab8-bd10-b37a9a2491cf` |
| 1227 | `Chanfron_placeholder` | A suspicious bag | 3 | 1103 | `05913089-eb8b-4964-9af8-4f8bf65a6055` |
| 1242 | `ChromaBall_m01_A` | A suspicious bag | 3 | 3200 | `ea5cfda1-a145-45fd-9499-466d30d0dd99` |
| 1245 | `Coat01_m01_A` | Burgher coat | 2.9 | 5099 | `8ef83ab2-eeee-4b9d-840c-1f6aeb389113` |
| 1246 | `Coat01_m02_A` | Burgher coat | 2.9 | 5099 | `3e5b1f60-2ade-4db5-a345-77e0dec9f3db` |
| 1247 | `Coat01_m03_A` | Burgher coat | 2.9 | 5099 | `bc45015e-7711-4f56-92c8-4495fe69f1ef` |
| 1248 | `Coat01_m04_A` | Burgher coat | 2.9 | 3488 | `68620240-b4f1-45fe-854c-ff916e6e9844` |
| 1249 | `Coat01_m05_A` | Burgher coat | 2.9 | 5099 | `940ced42-bde0-4f0f-a709-4f32fe5efdec` |
| 1250 | `Coat01_m06_A` | Burgher coat | 2.9 | 4468 | `6928adc4-0e1c-40c5-820d-e779e2a538d4` |
| 1251 | `Coat01_m07_A` | Burgher coat | 2.9 | 5099 | `676a1e4e-c6c4-4c62-9c6b-e8013f415be9` |
| 1252 | `Coat01_m08_A` | Burgher coat | 2.9 | 5099 | `29f9e71e-7daa-4872-9dc3-1a330bad807e` |
| 1253 | `Coat01_m09_A` | Burgher coat | 2.9 | 5099 | `2685cc55-ca57-470b-aecd-f75b8c58c8d9` |
| 1254 | `Coat01_m10_A` | Burgher coat | 2.9 | 5099 | `04108c5b-1663-495d-8a05-bb423516775d` |
| 1255 | `Coat02_m01_D` | Ordinary coat | 2.9 | 809 | `513342ce-7788-4c3e-8352-4febb17a609c` |
| 1256 | `Coat02_m03_D` | Ordinary coat | 2.9 | 1039 | `425f69bc-3d23-48b4-b823-073823fa4c7c` |
| 1257 | `Coat02_m04_D` | Ordinary coat | 2.9 | 809 | `a856e87a-8065-4338-919d-0aff7a63341d` |
| 1258 | `Coat02_m05_D` | Ordinary coat | 2.9 | 1039 | `29b105bb-b4d7-4bf8-bf7b-a214b8773728` |
| 1259 | `Coat02_m06_D` | Ordinary coat | 2.9 | 809 | `6021520e-b6a9-4daf-adce-21a8a208646c` |
| 1260 | `Coat02_m07_D` | Vagrant's coat | 2.7 | 1271 | `c22bffa9-a259-4b63-af93-c9facd832066` |
| 1261 | `Coat02_m08_D` | Ordinary coat | 2.9 | 1039 | `cdc9c312-59ba-480a-bfba-102fc4ab5e58` |
| 1262 | `Coat02_m09_D` | Ordinary coat | 2.9 | 1039 | `9fdc5e97-6905-4458-87cb-3d8df1ea3cef` |
| 1263 | `Coat02_m10_D` | Ordinary coat | 2.9 | 1039 | `3b0c9fdd-c00f-4c15-b0a5-a9f327ca5ae6` |
| 1264 | `Coat02_m11_D` | Ordinary coat | 2.9 | 1039 | `31d62b91-74d9-43d6-9d52-d21ded5dce3a` |
| 1265 | `Coat02_m12_D` | Ordinary coat | 2.9 | 1039 | `8d1a44b8-574f-4172-b5b8-820a00ef4742` |
| 1266 | `Coat02_m13_D` | Ordinary coat | 2.9 | 809 | `9bd6afca-f2cd-45b2-b057-2586811817f8` |
| 1267 | `Coat02_mBergov_D` | Coat of arms surcoat | 2.9 | 1039 | `26e12ed8-7f83-46d0-9c77-72dff2ad5606` |
| 1268 | `Coat02_mDesert_D` | Coat of arms surcoat | 2.9 | 963 | `d76a6d37-2b02-48e9-8d7e-d6b9b56ff478` |
| 1269 | `Coat02_mKuttenberg01_D` | Coat of arms surcoat | 2.9 | 1039 | `7bd295d3-f5dd-42f7-a922-9fd277cf566e` |
| 1270 | `Coat02_mKuttenberg02_D` | Coat of arms surcoat | 2.9 | 1039 | `9032d5a3-d215-4004-89a9-bde859d7740d` |
| 1271 | `Coat02_mKuttenberg03_D` | Coat of arms surcoat | 2.9 | 1039 | `4427fdcc-52fa-4ce4-8980-bf9de7fc8811` |
| 1272 | `Coat02_mKuttenberg_D` | Coat of arms surcoat | 2.9 | 1039 | `a73e327e-fbba-4cb0-8f6c-d807d150e288` |
| 1273 | `Coat02_mLeipa_D` | Coat of arms surcoat | 2.9 | 1039 | `5529d943-fec2-4c23-90b5-dae43e8049cd` |
| 1274 | `Coat02_mMagyar01_D` | Coat of arms surcoat | 2.9 | 1039 | `3930a67e-1f6c-4c83-b7d4-5339be178bdc` |
| 1275 | `Coat02_mMagyar_D` | Coat of arms surcoat | 2.9 | 1039 | `ea8982ce-c235-4943-9ffa-8f0ce44dac70` |
| 1276 | `Coat02_mNebak_D` | Coat of arms surcoat | 2.9 | 963 | `bf242818-d558-4ed5-855d-ced690ff1dcd` |
| 1277 | `Coat02_mPisek_D` | Coat of arms surcoat | 2.9 | 1039 | `e8c6130e-a83a-4289-9c28-acc6a02276fb` |
| 1278 | `Coat02_mPolner_D` | Coat of arms surcoat | 2.9 | 1039 | `91f46ac5-14d0-445d-9d83-ed6458eb429e` |
| 1279 | `Coat02_mRuthart_D` | Coat of arms surcoat | 2.9 | 1039 | `492f6e68-367b-40b4-8359-e1b8bb72a0a0` |
| 1280 | `Coat02_mSemin_D` | Coat of arms surcoat | 2.9 | 1039 | `84ca4884-ef3e-408c-8de2-923c7b74e852` |
| 1281 | `Coat02_mTeuton` | Teutonic lay brothers's surcoat | 2.9 | 1039 | `ca3140dd-dc01-4126-8426-6c07386589d8` |
| 1282 | `Coat02_mTeuton02` | Teutonic surcoat | 2.9 | 1039 | `f7c3ff89-872f-4d81-a754-7fc108a29ba3` |
| 1283 | `Coat02_mVavak_D` | Coat of arms surcoat | 2.9 | 1039 | `e108b0cc-5732-42fe-88c9-1a0607ef306b` |
| 1284 | `Coat03_m01_E` | Beggar's coat | 2.9 | 331 | `2cf70f1e-4d9d-41c8-93c7-a851f887f5bb` |
| 1285 | `Coat03_m02_E` | Beggar's coat | 2.9 | 331 | `5eae7fff-0b97-4431-8c44-f3ea4f348005` |
| 1286 | `Coat03_m03_E` | Beggar's coat | 2.9 | 445 | `ab588007-0049-4a7b-b2cf-ef36c6e826c5` |
| 1287 | `Coat03_m04_E` | Beggar's coat | 2.9 | 331 | `071caaed-731e-418b-93e8-551abc68409e` |
| 1288 | `Coat03_m05_E` | Beggar's coat | 2.9 | 331 | `2ddbee30-d9c4-4bd3-bfc7-789d965677fa` |
| 1289 | `Coat04_m01_C` | Ordinary coat | 2.9 | 1288 | `e23f6c7d-0eea-4b69-a920-c14c3bdedf5e` |
| 1290 | `Coat04_m02_C` | Ordinary coat | 2.9 | 1632 | `de3dadc3-9143-4ec7-b4bf-c6b48949325e` |
| 1291 | `Coat04_m03_C` | Ordinary coat | 2.9 | 1288 | `34d1aa11-e0ae-4d87-95bc-bcdfd0f50d5f` |
| 1292 | `Coat04_m04_C` | Ordinary coat | 2.9 | 1632 | `62875bbe-d9b5-4cd5-86d5-70e1bc640b80` |
| 1293 | `Coat04_m06_C` | Ordinary coat | 2.9 | 1632 | `662a9ed1-db91-4c82-87ad-46e0a4fafcea` |
| 1294 | `Coat04_m07_C` | Ordinary coat | 2.9 | 1632 | `6254a511-0d8a-4d7a-93c4-735ad049c4d5` |
| 1295 | `Coat04_m08_C` | Ordinary coat | 2.9 | 1632 | `b37768bf-a6a5-4f3d-954e-eb1a1271c964` |
| 1296 | `Coat04_m09_C` | Ordinary coat | 2.9 | 1632 | `ae18a2ee-68d1-465a-8c36-298ca51ac2f3` |
| 1297 | `Coat04_m10_C` | Ordinary coat | 2.9 | 1632 | `e37e9ded-caf5-4031-9495-3252c7d26256` |
| 1298 | `Coat04_m11_C` | Ordinary coat | 2.9 | 1632 | `ab37edc1-9c23-4384-bc11-c0f680e41f27` |
| 1299 | `Coat04_m12_C` | Ordinary coat | 2.9 | 1288 | `e1fd3bcd-f4c6-49c4-8cc4-58046bf37c6a` |
| 1300 | `Coat04_mKuttenberg01_C` | Ordinary coat with crest | 2.9 | 1632 | `99acb2ca-5557-474c-a92f-2eb4ba4156ec` |
| 1301 | `Coat04_mKuttenberg02_C` | Ordinary coat with crest | 2.9 | 1632 | `b223fcf5-ee9d-444a-a9d3-23b01bfe64bd` |
| 1302 | `Coat04_mKuttenberg03_C` | Ordinary coat with crest | 2.9 | 1632 | `f68eff91-c8dd-42f8-ae13-d224e616b2e2` |
| 1303 | `Coat04_mKuttenberg_C` | Ordinary coat with crest | 2.9 | 1632 | `217b1ae7-3ac5-447c-8b48-05c99ceb4cea` |
| 1304 | `Coat04_mMagyar_C` | Ordinary coat with crest | 2.9 | 1632 | `64822a10-ba70-4c6a-a3c3-cf936227a0c6` |
| 1305 | `Coat04_mPrague_C` | Ordinary Praguers' coat with crest | 2.9 | 1632 | `35880f76-5d1b-4d99-a839-98a8b74cae97` |
| 1306 | `Coat05_m01_C` | Hunting coat | 2.9 | 1632 | `4aaab21c-0065-4577-aaef-2631e014223c` |
| 1307 | `Coat05_m02_C` | Hunting coat | 2.9 | 1288 | `3f72f25b-8763-4434-bec7-a2640057ad1e` |
| 1308 | `Coat05_m03_C` | Hunting coat | 2.9 | 1632 | `9e95435e-1d6d-4ea5-a504-c6e4b909495d` |
| 1309 | `Coat05_m04_C` | Hunting coat | 2.9 | 1632 | `6686bdde-d1da-4802-92e7-72c61481c11e` |
| 1310 | `Coat05_m05_C` | Hunting coat | 2.9 | 1632 | `c3f71093-dffb-43a6-b661-eec806e05d2c` |
| 1311 | `Coat05_m06_C` | Thief's coat | 2.7 | 3362 | `5fbf1604-f5ef-4dc3-9d6c-5bd98d56c00b` |
| 1312 | `Coat05_m07_C` | Hunting coat | 2.9 | 1288 | `b40942a9-f067-4a6d-8cd3-59a03e8a59d1` |
| 1313 | `Coat05_m08_C` | Hunting coat | 2.9 | 1632 | `2d3fd34d-a481-4bba-827b-6a07fb07b213` |
| 1314 | `Coat05_m09_C` | Hunting coat | 2.9 | 1632 | `3100d2d2-a675-4fc1-ae11-9a0f885259e4` |
| 1315 | `Coat05_m10_C` | Hunting coat | 2.9 | 1288 | `315fa220-fcb8-44e3-9a68-545c6822ec9f` |
| 1316 | `Coat06_m01_C` | Jester's disguise | 2.9 | 1193 | `b57b0d72-b8c3-4ce7-868a-527ccf71f3f5` |
| 1317 | `Coat06_m02_C` | Jester's disguise | 2.9 | 1193 | `c8f43947-a1a4-48fc-bc60-64e178d336cc` |
| 1318 | `Coat06_m03_C` | Jester's disguise | 2.9 | 1193 | `2aff8ed3-785d-49f8-995b-f5e550c1aa95` |
| 1319 | `Coat06_m04_C` | Jester's disguise | 2.9 | 1193 | `697d5f06-8baa-440c-8759-042718496455` |
| 1320 | `Coat06_m05_C` | Jester's disguise | 2.9 | 1193 | `39e48c8e-b408-4516-b725-b5223ef52293` |
| 1321 | `Coat06_mJimbo_C` | Jimbo's costume | 2.9 | 1193 | `47aa8081-c98f-4098-ba71-8ec0b01e577e` |
| 1322 | `Coat07_m01_B` | Quilted coat | 2.9 | 1766 | `d538e764-90f1-49e5-85bf-16e7717e7723` |
| 1323 | `Coat07_m02_B` | Quilted coat | 2.9 | 2226 | `f9bc2aaa-96cd-4aa7-ad17-3624ce58e155` |
| 1324 | `Coat07_m03_B` | Quilted coat | 2.9 | 2226 | `794a5046-d543-497d-8613-734dc777ff81` |
| 1325 | `Coat07_m04_B` | Quilted coat | 2.9 | 1766 | `b310983d-3813-42ec-9427-8ac87493fdd6` |
| 1326 | `Coat07_m05_B` | Quilted coat | 2.9 | 2226 | `e7cd670f-a9e5-4b7d-8c76-c7c19eafecc8` |
| 1327 | `Coat08_m01_A` | Fitted coat | 2.9 | 5099 | `02383d59-97aa-408d-8d25-4ab31a9ecbda` |
| 1328 | `Coat08_m02_A` | Courtier's coat | 2.7 | 4413 | `5470bf89-ddb6-485f-8b0b-dfe50fd8ea9d` |
| 1329 | `Coat08_m03_A` | Fitted coat | 2.9 | 2819 | `b8a8c334-4a27-42fd-913f-07445e22d3fe` |
| 1330 | `Coat08_m04_A` | Fitted coat | 2.9 | 5099 | `6ab498b8-f2d4-4c34-95ae-ac7b7d1434c2` |
| 1331 | `Coat08_m05_A` | Fitted coat | 2.9 | 2819 | `967cc7c9-596a-47d3-81ab-7c06ade9a294` |
| 1332 | `Coat08_m06_A` | Fitted coat | 2.9 | 5099 | `09e1aa1e-8896-4caf-b15e-da35a1e8e853` |
| 1333 | `Coat08_m07_A` | Fitted coat | 2.9 | 5099 | `3e8f0ea1-2d2f-4d2b-9d65-1137dd3f170e` |
| 1334 | `Coat08_m08_A` | Fitted coat | 2.9 | 5099 | `4fcfc2c4-4a79-422b-acf2-7bfa0741397c` |
| 1335 | `Coat08_m09_A` | Fitted coat | 2.9 | 2819 | `7fa36676-6346-47a7-b064-01311fef7443` |
| 1336 | `Coat08_m10_A` | Fitted coat | 2.9 | 5099 | `9477a8a1-8b69-49dd-b746-3f987a2f8c6c` |
| 1337 | `Coat08_mPisek_A` | Fitted coat | 2.9 | 5099 | `201942e1-4ba5-493b-a234-4923389fe531` |
| 1338 | `Coat10_m01_D` | Wanderer's robe | 2.9 | 1039 | `a4180479-4a93-4758-babb-f730b8202569` |
| 1339 | `Coat10_m02_D` | Wanderer's robe | 2.9 | 809 | `bcb39bc1-1209-4c86-92ec-475567a5e219` |
| 1340 | `Coat10_m03_D` | Wanderer's robe | 2.9 | 1039 | `255622bb-c37e-48b0-9186-bacc89f3f5c1` |
| 1341 | `Coat10_m04_D` | Wanderer's robe | 2.9 | 1039 | `8a369c66-6ca3-4be2-9999-5053d9de916c` |
| 1342 | `Coat10_m05_D` | Wanderer's robe | 2.9 | 809 | `cb4afec8-e68d-46f0-94a5-2f4885edeecb` |
| 1343 | `Coat11_m01_C` | Embroidered coat | 2.9 | 2028 | `12acf1bc-4ff6-457a-abd3-eb2c7174e530` |
| 1344 | `Coat11_m02_C` | Embroidered coat | 2.9 | 1581 | `09779246-a93b-4f76-8a54-ef2b73c978f7` |
| 1345 | `Coat11_m03_C` | Embroidered coat | 2.9 | 2028 | `a4a44d9f-9e28-4dc9-b82b-87f49ae32848` |
| 1346 | `Coat11_m04_C` | Embroidered coat | 2.9 | 2028 | `4dc29de7-aab0-47d3-a246-72fdb321f3a8` |
| 1347 | `Coat11_m05_C` | Embroidered coat | 2.9 | 1581 | `691efc71-4a91-4010-9d94-17331a39f79c` |
| 1348 | `Coat11_m06_C` | Embroidered coat | 2.9 | 3445 | `de5654c6-356a-44ad-92b5-e1ddaafa6a71` |
| 1349 | `Coat11_m07_C` | Embroidered coat | 2.9 | 2028 | `24f5202a-f6d0-4f69-90d8-6d6823ff75c8` |
| 1350 | `Coat11_m08_C` | Embroidered coat | 2.9 | 1581 | `6e3eb008-e700-4b9a-ada3-d06a309ba080` |
| 1351 | `Coat11_m09_C` | Embroidered coat | 2.9 | 2028 | `5f10b9cc-d33b-49f0-bd97-f2b8ab77ce7d` |
| 1352 | `Coat11_mBergov_C` | Embroidered coat | 2.9 | 1879 | `e3d240c2-b61f-4005-a822-10775d007b9a` |
| 1353 | `Coat11_mKuttenberg01_C` | Embroidered heater coat | 2.9 | 2028 | `551f51f6-54e2-4ed2-a99d-c7284ff38f98` |
| 1354 | `Coat11_mKuttenberg_C` | Embroidered heater coat | 2.9 | 2028 | `8f9e6cd4-679a-421a-9dfb-82bda185cda1` |
| 1355 | `Coat12_m01_C` | Merchant's coat | 2.9 | 1632 | `43817982-b3f3-4df6-93bb-cc0d7f0eb4d8` |
| 1356 | `Coat12_m02_C` | Merchant's coat | 2.9 | 1632 | `1bd9d159-859e-4c3d-b812-16ead6f38da8` |
| 1357 | `Coat12_m03_C` | Merchant's coat | 2.9 | 1632 | `2d2325bf-0b96-48a4-bbad-2f2dfcb8b90b` |
| 1358 | `Coat12_m04_C` | Merchant's coat | 2.9 | 1288 | `1b1d2b1b-8290-4b8f-befd-1f39ff57b9fa` |
| 1359 | `Coat12_m05_C` | Merchant's coat | 2.9 | 1288 | `45b6d780-23e1-4a89-a0b1-dbc234a7ce21` |
| 1360 | `Coat12_m06_C` | Merchant's coat | 2.9 | 1632 | `a107a74c-d12a-424b-b97e-61aaa12c05be` |
| 1361 | `Coat12_m07_C` | Merchant's coat | 2.9 | 1632 | `314c4126-a392-4c0f-bf91-dfd40773ebd3` |
| 1362 | `Coat12_m08_C` | Merchant's coat | 2.9 | 2721 | `13e26797-12c0-4c82-a866-10a2f3246fd9` |
| 1363 | `Coat13_m01_C` | Gallant coat | 2.9 | 1632 | `e8b5db50-bd25-4d4b-953c-0739abf53435` |
| 1364 | `Coat13_m02_C` | Gallant coat | 2.9 | 1632 | `d80f2eb2-e901-4757-9166-989bab1ca347` |
| 1365 | `Coat13_m03_C` | Gallant coat | 2.9 | 1288 | `e951e3c7-0c1d-4ebd-a461-1cad52e2a3a4` |
| 1366 | `Coat13_m04_C` | Gallant coat | 2.9 | 1288 | `956df49f-59b4-4b0d-87ff-3dab99ad9375` |
| 1367 | `Coat13_m05_C` | Gallant coat | 2.9 | 1288 | `806f1ee6-fd67-4c11-bf13-abd76c30da79` |
| 1368 | `Coat13_m06_C` | Gallant coat | 2.9 | 1288 | `91f6571c-d954-4645-a6b4-7340e8f99046` |
| 1369 | `Coat13_m07_C` | Gallant coat | 2.9 | 1288 | `114ab415-b407-492b-8a1c-8737d6e0c2c9` |
| 1370 | `Coat13_m08_C` | Gallant coat | 2.9 | 2721 | `ded9b911-eada-4120-8499-cc8478810791` |
| 1371 | `Coat13_m09_C` | Gallant coat | 2.9 | 1632 | `42b7de5a-fb21-4650-b896-c0e9ec7d4aaa` |
| 1372 | `Coat13_m10_C` | Gallant coat | 2.9 | 2721 | `1cb9565a-d5a2-4a0d-bf4d-2803b001eb8d` |
| 1373 | `Coat13_m11_C` | Gallant coat | 2.9 | 1632 | `5c84266d-d4e1-437c-a017-797081cbc726` |
| 1374 | `Coat14_m01_B` | Nimrod's coat | 3 | 2379 | `4c3cc6f2-bcb7-4a20-a4ba-33cf0ae66325` |
| 1375 | `Coat15_mPros` | Patron's coat | 2.9 | 5099 | `9df4dad6-e0e7-4fb5-b64d-8b3f22c97c10` |
| 1376 | `Coat_placeholder` | A suspicious bag | 5.1 | 320 | `47c34961-a189-4151-344c-d966387ccb8c` |
| 1377 | `CoatBergov_m01` | Burgher coat | 3 | 445 | `babd3d0d-0966-4d76-8ce1-694dce509666` |
| 1378 | `CoatBergov_mCaptured` | Burgher coat | 2.9 | 2819 | `9a7a4ba8-bf08-4401-bfd5-58e13b20d454` |
| 1379 | `CoatBrabant_m01` | Burgher coat | 1 | 20 | `cba41456-97f6-47ae-aacd-7a7cbb94bd81` |
| 1380 | `CoatHans_m01` | Burgher coat | 3 | 445 | `cf5b3df5-d7dc-4829-ba91-c9a523754934` |
| 1381 | `CoatHanush_m01` | Burgher coat | 3 | 445 | `aae29d34-83e1-48a6-9d63-d70445ab0c9f` |
| 1382 | `CoatInjuredAulitz` | Burgher coat | 2.9 | 2819 | `399cc163-7705-4f45-9428-00f65e3488eb` |
| 1383 | `CoatJobst_m01_A` | Burgher coat | 2.9 | 2819 | `312657a7-0bfb-420e-b3c8-a534a01fe46a` |
| 1384 | `CoatJobstPoncho_m01` | Burgher coat | 3 | 445 | `79c08d0b-de8a-45fd-87e2-c134fd919cc1` |
| 1385 | `CoatMusa_m01` | Burgher coat | 3 | 445 | `4c523510-9481-4b13-8957-9def62bfdd98` |
| 1386 | `CoatOderin_m01` | Burgher coat | 3 | 445 | `a093ab6e-8973-405c-a87b-e1da4bdc9fca` |
| 1387 | `CoatOderin_mArmor` | Burgher coat | 1 | 1302 | `e0bec7ac-22f9-4c64-8bcc-fee959a652f7` |
| 1388 | `CoatOderin_mNoDagger` | Burgher coat | 1 | 0 | `e96c35a5-87ba-4feb-981c-cb93fc4923c7` |
| 1389 | `CoatRuthard_m01` | Burgher coat | 3 | 445 | `0de4ffa0-0a00-4efa-98b7-209bdd443277` |
| 1390 | `CoatRuthard_mArmor` | Burgher coat | 1 | 7193 | `8ddf24c9-6562-4180-b309-6bdd3cad46bd` |
| 1391 | `CoatSigismund_m01` | Burgher coat | 3 | 445 | `e337397f-eae6-4739-84d9-7fce2da75d4a` |
| 1392 | `CoatVavak_m01` | Burgher coat | 3 | 445 | `1786f901-cbbe-48d2-926a-d1c39e1717df` |
| 1393 | `CoatZachary_m01` | Burgher coat | 2.9 | 5099 | `3b090108-3de0-441f-b430-137c948289eb` |
| 1394 | `CoatZizkaSword_m01` | Burgher coat | 1 | 395 | `accfbe2c-cffb-42a6-b468-3b9e715e2194` |
| 1395 | `CoatZizkaSwordless_m01` | Burgher coat | 1 | 993 | `e27ffcf6-1c58-47f9-952a-58cfcd32021f` |
| 1396 | `CoifCap01_m01_C` | Coif | 0.2 | 165 | `1b4b6487-72cc-409e-9296-692b53e0429e` |
| 1397 | `CoifCap01_m02_C` | Coif | 0.2 | 165 | `505e9d15-e910-4685-a2f2-f48eaf666386` |
| 1398 | `CoifCap01_m03_C` | Coif | 0.2 | 165 | `5d2ab73c-a011-4d5e-9b9a-79f3c0fc2fd2` |
| 1399 | `CoifCap01_m04_C` | Coif | 0.2 | 165 | `fe802bee-4e06-4cee-b2b7-bd5ab23d8639` |
| 1400 | `CoifCap01_m05_C` | Coif | 0.2 | 165 | `7c9715cd-dca4-46f1-93e7-c48111bbac1b` |
| 1401 | `CoifCap01_m06_C` | Coif | 0.2 | 728 | `ff8f8351-c909-4f46-8d3e-b1b8acc1460f` |
| 1402 | `CoifCap01_m07_C` | Coif | 0.2 | 165 | `78edc2df-34d8-4657-abb1-252b20dbe5f6` |
| 1403 | `CoifCap01_m08_C` | Coif | 0.2 | 165 | `382e1e0c-cf38-42c2-85d9-1b0f1abe5f42` |
| 1404 | `CoifCap01_mRabi` | Coif | 0.2 | 165 | `8eeb62ff-ea2f-480d-9c80-ffe7d3632302` |
| 1405 | `CoifCap_placeholder` | A suspicious bag | 1 | 215 | `499903d1-3d6f-bc66-5875-b0ab7c28269d` |
| 1406 | `CoifCap_placeholder1` | A suspicious bag | 1 | 21556 | `451d4a88-5aae-ee2d-05dd-cfe1f3312bba` |
| 1407 | `CoifLarge01_m01_D2` | Broad battle coif | 4.3 | 1023 | `e72e27a2-87db-480d-977b-318c34e0444f` |
| 1408 | `CoifLarge01_m02_D2` | Broad battle coif - black | 3.9 | 1357 | `71b2e63a-7b64-426e-bf85-30396f464798` |
| 1409 | `CoifLarge01_m03_D2` | Broad battle coif | 4.3 | 993 | `62a81406-526e-400a-bea3-16cc76dfd069` |
| 1410 | `CoifLarge01_m04_D2` | Broad battle coif | 4.3 | 1038 | `9ea8f404-685b-4e02-b73b-3d3875eb41f4` |
| 1411 | `CoifLarge01_m05_D2` | Broad battle coif | 4.3 | 1038 | `b362fe00-1a90-448d-9b80-423bce085a75` |
| 1412 | `CoifLarge01_m06_D2` | Broad battle coif | 4.3 | 1038 | `f69547b8-b9be-4fe9-af1f-28f6d324379c` |
| 1413 | `CoifLarge01_m07_D2` | Broad battle coif | 4.3 | 993 | `bcfbc217-3440-427a-8543-3ca118ce9c50` |
| 1414 | `CoifLarge01_m08_D2` | Broad battle coif | 4.3 | 993 | `12aefcd3-b164-40e8-93cc-222e43cfafb5` |
| 1415 | `CoifLarge01_mkhTournament_01_D2` | Broad battle coif | 4.3 | 496 | `0da81d98-1320-4130-a150-cf98e1f5d738` |
| 1416 | `CoifLarge01_mkhTournament_02_D2` | Broad battle coif | 4.3 | 496 | `a79e3e3a-32a1-4f85-b009-e06bc8c15c82` |
| 1417 | `CoifLarge01_mkhTournament_03_D2` | Broad battle coif | 4.3 | 496 | `811d8a20-3cff-4319-ac69-00d233d65e89` |
| 1418 | `CoifLarge01_mkhTournament_04_D2` | Broad battle coif | 4.3 | 496 | `01076303-fcd7-4afa-b40f-de8509245819` |
| 1419 | `CoifLarge01_mkhTournament_05_D2` | Broad battle coif | 4.3 | 496 | `5daf4825-6c03-477c-a196-7e6e7f6b0458` |
| 1420 | `CoifLarge01_mkhTournament_06_D2` | Broad battle coif | 4.3 | 496 | `af5dc522-fd00-40d6-90dd-04cf693951fd` |
| 1421 | `CoifLarge01_mkhTournament_07_D2` | Broad battle coif | 4.3 | 496 | `eea116fb-4391-451e-bb8d-11d70a7ec003` |
| 1422 | `CoifLarge01_mkhTournament_07_D2_Henry` | Tournament padded coif | 4.3 | 496 | `d042de87-36fa-4cbb-b24b-e707011d0242` |
| 1423 | `CoifLarge02_m01_C3` | Padded hood | 4.5 | 2437 | `d2dfc38d-907e-4ad6-bb01-f3d5d875ba97` |
| 1424 | `CoifLarge02_m02_C3` | Padded hood | 4.5 | 2437 | `e57a90f9-837c-466b-90a7-5be5ad7023a7` |
| 1425 | `CoifLarge02_m03_C3` | Padded hood - black | 4.1 | 2731 | `64aa7b66-2d69-4be6-8a2f-da8e4ee5651d` |
| 1426 | `CoifLarge02_m04_C3` | Padded hood | 4.5 | 2511 | `c8972335-3d79-457b-814f-f71cbddb0656` |
| 1427 | `CoifLarge02_m05_C3` | Padded hood | 4.5 | 2437 | `65b21a98-55fc-4cb6-ac2c-c5a497939ece` |
| 1428 | `CoifLarge02_m06_C3` | Padded hood | 4.5 | 2511 | `71cf5f5a-5c61-4ad0-b91c-ebd2a14bca69` |
| 1429 | `CoifLarge02_m07_C3` | Padded hood | 4.5 | 2437 | `fd228718-a653-4172-b7b4-9ad089a59989` |
| 1430 | `CoifLarge02_m08_C3` | Padded hood | 4.5 | 2437 | `5e71ed75-4c1e-4149-acb1-3cb4355d9188` |
| 1431 | `CoifLarge02_mBergov_C3` | Padded hood | 4.5 | 2564 | `1f0c5f6d-6616-459a-ba9f-cf9815f19bc9` |
| 1432 | `CoifLarge02_mKuttenberg_C3` | Padded hood | 4.5 | 2500 | `4fc78f9f-4edd-4788-bacc-1bc9a07bd818` |
| 1433 | `CoifLarge02_mLeipa_C3` | Padded hood | 4.5 | 2500 | `9d2d947b-bd6e-4a28-9ca2-f59181d296ed` |
| 1434 | `CoifLarge02_mNebak_C3` | Padded hood | 4.5 | 2500 | `77c0b6af-c12b-4097-8318-cf026fc97560` |
| 1435 | `CoifLarge02_mPisek_C3` | Padded hood | 4.5 | 2500 | `5a6e55ec-f430-4459-a5e5-e144dbd6675f` |
| 1436 | `CoifLarge02_mPrague_C3` | Padded hood | 4.5 | 2500 | `d23e3052-61fd-487e-a3fe-6541d31db3f5` |
| 1437 | `CoifLarge02_mVavak_C3` | Padded hood | 4.5 | 2500 | `7b9efff4-7c84-4b60-98e7-6ea367ca3525` |
| 1438 | `CoifMail01_m01_C2` | Mail coif | 6.7 | 2973 | `d20252f7-51f0-4f8e-857c-b086fcec15be` |
| 1439 | `CoifMail01_m02_C2` | Mail coif | 6.7 | 2973 | `cfc1fd72-dbb7-49a4-8713-6acf215a72be` |
| 1440 | `CoifMail01_m03_C2` | Mail coif | 6.7 | 2973 | `86cf52c6-4329-4e07-b316-facdb667a386` |
| 1441 | `CoifMail01_m04_C2` | Mail coif | 6.7 | 2973 | `cd17455c-b023-4977-8205-4f2685370b5e` |
| 1442 | `CoifMail02_m01_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `f55191d9-81e9-4d8c-b456-b12a24d198e3` |
| 1443 | `CoifMail02_m02_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `a7a03d79-9c3e-4bbe-a2a4-fa2312413451` |
| 1444 | `CoifMail02_m03_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `da3d9396-bccf-4d52-9839-a2fca55071eb` |
| 1445 | `CoifMail02_m04_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `861ab92f-faa2-4e0d-b1ca-240174145021` |
| 1446 | `CoifMail02_mBergov_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `5434fd25-94f3-434f-8b21-9c150eab547c` |
| 1447 | `CoifMail02_mKuttenberg_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `c15d6593-c1eb-470b-a2e8-823c21336b04` |
| 1448 | `CoifMail02_mMagyar_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `8fe7dc99-4ff6-4baf-84c4-44e931fa8a6d` |
| 1449 | `CoifMail02_mNebak_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `449c9e92-2693-4329-a560-d62c2229bbc3` |
| 1450 | `CoifMail02_mPapal_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `d89c50ad-d52b-4793-9674-a1aab6ea28cc` |
| 1451 | `CoifMail02_mPisek_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `5bd2e7c7-b769-4a67-8785-089204d56325` |
| 1452 | `CoifMail02_mPrague_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `0b383bf7-a67b-4caa-9db8-501ed8d6aa9f` |
| 1453 | `CoifMail02_mRuthart_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `52ec7aa6-495d-45fd-8846-f0dcecc2c1ba` |
| 1454 | `CoifMail02_mSemin_B3` | Mail hood with a coat of arms | 7.7 | 4966 | `f7bf3158-9170-4a4f-bfef-c41c67b5b972` |
| 1455 | `CoifMailBrunswig_m01` | Brunswick's chainmail coif | 6.1 | 2347 | `25054826-ae61-4599-a070-c8ea6248e616` |
| 1456 | `CoifMailSuk_m01` | Mail coif | 7.7 | 4966 | `1a46e7ae-19ce-49c5-828b-81c6af9ba1c9` |
| 1457 | `CoifMailTomas_m01` | Mail coif | 5 | 1158 | `ee471eb9-9e53-409a-aa1b-1722e5bf7e61` |
| 1458 | `CoifMailZizka_m01` | Mail coif | 5 | 1158 | `dd5992c2-526f-419b-b066-ea17ab10fd84` |
| 1459 | `CoifSmall01_m01_C2` | Padded coif | 1.8 | 1077 | `942a42a0-5c46-4c46-983a-71d86adb43c4` |
| 1460 | `CoifSmall01_m02_C2` | Padded coif | 1.8 | 1142 | `95fd0f07-3682-470c-96f2-adcaaf417a04` |
| 1461 | `CoifSmall01_m03_C2` | Padded coif | 1.8 | 1142 | `ce91be29-b5f4-4ba5-b286-c2781c188707` |
| 1462 | `CoifSmall01_m04_C2` | Padded coif - black | 1.6 | 1791 | `33d6b02e-35fc-4b79-aa3f-25f42fc4dae6` |
| 1463 | `CoifSmall01_m05_C2` | Padded coif | 1.8 | 1077 | `3a1811fb-124e-4dbd-95ee-114debe21091` |
| 1464 | `CoifSmall01_m06_C2` | Padded coif | 1.8 | 1077 | `aa1c4f7c-c4b9-4d96-ab0f-fa281d0d5151` |
| 1465 | `CoifSmall01_m07_C2` | Padded coif | 1.8 | 1077 | `c6ade755-f1a6-4c21-b423-dc3b591927b3` |
| 1466 | `CoifSmall01_m08_C2` | Padded coif | 1.8 | 1142 | `c23e75db-cdf8-4779-86e8-fd183bb3cf11` |
| 1467 | `CoifSmall01_mUher_C1` | Padded coif | 1.8 | 1142 | `12f1e675-21a9-43c0-9775-cdf71e76fd6d` |
| 1468 | `CoifSmall02_m01_E1` | Crude padded coif | 1.7 | 331 | `62183c25-a930-4044-8e08-243c5d46c6cc` |
| 1469 | `CoifSmall02_m02_E1` | Crude padded coif | 1.7 | 352 | `6b55dd84-0aef-46b3-bc7e-3595b6a12959` |
| 1470 | `CoifSmall02_m03_E1` | Crude padded coif | 1.7 | 352 | `f29e4d55-2f1d-4257-88f8-03dacc41eae1` |
| 1471 | `CoifSmall02_m04_E1` | Crude padded coif | 1.7 | 352 | `21a7d705-96e8-4a8f-90e2-c5f20484a3b4` |
| 1472 | `CoifSmall02_m05_E1` | Quilted vagrant's cap | 1.6 | 513 | `5dac272e-157b-4c6c-8454-97c7d45edc6e` |
| 1473 | `CoifSmall02_m06_E1` | Crude padded coif | 1.7 | 331 | `cafed46a-f974-4f5c-9b7b-5b898af313fd` |
| 1474 | `CoifSmall02_m07_E1` | Crude padded coif | 1.7 | 352 | `039bc3a6-ac77-4e59-a1fa-37c0b4db3b67` |
| 1475 | `CoifSmall02_m08_E1` | Crude padded coif | 1.7 | 331 | `6212ded1-7c80-42a6-8678-cd1df9999fe2` |
| 1476 | `CoifSmall03_m01_B3` | Padded coif | 1.9 | 2481 | `32cd8692-8c2e-4595-9fa5-a8cf66443da8` |
| 1477 | `CoifSmall03_m02_B3` | Padded coif | 1.9 | 2576 | `98cf6948-4785-467f-bc2c-c66abebade19` |
| 1478 | `CoifSmall03_m03_B3` | Padded coif | 1.9 | 2576 | `66854788-1d33-4707-9d2c-e6a9fc134141` |
| 1479 | `CoifSmall03_m04_B3` | Padded coif | 1.9 | 2576 | `5e8c8f89-dc82-40f9-b6b3-0f90614932bd` |
| 1480 | `CoifSmall03_m05_B3` | Padded coif | 1.9 | 2481 | `cd390fa7-3306-40f4-9997-0813070a282d` |
| 1481 | `CoifSmall03_m06_B3` | Padded coif | 1.9 | 2481 | `76cbf2ce-ea18-4cb2-a839-7f079473622d` |
| 1482 | `CoifSmall03_m07_B3` | Padded coif | 1.9 | 2481 | `79382f9c-6435-4a1d-9724-2c8496923f0a` |
| 1483 | `CoifSmall03_m08_B3` | Padded coif - black | 1.8 | 2913 | `db8bd081-0aed-433a-b709-b4ae1e703fb7` |
| 1485 | `CollarChain01_m01_C1` | Mail collar | 3.2 | 2069 | `333a3cc8-516d-44cc-8d07-4158326c235e` |
| 1486 | `CollarChain01_m02_C1` | Mail collar | 3.2 | 2069 | `8662ab7a-6af0-468a-8bce-a1a8768c24b7` |
| 1487 | `CollarChain01_m03_C1` | Mail collar | 3.2 | 2069 | `dfcb055a-a560-41ba-9c30-165a793982a3` |
| 1488 | `CollarChain01_m04_C1` | Mail collar | 3.2 | 2069 | `2ebcd914-64dc-499f-80c0-b606636e12f9` |
| 1489 | `CollarChain01_m05_C1` | Mail collar | 3.2 | 2069 | `ca516b12-9adb-4bb9-8a79-c0d96d87cbf5` |
| 1490 | `CollarChain01_m06_C1` | Mail collar | 3.2 | 2069 | `d04b7de5-78d5-452d-96b1-40a13ae098e2` |
| 1491 | `CollarChain01_m07_C1` | Mail collar | 3.2 | 2069 | `9da82290-e31b-4ba6-b0e8-680081e06e9a` |
| 1492 | `CollarChain01_m08_C1` | Mail collar | 3.2 | 2069 | `7439ee5f-e530-4392-adea-8f6dc4c50f65` |
| 1493 | `CollarChain01_mSamuel` | Mail collar | 3.6 | 5074 | `88176355-9735-415d-a2e8-78189d1639e1` |
| 1494 | `CollarChain02_m01_A4` | Mail collar with badge | 3.8 | 8195 | `32233be0-375a-49dd-a8ee-37325e7c825e` |
| 1495 | `CollarChain02_m02_A4` | Mail collar with badge | 3.8 | 8195 | `7be1d9a0-e772-4e83-92b1-30b6fd8aa2ea` |
| 1496 | `CollarChain02_m03_A4` | Mail collar with badge | 3.8 | 8195 | `7bd19eb9-22aa-42b4-a76d-05e9af9e4de4` |
| 1497 | `CollarChain02_m04_A4` | Mail collar with badge | 3.8 | 8195 | `5bfa3795-1d9e-4fba-a02d-c15dd070ea73` |
| 1498 | `CollarChain02_m05_A4` | Mail collar with badge | 3.8 | 8195 | `4d230ef5-b319-4983-8c4e-4ffb7f395208` |
| 1499 | `CollarChain02_m06_A4` | Mail collar with badge | 3.8 | 8011 | `0f9950c7-cf30-4ab3-a8f1-08d9e2bc1351` |
| 1500 | `CollarChain02_mAulitz` | Mail collar with badge | 3.8 | 8011 | `42fa0f12-5a76-40d0-a2ff-40181fd1a992` |
| 1501 | `CollarMail_placeholder` | A suspicious bag | 2.5 | 246 | `43e385bf-e3ac-473e-e9b2-34e8760cd2b5` |
| 1502 | `CollarPadded01_m01_C1` | Padded collar | 2.4 | 728 | `2650ef4f-c709-44fe-aa11-371086f940ce` |
| 1503 | `CollarPadded01_m02_C1` | Padded collar | 2.4 | 728 | `e6a6e66d-e608-4e1d-ae7d-eaa2678af9dc` |
| 1504 | `CollarPadded01_m03_C1` | Padded collar | 2.4 | 728 | `d898a4d9-1356-413e-817f-247f497c8b17` |
| 1505 | `CollarPadded01_m04_C1` | Padded collar | 2.4 | 728 | `52f31e34-c712-443d-ba38-a8e0286158a4` |
| 1506 | `CollarPadded01_m05_C1` | Padded collar | 2.4 | 728 | `192733fd-accf-41bc-bb8e-7854d3ba3443` |
| 1507 | `CollarPadded01_m06_C1` | Padded collar | 2.4 | 728 | `b613cd1e-46f1-4b9d-966d-6590368cd011` |
| 1508 | `CollarPadded01_m07_C1` | Padded collar | 2.4 | 728 | `de9f9782-2f87-4d0a-a754-1ed7f4e6066f` |
| 1509 | `CollarPadded01_m08_C1` | Padded collar | 2.4 | 728 | `0ed4a6da-a99e-4dbc-932c-cb5291cd88b8` |
| 1510 | `CollarPadded01_mDevil_C1` | Padded collar | 2.4 | 331 | `b825303a-2745-4363-9923-c3320b2ff83e` |
| 1511 | `CollarPadded01_mHanushBattleNoHelmet_C1` | Padded collar | 2.4 | 728 | `d58a72dc-c183-4cb1-9fba-ed93fd2b7e9f` |
| 1512 | `CollarPadded_placeholder` | A suspicious bag | 2.5 | 0 | `483a91ae-6866-ab8d-929b-dee063bc6782` |
| 1513 | `combattest_ArmPlate01_m01_C2` | A suspicious bag | 2.5 | 1 | `213b7703-392d-4805-9d39-099590b42437` |
| 1515 | `combattest_BootsAnkle03_m01_D` | A suspicious bag | 2.5 | 0 | `0b589f06-3bc4-427c-9026-312eee575e53` |
| 1517 | `combattest_CoifSmall02_m01_E1` | A suspicious bag | 2.5 | 1 | `1e9b788c-033c-43aa-8481-5d64fe7c6d52` |
| 1524 | `combattest_GambesonShort01_m02_C2` | A suspicious bag | 2.5 | 1 | `89b53edb-a62c-40e3-8efb-a08964cab5a9` |
| 1525 | `combattest_Gloves02_m01_D1` | A suspicious bag | 2.5 | 1 | `2c971cf3-0870-4789-99b6-4da5be0278fe` |
| 1529 | `combattest_HoseJoined01_m05_D` | A suspicious bag | 2.5 | 1 | `37dfb877-e303-45ca-9408-1a22e510b285` |
| 1546 | `CowPaint_m01` | A suspicious bag | 2.5 | 144 | `54b745c2-f9b5-4c25-bca4-f3fb29208705` |
| 1570 | `Cuirass01_m01_C2` | Smooth cuirass | 10.4 | 23152 | `85bf9cdb-d3ad-4ff3-b77e-a01319ed87d3` |
| 1571 | `Cuirass01_m02_C2` | Smooth cuirass | 10.4 | 23152 | `34f2f8b6-2ed4-4b89-ba68-ac4d6a8a7fab` |
| 1572 | `Cuirass01_m03_C2` | Smooth cuirass | 10.4 | 23152 | `a1255517-4c81-4403-999c-df5a0307b6b6` |
| 1573 | `Cuirass01_m04_C2` | Smooth cuirass - blackened | 9 | 23433 | `7d602455-05bc-49b9-a11f-67c76992016c` |
| 1574 | `Cuirass01_m05_C2` | Smooth cuirass | 10.4 | 23152 | `7890f319-861c-4af4-932d-0226b4e55112` |
| 1575 | `Cuirass01_m06_C2` | Smooth cuirass | 10.4 | 23152 | `602024ca-add6-454a-9b49-ee1e6e710b81` |
| 1576 | `Cuirass01_m07_C2` | Smooth cuirass | 10.4 | 23152 | `a4ad1f5a-f16a-4f00-bffe-d34769e0a746` |
| 1577 | `Cuirass01_m08_C2` | Smooth cuirass | 10.4 | 23152 | `d534337c-54ff-4534-a62e-fc555bd9c571` |
| 1578 | `Cuirass02_m01_B4` | Magdeburg cuirass | 24.8 | 58935 | `ca331580-9a16-4858-b6a3-58980a1666cb` |
| 1579 | `Cuirass02_m02_B4` | Magdeburg cuirass | 24.8 | 58935 | `168579ba-c191-41ba-80e4-ed711a328ec9` |
| 1580 | `Cuirass02_m03_B4` | Magdeburg cuirass | 24.8 | 58935 | `7d1d5034-1463-428e-91bb-9453de22af15` |
| 1581 | `Cuirass02_m04_B4` | Magdeburg cuirass | 24.8 | 58935 | `2656c9c5-ef6b-4526-bc42-9b5e81611368` |
| 1582 | `Cuirass02_m05_B4` | Magdeburg cuirass | 24.8 | 58935 | `d2a4f7cb-6a3d-4ee9-a5da-2eafb9ceebaf` |
| 1583 | `Cuirass02_m06_B4` | Magdeburg cuirass | 24.8 | 58935 | `928dbd70-563e-4873-9fc9-ffa9826553ad` |
| 1584 | `Cuirass02_m07_B4` | Magdeburg cuirass | 24.8 | 58935 | `30200be3-9861-49fc-b3e6-61611bb53d34` |
| 1585 | `Cuirass02_m08_B4` | Magdeburg cuirass | 24.8 | 58935 | `0752b90c-9c7d-4831-90ef-43c8803ef118` |
| 1586 | `Cuirass03_m01_A5` | Milanese cuirass | 26 | 100066 | `1b214a97-8aa8-4892-bcd0-461b12b34258` |
| 1587 | `Cuirass03_m02_A5` | Milanese cuirass | 26 | 100066 | `f1376cd7-b72f-4f7c-9929-3cc1dc7d18f0` |
| 1588 | `Cuirass03_m03_A5` | Milanese cuirass | 26 | 100066 | `f412cec9-142f-4efb-b9fc-738b7d9288ba` |
| 1589 | `Cuirass03_m04_A5` | Milanese cuirass | 26 | 100066 | `9125bc0c-a152-49fe-aaf5-f16869c2b820` |
| 1590 | `Cuirass03_m05_A5` | Milanese cuirass | 26 | 100720 | `33de1142-2f9f-4c4e-a991-609ecb0361c2` |
| 1591 | `Cuirass04_m01_E2` | Mended cuirass | 9 | 11059 | `12bb04d8-ddbe-43a4-a63f-88670cfaa4e3` |
| 1592 | `Cuirass04_m02_E2` | Mended cuirass | 9 | 11059 | `acb739ba-acc9-4018-8883-5acf7ff56804` |
| 1593 | `Cuirass04_m03_E2` | Mended cuirass | 9 | 11059 | `3024ad3e-9647-41f7-9be6-0aa29c2e7bd2` |
| 1594 | `Cuirass04_m04_E2` | Mended cuirass - dark | 7.7 | 11589 | `e4261dc3-1935-4e47-b6c0-1f4384a5c61c` |
| 1595 | `Cuirass04_m05_E2` | Mended cuirass | 9 | 11059 | `1c1a6910-7732-4672-9918-60b99dba9bfb` |
| 1596 | `Cuirass05_m01_B3` | Riding cuirass | 11.3 | 41877 | `459ae318-ac5d-4de1-b34e-f6ce5ef6492c` |
| 1597 | `Cuirass05_m02_B3` | Riding cuirass | 11.3 | 41877 | `5f0a8ce2-8ebd-4a1a-ade0-997c2621b7f3` |
| 1598 | `Cuirass05_m03_B3` | Riding cuirass | 11.3 | 41877 | `bfee5c98-846b-4535-9827-98a3300d4302` |
| 1599 | `Cuirass05_m04_B3` | Riding cuirass | 11.3 | 41877 | `5d85d44c-0f91-477d-95a3-61bde2d0164b` |
| 1600 | `Cuirass05_m05_B3` | Riding cuirass - blackened | 9.9 | 42256 | `5795b423-eb5c-4d58-b186-bbdfd0aded60` |
| 1601 | `Cuirass06_m01_E1` | Rusted plate | 7.4 | 7846 | `8ab9a8de-78e4-48fa-9b20-e0417b74655f` |
| 1602 | `Cuirass06_m02_E1` | Rusted plate | 7.4 | 7846 | `f13402d0-b423-4c6c-9e82-9cf5cbc7738d` |
| 1603 | `Cuirass06_m03_E1` | Rusted plate | 7.4 | 7846 | `c7332db0-4267-474e-8eb2-07150059ca66` |
| 1604 | `Cuirass06_m04_E1` | Rusted plate | 7.4 | 7846 | `6ffe2d77-9d77-4e57-a37c-33ce270506c3` |
| 1605 | `Cuirass06_m05_E1` | Rusted plate | 7.4 | 7846 | `52e91d1e-5359-4c43-bbf8-ff7030f9ee8e` |
| 1606 | `Cuirass06_m06_E1` | Rusted plate - dark | 6.3 | 7764 | `2e726304-beab-449c-9ee2-f21f24788fe8` |
| 1607 | `Cuirass06_m07_E1` | Rusted plate | 7.4 | 7846 | `8c650a45-77ef-40cb-abbd-e3ef481f65f7` |
| 1608 | `Cuirass06_m08_E1` | Rusted plate | 7.4 | 7846 | `f36c41fd-a90f-4216-85ac-fbe95cf8445b` |
| 1609 | `Cuirass07_m01_A4` | Noble cuirass | 24.3 | 58077 | `10ff6d35-8c14-4871-8656-bdc3476d8b12` |
| 1610 | `Cuirass07_m02_A4` | Noble cuirass | 24.3 | 58077 | `1949ae9e-e865-4539-9cc3-0482b1403c34` |
| 1611 | `Cuirass07_m03_A4` | Noble cuirass | 24.3 | 58077 | `04902d64-dac9-42cc-ba5b-7d0a899607b3` |
| 1612 | `Cuirass07_m04_A4` | Noble cuirass | 24.3 | 58077 | `291129da-c3f3-408e-8099-44cdb1572d59` |
| 1613 | `Cuirass07_m05_A4` | Noble cuirass | 24.3 | 58077 | `33f06601-79ec-48f6-b581-324490c560bb` |
| 1614 | `Cuirass07_m06_A4` | Noble cuirass | 24.3 | 58077 | `8da1d2ca-a7bb-4d63-891a-969ec8f06f10` |
| 1615 | `Cuirass07_m07_A4` | Noble cuirass | 24.3 | 58077 | `817509c8-c13b-47c2-a066-aff854ebb9e6` |
| 1616 | `Cuirass07_m08_A4` | Noble cuirass | 24.3 | 58077 | `df5bb524-9b34-4b88-8a86-201a54238452` |
| 1617 | `Cuirass07_mDLC` | Kuttenberg ornated cuirass | 22 | 58500 | `1ef39a62-e2bb-4ad8-a5cf-b48ec66be6f6` |
| 1618 | `Cuirass08_m01_C4` | Kastenbrust | 11.9 | 51195 | `135a64e5-8958-42f4-bbe8-16e6744fc20b` |
| 1619 | `Cuirass08_m02_C4` | Kastenbrust | 11.9 | 51195 | `899160f1-d144-41bc-bd72-998c83c09dea` |
| 1620 | `Cuirass08_m03_C4` | Kastenbrust | 11.9 | 51195 | `b29874c7-734e-448a-9227-b0b261c900d2` |
| 1621 | `Cuirass08_m04_C4` | Kastenbrust | 11.9 | 51195 | `c6951af0-0848-421c-9d6b-c7d2e2102a26` |
| 1622 | `Cuirass08_m05_C4` | Kastenbrust | 11.9 | 51195 | `f19e049a-1209-4f18-b02d-615e5efb2c48` |
| 1623 | `Cuirass08_m06_C4` | Kastenbrust | 11.9 | 51195 | `53a8f2bb-d4b6-4f6c-b503-a7d7c018d58c` |
| 1624 | `Cuirass08_m07_C4` | Kastenbrust | 11.9 | 51195 | `23512358-f6ec-48f6-b9d9-ed7d51cf1c26` |
| 1625 | `Cuirass08_m08_C4` | Kastenbrust | 11.9 | 51195 | `d41a661e-e894-41eb-8379-b03fd75567b3` |
| 1626 | `Cuirass09_m01_B4` | Miser's cuirass | 25.3 | 73774 | `277e463c-099a-4a5a-bad0-0879e1b01857` |
| 1627 | `Cuirass09_m02_B4` | Brigandine with plate | 25.3 | 72546 | `8f3fa1e6-71e2-4bb6-b8e5-44e4152fa2b0` |
| 1628 | `Cuirass09_m03_B4` | Brigandine with plate | 25.3 | 72546 | `66db63c0-8355-4940-9463-eb19f3fff21d` |
| 1629 | `Cuirass09_m04_B4` | Brigandine with plate | 25.3 | 72546 | `82c3df0a-6ad0-45fa-912f-7e0cc18b1dd1` |
| 1630 | `Cuirass09_m05_B4` | Brigandine with plate | 25.3 | 72546 | `a373fcd0-cb50-4994-a063-994dfaea8c8a` |
| 1631 | `Cuirass09_m06_B4` | Brigandine with plate | 25.3 | 72546 | `538f43b0-9a60-4b4b-87b3-8845fa6e4ef2` |
| 1632 | `Cuirass09_m07_B4` | Brigandine with plate | 25.3 | 72955 | `73186d91-8ce4-4fc2-860c-995817b967a9` |
| 1633 | `Cuirass10_m01` | Kuttenberg layered cuirass | 22.5 | 56800 | `eacbf84b-4cd5-4530-82e1-8e1468fcb279` |
| 1634 | `CuirassBrunswig_m01` | Brunswick's brigandine | 12 | 15990 | `8f0afc06-e359-4371-b1ce-a312f5d4aa64` |
| 1635 | `CuirassCapon_m01` | Kastenbrust | 7.4 | 7605 | `675ea411-34d2-4c6c-95b7-062b6d1027c6` |
| 1636 | `CuirassCapon_mRadzig` | Kastenbrust | 11.3 | 42370 | `65ebe8ab-14d5-475e-b31b-a2c6624560a7` |
| 1637 | `CuirassChestPlate_placeholder` | A suspicious bag | 0.2 | 4100 | `4144898f-aeef-08af-15a6-d963dccd96a5` |
| 1638 | `CuirassTassets_placeholder` | A suspicious bag | 0.2 | 4296 | `44a42a13-f552-9a1a-b812-d0dc175be39d` |
| 1643 | `CumanChanfron01_m01` | Karachin's chanfron | 7 | 8200 | `8193888e-7412-4304-b2f5-6448c0d1047e` |
| 1665 | `DefaultBoots` | A suspicious bag | 1 | 20 | `6d6cdd37-b64d-4e59-bdfd-3f72ffe7f92f` |
| 1666 | `DefaultCoif` | A suspicious bag | 0.2 | 0 | `9425993a-b1ea-423f-8d48-fd6161d98d32` |
| 1772 | `dlc3_zasobovani_spectacles_cellarius` | Cellarius' spectacles | 0 | 2807 | `fa9a8399-ca91-4476-9680-d3486fcd3615` |
| 1796 | `dvojityAgent_petrsCuirass` | Peter of Suchotlesky's cuirass | 11.3 | 39680 | `dcfd12a5-9025-4580-9848-8eb034253d66` |
| 1801 | `EastBridle02_m01` | Sharukan bridle | 2.6 | 3000 | `f0107fc6-4be0-4f17-94df-5413a93a6228` |
| 1802 | `EastBridle02_m02` | Sharukan bridle | 2.6 | 3000 | `a6855c72-1caf-4e4c-9ceb-c128f4b19d09` |
| 1803 | `EastBridle02_m03` | Sharukan bridle | 2.6 | 3000 | `8b6afb40-e9b0-4b82-afda-7c134a521d77` |
| 1804 | `EastBridle02_m04` | Sharukan bridle | 2.6 | 3000 | `dadc9db2-ff5d-4845-901d-fcf9504bcd4e` |
| 1805 | `EastBridle02_m05` | Sharukan bridle | 2.6 | 3000 | `662663b9-61ae-4378-a2a6-b3c82beea544` |
| 1806 | `EastBridle02_m06` | Sharukan bridle | 2.6 | 3000 | `1fa14c25-19b0-455a-9fff-592a3fddf336` |
| 1807 | `EastBridle02_m07` | Sharukan bridle | 2.6 | 3000 | `cf252e68-842d-4e7d-a597-d07938c14439` |
| 1808 | `EastBridle02_m08` | Sharukan bridle | 2.6 | 3000 | `6bbc8afd-602d-4181-99cc-4b5cdd64cf44` |
| 1809 | `EastBridle02_m09` | Sharukan bridle | 2.6 | 3000 | `153b4fff-7a69-4425-bb31-fa74034f5d78` |
| 1810 | `EastBridle02_m10` | Sharukan bridle | 2.6 | 3000 | `54bfe970-e84d-453d-9fd0-8da0eaa178a7` |
| 1812 | `EastSaddle01_m01` | Lovari saddle | 16.8 | 10000 | `2939fb92-50f8-4ad0-9afc-deba97a38a1a` |
| 1813 | `EastSaddle01_m02` | Lovari saddle | 16.8 | 10000 | `0f517dbf-ae9b-44eb-990c-e941e8151596` |
| 1814 | `EastSaddle01_m03` | Lovari saddle | 16.8 | 10000 | `f74034d0-58b3-4ebf-8dca-b7ba3abd1940` |
| 1815 | `EastSaddle01_m04` | Lovari saddle | 16.8 | 10000 | `da944680-fbc0-431f-ac4a-4a64c32e3856` |
| 1816 | `EastSaddle01_m05` | Lovari saddle | 16.8 | 10000 | `17032eaf-2ff4-4803-b671-79eaccaa4743` |
| 1817 | `EastSaddle01_m06` | Lovari saddle | 16.8 | 10000 | `f2ee862e-852b-4980-a4e6-bc0a69d144fb` |
| 1818 | `EastSaddle01_m07` | Lovari saddle | 16.8 | 10000 | `6ae2fa40-7ceb-4067-99ef-54a86a7c6b2d` |
| 1819 | `EastSaddle01_m08` | Lovari saddle | 16.8 | 10000 | `36b6f37d-41e3-4899-9335-f83dff408f25` |
| 1820 | `EastSaddle01_m09` | Lovari saddle | 16.8 | 10000 | `bbad295d-76a4-4897-a71c-52f950135473` |
| 1821 | `EastSaddle01_m10` | Lovari saddle | 16.8 | 10000 | `bb05ba08-8f51-43c3-a51e-15339aa50660` |
| 1822 | `EastSaddle01_m11` | Lovari saddle | 16.8 | 10000 | `fe9b01ba-71d8-4892-bc59-d72f5317139c` |
| 1823 | `EastSaddle01_m12` | Lovari saddle | 16.8 | 10000 | `81b4ef33-4e2d-4e0f-98d4-967c7352ab8e` |
| 1824 | `EastSaddle02_m01` | Moglen saddle | 15.6 | 8000 | `dc7c6cb2-9a46-4499-ac63-e9af6633a1ff` |
| 1825 | `EastSaddle02_m02` | Moglen saddle | 15.6 | 8000 | `dd37d5f4-74e1-4ef5-a3a0-38682eef40ae` |
| 1826 | `EastSaddle02_m03` | Moglen saddle | 15.6 | 8000 | `da93d293-ffa9-4841-8dd3-242a5b7876c5` |
| 1827 | `EastSaddle02_m04` | Moglen saddle | 15.6 | 8000 | `9d583a73-9102-417b-a6ef-317fc9c975fd` |
| 1828 | `EastSaddle02_m05` | Moglen saddle | 15.6 | 8000 | `cf32fddc-8d4f-4fb2-8efa-fbdfbf7de711` |
| 1829 | `EastSaddle02_m06` | Moglen saddle | 15.6 | 8000 | `c894d31f-95cd-446a-a4ad-d01fedf7b589` |
| 1830 | `EastSaddle02_m07` | Moglen saddle | 15.6 | 8000 | `4b324fef-6385-4a50-b355-f73e797dc657` |
| 1831 | `EastSaddle02_m08` | Moglen saddle | 15.6 | 8000 | `c675ab1d-995f-4b35-aa8a-ba5b62dbe4a2` |
| 1832 | `EastSaddle02_m09` | Moglen saddle | 15.6 | 8000 | `e04237cb-356d-4012-b9b4-54981beb1c8a` |
| 1833 | `EastSaddle02_m10` | Moglen saddle | 15.6 | 8000 | `11f99643-7fc3-4ba3-95ea-178467c3ec75` |
| 1834 | `EastSaddle02_m11` | Moglen saddle | 15.6 | 8000 | `5740fe7f-019c-45e7-b220-b21b2ac9bd17` |
| 1835 | `EastSaddle02_m12` | Moglen saddle | 15.6 | 8000 | `c2e04911-14d5-44d6-9d82-e2ad0b7ced82` |
| 1848 | `EyepatchZizka_m01` | Head bandage | 0.1 | 17 | `9043e197-1e7f-4f13-a1ff-2b9b9236688c` |
| 1849 | `EyepatchZizka_m02` | Head bandage | 0.1 | 17 | `fdb7bcd9-3e53-46dc-86e6-1d7bec6fc529` |
| 1850 | `F_Bonnet01_m01_B` | Bonnet | 0.2 | 115 | `d4495b95-97b1-4202-9bd6-a8cdbbc1d0de` |
| 1851 | `F_Bonnet01_m02_B` | Bonnet | 0.2 | 673 | `fec4d2a9-e82e-40b8-b762-004060c0d979` |
| 1852 | `F_Bonnet01_m03_B` | Bonnet | 0.2 | 673 | `0d40173a-ec28-49c2-809e-d6b279295cfa` |
| 1853 | `F_Bonnet01_m04_B` | Bonnet | 0.2 | 673 | `0d8857b2-ec70-473f-8ea3-0938534d3a55` |
| 1854 | `F_Bonnet02_m01_B` | Embroidered bonnet | 0.2 | 673 | `ede15e37-9976-4b6c-8461-126d1ede824e` |
| 1855 | `F_Bonnet02_m02_B` | Embroidered bonnet | 0.2 | 673 | `e834f6d8-5955-4a1d-b959-ab0cd18f6419` |
| 1856 | `F_Bonnet02_m03_B` | Embroidered bonnet | 0.2 | 673 | `955c4fc0-205c-42d7-abd7-07fb4b31b499` |
| 1857 | `F_Bonnet03_m01_B` | Simple bonnet | 0.2 | 673 | `49997e43-e2d0-49da-ba92-9ac2964890b9` |
| 1858 | `F_Bonnet03_m02_B` | Simple bonnet | 0.2 | 673 | `73390081-6964-4a5c-b403-2998423afd57` |
| 1859 | `F_Bonnet03_m03_B` | Simple bonnet | 0.2 | 673 | `6af3c964-d481-4760-b234-9ee7648e3b0f` |
| 1860 | `F_Cap01_m01_B` | Women's straw hat | 0.5 | 600 | `aa4ca12f-7453-44a9-9792-9ffd57d512c9` |
| 1861 | `F_Cap01_m02_B` | Women's straw hat | 0.5 | 600 | `bb4a5f91-bb6e-494a-960a-fef5dad7874d` |
| 1862 | `F_Cap01_m03_B` | Women's straw hat | 0.5 | 600 | `89a0d670-0b19-4433-8ea6-86e1a0d559b0` |
| 1863 | `F_Cap01_m04_B` | Women's straw hat | 0.5 | 600 | `ddb90211-b09c-4b09-b05a-be7f8fa6e579` |
| 1864 | `F_Cap01_m05_B` | Women's straw hat | 0.5 | 600 | `9ed9a88d-f31e-4f6c-bc61-ffdfd2e40594` |
| 1865 | `F_Cap01_m06_B` | Women's straw hat | 0.5 | 600 | `8f0a3404-518c-42ca-bbd0-d702e1b5e401` |
| 1866 | `F_Cap02_m01_B` | Women's straw hat | 0.5 | 600 | `1bf29da7-0bfc-4d1a-b968-df298e4bc0ac` |
| 1867 | `F_Cap02_m02_B` | Women's straw hat | 0.5 | 600 | `c9f84d4c-d35e-4ba0-baf3-70f6420938ab` |
| 1868 | `F_Cap03_m01_B` | Women's straw hat | 0.5 | 600 | `930b8b3a-5d86-4f15-851e-5fb1b6bef80d` |
| 1869 | `F_Cap03_m02_B` | Women's straw hat | 0.5 | 600 | `f85df23c-28bd-466f-af52-ebdaefc546a6` |
| 1870 | `F_Cap03_m03_B` | Women's straw hat | 0.5 | 115 | `519cda64-0ebd-4626-bf25-57344c41ac5d` |
| 1871 | `F_Cotehardie01_m01_B` | Noblewoman's cotehardie | 3 | 2786 | `dca0b90b-0850-4ae7-bba4-f05660abbc8e` |
| 1872 | `F_Cotehardie01_m02_B` | Noblewoman's cotehardie | 3 | 2786 | `598ffca3-a36e-49b3-8982-e79864410620` |
| 1873 | `F_Cotehardie01_m03_B` | Noblewoman's cotehardie | 3 | 2786 | `aac53a0e-4926-4852-8441-a84c170fecdc` |
| 1874 | `F_Cotehardie01_m04_B` | Noblewoman's cotehardie | 3 | 2786 | `67174626-172d-4071-8e51-a6ee557a0ffb` |
| 1875 | `F_Cotehardie01_m05_B` | Noblewoman's cotehardie | 3 | 2428 | `17bb0339-31eb-4967-8a09-e3389d31958b` |
| 1876 | `F_Cotehardie01_m06_B` | Noblewoman's cotehardie | 3 | 7284 | `0cec5237-aaca-4151-8630-51221c08dbb3` |
| 1877 | `F_Cotehardie01_m07_B` | Noblewoman's cotehardie | 3 | 4198 | `c608987b-7403-4f80-bea9-6d764c865b0d` |
| 1878 | `F_Cotehardie01_m08_B` | Noblewoman's cotehardie | 3 | 2786 | `8fd5ee32-1d34-420e-a485-36bdaf57d0c4` |
| 1879 | `F_Cotehardie01_m09_B` | Noblewoman's cotehardie | 3 | 2786 | `c632b4ad-7737-4e35-9444-8ca46f9a6dc1` |
| 1880 | `F_Cotehardie01_m10_B` | Noblewoman's cotehardie | 3 | 1713 | `bed90d8b-11a1-49e4-9069-662c4c1764e3` |
| 1881 | `F_Cotehardie01_m11_B` | Noblewoman's cotehardie | 3 | 4198 | `2b785b0f-8e17-4296-b3af-1a2f77eaada9` |
| 1882 | `F_Cotehardie01_m12_B` | Noblewoman's cotehardie | 3 | 783 | `421599c3-d048-456a-9e32-ea801d97f7e2` |
| 1883 | `F_Cotehardie01_m13_B` | Noblewoman's cotehardie | 3 | 2786 | `ad246ca4-aad6-40c0-9b5e-1458e843dee1` |
| 1884 | `F_Cotehardie01_m14_B` | Noblewoman's cotehardie | 3 | 1713 | `16cd3a83-a291-4c80-98c8-c3152c42ad6f` |
| 1885 | `F_Cotehardie03_m01_A` | Noblewoman's cotehardie | 3 | 7283 | `a8e9ede6-4da0-4259-9a08-be749fdeed98` |
| 1886 | `F_Cotehardie03_m02_A` | Noblewoman's cotehardie | 3 | 2932 | `f2aca8ba-852f-4ab6-a525-db15bf36f720` |
| 1887 | `F_Cotehardie03_m03_A` | Noblewoman's cotehardie | 3 | 2932 | `d63dd5a8-dcbf-43de-a5dd-aceb4fa9eee8` |
| 1888 | `F_Cotehardie03_m04_A` | Noblewoman's cotehardie | 3 | 2932 | `f3434a58-f46c-4680-916f-626b9870029e` |
| 1889 | `F_Cotehardie03_m05_A` | Noblewoman's cotehardie | 3 | 2932 | `1b829756-e8a1-44bc-8d7d-5d33152bc16c` |
| 1890 | `F_Cotehardie03_m06_A` | Noblewoman's cotehardie | 3 | 2932 | `e06ba2d9-9ce7-49e2-9e3a-36280994cf5c` |
| 1891 | `F_Cotehardie03_m07_A` | Noblewoman's cotehardie | 3 | 2932 | `37f96d3e-f73d-4d3c-8e06-996b1d9a0401` |
| 1892 | `F_Cotehardie03_m08_A` | Noblewoman's cotehardie | 3 | 2932 | `e16995a3-c26c-44a8-baa4-710488ba241d` |
| 1893 | `F_Cotehardie03_m09_A` | Noblewoman's cotehardie | 3 | 7283 | `15cefa3b-76ca-44b2-ac8a-3ec615916dfc` |
| 1894 | `F_Cotehardie03_m10_A` | Noblewoman's cotehardie | 3 | 2932 | `0bd28c1a-f069-4de7-81c9-ba9300807dff` |
| 1895 | `F_Cotehardie03_m11_A` | Noblewoman's cotehardie | 3 | 2932 | `2f5a44d1-bbb5-4389-8cf6-a5ae3c97e42a` |
| 1896 | `F_Cotehardie03_m12_A` | Noblewoman's cotehardie | 3 | 6001 | `e3d9eec8-3f33-4862-a89d-130418add11e` |
| 1897 | `F_Cotehardie03_m13_A` | Noblewoman's cotehardie | 3 | 2932 | `2e79bbdc-51db-4c1d-88a7-83b8d8c59112` |
| 1898 | `F_Cotehardie03_m14_A` | Noblewoman's cotehardie | 3 | 2932 | `c731bade-8acf-4b85-9085-e188b33f3870` |
| 1899 | `F_Cotehardie04_m01_B` | Noblewoman's cotehardie | 3 | 1713 | `e0962166-8b41-4966-a580-ab9b1cd1b779` |
| 1900 | `F_Cotehardie04_m02_B` | Noblewoman's cotehardie | 3 | 1713 | `66f817cb-14f7-4495-b56e-32d5551ec5af` |
| 1901 | `F_Cotehardie04_m03_B` | Noblewoman's cotehardie | 3 | 4665 | `b3ca8b90-f337-4be8-b41c-15ee6f25cad2` |
| 1902 | `F_Cotehardie04_m04_B` | Noblewoman's cotehardie | 3 | 4665 | `a84d558b-9542-4223-90d3-22c096c3bda6` |
| 1903 | `F_Cotehardie04_m05_B` | Noblewoman's cotehardie | 3 | 1713 | `11669f9a-1f44-46ea-b342-e8443ac87fe7` |
| 1904 | `F_Cotehardie04_m06_B` | Noblewoman's cotehardie | 3 | 1403 | `b59569d1-102b-414a-91ea-3dfa34d0c922` |
| 1905 | `F_Cotehardie04_m07_B` | Noblewoman's cotehardie | 3 | 1713 | `ed420472-7e45-445e-9f89-80587d1b6b67` |
| 1906 | `F_Cotehardie04_m10_B` | Noblewoman's cotehardie | 3 | 1713 | `02339c2a-75cb-490e-80de-7cbb8f4f3038` |
| 1907 | `F_Cotehardie04_m11_B` | Noblewoman's cotehardie | 3 | 3733 | `0904d567-9fb2-4833-acf4-80f38f5d49b1` |
| 1908 | `F_Cotehardie04_m12_B` | Noblewoman's cotehardie | 3 | 4665 | `d7571357-f01b-4735-869d-220466bcde2c` |
| 1909 | `F_Cotehardie04_m13_B` | Noblewoman's cotehardie | 3 | 4665 | `f9500c7c-bd97-472a-b5b0-d3d41c47a8d6` |
| 1910 | `F_Cotehardie04_m14_B` | Noblewoman's cotehardie | 3 | 1713 | `4f37a3ee-a982-4fe1-a573-b3da90a0e57d` |
| 1911 | `F_Cotehardie04_m15_B` | Noblewoman's cotehardie | 3 | 4044 | `e23e0d4a-0a80-46b2-a2e6-1dd0a98c6357` |
| 1912 | `F_Cotehardie04_mAnna` | Noblewoman's cotehardie | 3 | 7283 | `e0d7263b-7ed3-4a28-9f76-a0f83000bd04` |
| 1913 | `F_Cotehardie04_mBridal` | Noblewoman's cotehardie | 3 | 2543 | `b428c02f-524f-47ba-866a-f3d04f2ff7c3` |
| 1914 | `F_Cotehardie04_mGretaF` | Noblewoman's cotehardie | 3 | 496 | `2bc64ff6-88e5-4b0d-8f94-9c7810d29275` |
| 1915 | `F_HairDecor01_m01_D` | Wreath | 0.2 | 100 | `9f0de888-bcab-482e-bef2-0967e4567ac8` |
| 1916 | `F_HairDecor01_m02_D` | Wreath | 0.2 | 100 | `84d9ed44-7ee9-4dd0-a7de-51305fe85e80` |
| 1917 | `F_HairDecor01_m03_D` | Wreath | 0.2 | 100 | `1820d8e5-f3a7-44e0-883f-541f1df673c9` |
| 1918 | `F_HairDecor01_m04_D` | Wreath | 0.2 | 100 | `958487ca-d5ef-42f9-ae8b-3b2c76941757` |
| 1919 | `F_HairDecor01_m05_D` | Wreath | 0.2 | 100 | `c8dcb769-53a2-445b-bc8b-352e7c7c2236` |
| 1920 | `F_HairDecor02_m01_A` | Narrow headband | 0.2 | 913 | `fe64808e-a09a-49ea-a00c-14f8704f8027` |
| 1921 | `F_HairDecor02_m02_A` | Narrow headband | 0.2 | 913 | `6e4534a5-9768-45b7-95ac-7f7052d6ca35` |
| 1922 | `F_HairDecor02_m03_A` | Narrow headband | 0.2 | 913 | `0a747df3-03d0-43b4-93ef-f819ca46062d` |
| 1923 | `F_HairDecor02_m04_A` | Narrow headband | 0.2 | 913 | `d035cf21-9704-4ace-b277-b64d7d1e4fc3` |
| 1924 | `F_HairDecor02_m05_A` | Narrow headband | 0.2 | 913 | `7a4b6b2f-b66e-45e9-8267-40c0a1a8acea` |
| 1925 | `F_HairDecor03_m01_A` | Narrow headband | 0.2 | 913 | `2242070d-6870-4de2-8e86-0a50cad82369` |
| 1926 | `F_HairDecor03_m02_A` | Narrow headband | 0.2 | 913 | `9f23695c-47f4-4652-b738-02014e18a16c` |
| 1927 | `F_HairDecor03_m03_A` | Narrow headband | 0.2 | 913 | `49421dbb-22ab-46e5-b146-2903bb139708` |
| 1928 | `F_HairDecor03_m04_A` | Narrow headband | 0.2 | 913 | `d4eab06e-a67e-435d-bf39-825268594030` |
| 1929 | `F_HairDecor03_m05_A` | Narrow headband | 0.2 | 913 | `de366309-05e3-4606-876e-4cc6eeedd5d9` |
| 1930 | `F_HairDecor04_m01_B` | Decorated headpiece | 0.2 | 574 | `f64a7afd-f800-40a5-ab38-c2a39ac37072` |
| 1931 | `F_HairDecor04_m02_B` | Decorated headpiece | 0.2 | 574 | `04ca0525-2e33-42d1-bf62-1cb14dcc306a` |
| 1932 | `F_HairDecor04_m03_B` | Decorated headpiece | 0.2 | 574 | `3c3a5de0-1739-4450-8dee-8432ab87a71b` |
| 1933 | `F_HairDecor04_m04_B` | Decorated headpiece | 0.2 | 574 | `5b2194a2-cf0f-417e-8d38-5f9a9ca1d17c` |
| 1934 | `F_HairDecor04_m05_B` | Decorated headpiece | 0.2 | 574 | `a7482fe4-9db0-4fdc-9903-4f80655860e0` |
| 1935 | `F_HairDecor05_m01_B` | Decorated headpiece | 0.2 | 574 | `97502171-d138-403b-8745-75776a9809fc` |
| 1936 | `F_HairDecor05_m02_B` | Decorated headpiece | 0.2 | 574 | `5007c141-b935-4110-8a18-6e7077a51b21` |
| 1937 | `F_HairDecor05_m03_B` | Decorated headpiece | 0.2 | 574 | `e00e0db5-457f-453b-8bf9-65ea6e9a387e` |
| 1938 | `F_HairDecor05_m04_B` | Decorated headpiece | 0.2 | 574 | `c958f207-5346-4a29-9f81-bb996ae80461` |
| 1939 | `F_HairDecor05_m05_B` | Decorated headpiece | 0.2 | 574 | `a4de31f5-9af6-4a85-86ec-451d56817272` |
| 1940 | `F_HairDecor06_m01_B` | Decorated headpiece | 0.2 | 574 | `900f0f15-39e0-4df7-a7f5-05d1b7ea27f2` |
| 1941 | `F_HairDecor06_m02_B` | Decorated headpiece | 0.2 | 574 | `d92464bb-6d39-4b7c-aa0a-48cd95a354ec` |
| 1942 | `F_HairDecor06_m03_B` | Decorated headpiece | 0.2 | 574 | `fc31699c-1c3a-404f-9a99-535e9ee7e927` |
| 1943 | `F_HairDecor06_m04_B` | Decorated headpiece | 0.2 | 574 | `c1fcfeea-e215-4a20-bcf0-ffa14b167769` |
| 1944 | `F_HairDecor06_m05_B` | Decorated headpiece | 0.2 | 395 | `ab7be326-54c2-4a09-beec-4eec44e57cc6` |
| 1945 | `F_HairDecor07_m01_C` | Simple headband | 0.2 | 247 | `722c1f3a-2ae7-45be-8d15-8f0e683b14e6` |
| 1946 | `F_HairDecor07_m02_C` | Simple headband | 0.2 | 247 | `be925b8a-c481-490b-a22e-f9abf91e457c` |
| 1947 | `F_HairDecor07_m03_C` | Simple headband | 0.2 | 247 | `445446b3-ebe4-4040-a3db-050b9500245c` |
| 1948 | `F_HairDecor07_m04_C` | Simple headband | 0.2 | 247 | `9843792a-1792-4e9e-80c4-2dcbb5f62863` |
| 1949 | `F_HairDecor07_m05_C` | Simple headband | 0.2 | 535 | `a35846f0-9929-4767-9da8-f884c34d4d75` |
| 1950 | `F_Hood01_m01_C` | Women's hood | 1 | 582 | `51b7e0dd-885e-4558-9acf-7f671d4a67cf` |
| 1951 | `F_Hood01_m02_C` | Women's hood | 1 | 582 | `4271804c-f39d-432b-a859-6aae4c56daa6` |
| 1952 | `F_Hood01_m03_C` | Women's hood | 1 | 582 | `8fb49e8a-9c17-452d-bd86-418f6b8c0daf` |
| 1953 | `F_Hood01_m04_C` | Women's hood | 1 | 582 | `945a88ff-f401-4ace-af56-c928b8f2a769` |
| 1954 | `F_Hood01_m05_C` | Women's hood | 1 | 582 | `56eae018-aeff-481c-b9eb-f2271fd227aa` |
| 1955 | `F_Hood01_m06_C` | Women's hood | 1 | 248 | `f1086181-eb31-4054-9a6f-424243faf35c` |
| 1956 | `F_Hood01_m07_C` | Women's hood | 1 | 582 | `295f18cd-7cd5-420a-adbe-9b2b36ce883a` |
| 1957 | `F_Hood01_m08_C` | Women's hood | 1 | 248 | `f884204d-0d13-4ff2-9c54-40d2375d8a63` |
| 1958 | `F_Hood01_m09_C` | Women's hood | 1 | 248 | `4eeab1a5-b910-4be7-a34b-afc41a835082` |
| 1959 | `F_Hood01_m10_C` | Women's hood | 1 | 582 | `b6eddbe5-6978-4feb-93df-fb2f72b6902e` |
| 1960 | `F_Hood01_m11_C` | Women's hood | 1 | 248 | `8ec57fec-ed49-46b3-be45-9ddc0d8429df` |
| 1961 | `F_Hood02_m01_C` | Women's hood | 1 | 248 | `c90bdc2d-80e3-4f59-ab22-6eb02fa1321b` |
| 1962 | `F_Hood02_m02_C` | Women's hood | 1 | 582 | `313d2643-ee11-4c74-95a3-75392e1cfb62` |
| 1963 | `F_Hood02_m03_C` | Women's hood | 1 | 582 | `7d84f5d5-bec4-417c-ae82-a49e48fb1c63` |
| 1964 | `F_Hood02_m04_C` | Women's hood | 1 | 582 | `91f6bbdb-2a80-4baf-880a-d17e6803539e` |
| 1965 | `F_Hood02_m05_C` | Women's hood | 1 | 248 | `f7c5a150-2c16-4876-ae86-7587c530bd3d` |
| 1966 | `F_Hood02_m06_C` | Women's hood | 1 | 248 | `8496e8fa-0dc4-4c9c-bca6-4a6e6e2bd05c` |
| 1967 | `F_Hood02_m07_C` | Women's hood | 1 | 582 | `14ca6fec-7c82-40e0-9684-cf8c414293b3` |
| 1968 | `F_Hood02_m08_C` | Women's hood | 1 | 248 | `59f059fe-534c-4fc8-a12f-156054d99950` |
| 1969 | `F_Hood02_m09_C` | Women's hood | 1 | 582 | `9cdc47ea-e15e-4be6-ac52-8ad62073f89e` |
| 1970 | `F_Hood02_m10_C` | Women's hood | 1 | 582 | `b57be3cc-2730-4a58-a3bf-97e5f1d46fc4` |
| 1971 | `F_Hood02_m11_C` | Women's hood | 1 | 582 | `6805d4c1-9b6a-440b-8008-929309767ca9` |
| 1972 | `F_Hood02_m12_C` | Women's hood | 1 | 582 | `a99e3e22-4ed7-427b-831a-2c455faff4fc` |
| 1973 | `F_Shoes01_m01_A` | Ladies shoes | 0.4 | 1402 | `3db1577f-aae2-4fcb-85bc-5fcc20a0cd15` |
| 1974 | `F_Shoes01_m02_A` | Ladies shoes | 0.4 | 1402 | `f0b28694-d7c7-433b-8013-53d888dc48de` |
| 1975 | `F_Shoes01_m03_A` | Ladies shoes | 0.4 | 1402 | `741f2a1b-abbb-423b-9808-a2515e2ae7fd` |
| 1976 | `F_Shoes01_m04_A` | Ladies shoes | 0.4 | 1402 | `90018ae3-4fe3-4121-bc63-9cb8e1883ebc` |
| 1977 | `F_Shoes01_m05_A` | Ladies shoes | 0.4 | 1402 | `7e2a262b-6a46-48e5-ab87-a2ececdfa89f` |
| 1978 | `F_Shoes01_m06_A` | Ladies shoes | 0.4 | 1402 | `e7de25fb-5db0-4d67-a7bc-763075868cbc` |
| 1979 | `F_Shoes01_m07_A` | Ladies shoes | 0.4 | 1402 | `6e94d811-77f4-414f-ad82-24d44e53269f` |
| 1980 | `F_Shoes01_m08_A` | Ladies shoes | 0.4 | 1402 | `c34e440c-7dac-43c0-a7d0-d1364ac6d27b` |
| 1981 | `F_Shoes01_m09_A` | Ladies shoes | 0.4 | 1402 | `82567c71-c11f-49e1-a527-c5187301a3b6` |
| 1982 | `F_Shoes01_m10_A` | Ladies shoes | 0.4 | 1402 | `29941c70-6337-4cad-9eca-50695b26817e` |
| 1983 | `F_Shoes02_m01_B` | Common ladies shoes | 0.4 | 612 | `8a007e87-9d44-4fcc-8ce3-6dc5171a0eb4` |
| 1984 | `F_Shoes02_m02_B` | Common ladies shoes | 0.4 | 612 | `444a846d-c5ab-4a57-b763-f1e625a5b4dd` |
| 1985 | `F_Shoes02_m03_B` | Common ladies shoes | 0.4 | 612 | `3af0df65-919e-4d53-b068-c113be16c5da` |
| 1986 | `F_Shoes02_m04_B` | Common ladies shoes | 0.4 | 612 | `03a8173e-fd4c-4913-a181-a3fe1b432200` |
| 1987 | `F_Shoes02_m05_B` | Common ladies shoes | 0.4 | 612 | `bc670e45-b092-40d5-b13f-38e40085dc92` |
| 1988 | `F_Shoes02_m06_B` | Common ladies shoes | 0.4 | 612 | `5a0f4eb7-b011-43ea-8a68-8dac557ca5e0` |
| 1989 | `F_Shoes02_m07_B` | Ladies shoes | 0.4 | 612 | `3e09f4df-d90c-4a67-8741-b17d99232e49` |
| 1990 | `F_Shoes02_m08_B` | Common ladies shoes | 0.4 | 612 | `8c84de46-0026-4a6f-bc3a-804fc6284968` |
| 1991 | `F_Shoes02_m09_B` | Common ladies shoes | 0.4 | 612 | `73a1c315-e542-4629-a64d-867af9d32098` |
| 1992 | `F_Shoes02_m10_B` | Common ladies shoes | 0.4 | 612 | `6b04b8a5-24ea-491f-928b-669d84277dd0` |
| 1993 | `F_ShoesKatherine_m01` | Common ladies shoes | 0.4 | 612 | `805ab0ca-e933-4e47-8526-bd336c3c2c8f` |
| 1994 | `F_SimpleDress01_m01_D` | Work dress | 2.5 | 331 | `a6a9ef0f-e1c7-4177-99d1-b8371dd36894` |
| 1995 | `F_SimpleDress01_m02_D` | Work dress | 2.5 | 488 | `d997bec5-c408-4d2a-8803-26fb99c0e583` |
| 1996 | `F_SimpleDress01_m03_D` | Work dress | 2.5 | 488 | `f99c144c-76d4-4e88-ad33-6bcb1a473053` |
| 1997 | `F_SimpleDress01_m04_D` | Work dress | 2.5 | 488 | `fd03a418-add8-43b5-b670-de2796f5d125` |
| 1998 | `F_SimpleDress01_m05_D` | Work dress | 2.5 | 488 | `e924ee43-9fe1-4879-8096-51fce9717cce` |
| 1999 | `F_SimpleDress01_m06_D` | Work dress | 2.5 | 488 | `c02c56fc-3710-4865-b26c-08dd9c92af84` |
| 2000 | `F_SimpleDress01_m07_D` | Work dress | 2.5 | 488 | `2b589656-196d-4eac-9c71-28eae376cb26` |
| 2001 | `F_SimpleDress01_m08_D` | Work dress | 2.5 | 488 | `c76be469-ae84-4cd1-a12c-539716a1b282` |
| 2002 | `F_SimpleDress01_m09_D` | Work dress | 2.5 | 488 | `b0381cd4-e7a5-44b6-b9c4-170abf618ce1` |
| 2003 | `F_SimpleDress01_m10_D` | Work dress | 2.5 | 488 | `8dacaafc-77ed-43e8-9358-e98b72f49ba9` |
| 2004 | `F_SimpleDress01_m11_D` | Work dress | 2.5 | 331 | `d1b0c3aa-53e8-47a0-83a7-8c0141f49ba3` |
| 2005 | `F_SimpleDress01_m12_D` | Work dress | 2.5 | 331 | `c713d836-b1bc-4cdd-aca6-c0a0a43564e0` |
| 2006 | `F_SimpleDress01_m13_D` | Work dress | 2.5 | 331 | `a22e8f79-9f34-4d18-aadc-4db93458e9ef` |
| 2007 | `F_SimpleDress02_m01_C` | Work dress | 2.5 | 596 | `f462a63d-f134-47a8-aa3c-f9435b9bc302` |
| 2008 | `F_SimpleDress02_m02_C` | Work dress | 2.5 | 596 | `50ae7fb3-aa5f-43df-8cd5-064646717269` |
| 2009 | `F_SimpleDress02_m03_C` | Work dress | 2.5 | 596 | `1efafc5e-0dd1-444e-bc36-95b203397304` |
| 2010 | `F_SimpleDress02_m04_C` | Work dress | 2.5 | 831 | `80653340-ef06-469c-bad5-54769fed366d` |
| 2011 | `F_SimpleDress02_m04_sex` | A suspicious bag | 2.5 | 596 | `91c7e215-9260-4d8b-ab27-71f3cbed21e4` |
| 2012 | `F_SimpleDress02_m05_C` | Work dress | 2.5 | 831 | `7134f452-e040-402a-92a4-19c57714b73f` |
| 2013 | `F_SimpleDress02_m06_C` | Work dress | 2.5 | 831 | `925441ee-a7bf-451c-bb3a-ee5396900f66` |
| 2014 | `F_SimpleDress02_m07_C` | Work dress | 2.5 | 831 | `21dca0db-5988-43ec-8535-74e67a97df6a` |
| 2015 | `F_SimpleDress02_m08_C` | Work dress | 2.5 | 831 | `3e0e1606-ece2-4b25-953e-d15f25b5fad5` |
| 2016 | `F_SimpleDress02_m09_C` | Work dress | 2.5 | 596 | `463d834b-b36f-439b-8e84-da8d5459e04a` |
| 2017 | `F_SimpleDress02_m10_C` | Work dress | 2.5 | 831 | `28f5a689-4e1a-4cf5-8ce7-50f097ce4122` |
| 2018 | `F_SimpleDress02_m11_C` | Work dress | 2.5 | 596 | `6c073097-d88a-4a30-ba87-281ab1e12ef9` |
| 2019 | `F_SimpleDress02_m12_C` | Work dress | 2.5 | 831 | `3751aef6-5604-46c1-958d-bb40d47ef163` |
| 2020 | `F_SimpleDress02_m13_C` | Work dress | 2.5 | 831 | `1c33d269-a76c-49f0-a15e-ba0f7a928c1b` |
| 2021 | `F_SimpleDress02_m14_C` | Work dress | 2.5 | 831 | `4cf936a9-1b07-47a8-a113-96c60c06eb9e` |
| 2022 | `F_SimpleDress02_mCatLady` | Work dress | 2.5 | 753 | `5db0bf71-c298-4c1e-a184-485770a9a69c` |
| 2023 | `F_SimpleDress03_m01_C` | Travel dress | 2.5 | 596 | `50657f4d-6b62-4d9e-b084-ad078997fc1a` |
| 2024 | `F_SimpleDress03_m02_C` | Travel dress | 2.5 | 831 | `bace385b-c611-4935-8e61-f28fee2b4666` |
| 2025 | `F_SimpleDress03_m03_C` | Travel dress | 2.5 | 596 | `7f0d4823-7fa2-4db2-9582-abfd873ebdbb` |
| 2026 | `F_SimpleDress03_m04_C` | Travel dress | 2.5 | 831 | `f3c25d86-5aa8-4a61-aa94-8d11a950f26f` |
| 2027 | `F_SimpleDress03_m05_C` | Travel dress | 2.5 | 831 | `4674bb81-bc45-4750-b436-bdc1501a414c` |
| 2028 | `F_SimpleDress03_m06_C` | Travel dress | 2.5 | 831 | `8ee413b8-903c-4389-a783-f0908bb76937` |
| 2029 | `F_SimpleDress03_m07_C` | Travel dress | 2.5 | 831 | `48b87e07-1043-4205-b5aa-a417aecf1c51` |
| 2030 | `F_SimpleDress03_m08_C` | Travel dress | 2.5 | 596 | `6212128a-1a85-4f5c-8e6f-f943bed2e6d5` |
| 2031 | `F_SimpleDress03_m09_C` | Travel dress | 2.5 | 831 | `11ce7d41-fce4-41f5-9310-e3f83bbbd406` |
| 2032 | `F_SimpleDress03_m10_C` | Travel dress | 2.5 | 831 | `79fd972e-9fc4-403c-ad6c-ea085fda50e1` |
| 2033 | `F_SimpleDress03_m11_C` | Travel dress | 2.5 | 831 | `eafae5b5-e98f-4d58-bc07-f2cf16ed1337` |
| 2034 | `F_SimpleDress03_m12_C` | Travel dress | 2.5 | 831 | `4b59498f-30cd-49d1-b0d7-df2462965602` |
| 2035 | `F_SimpleDress03_m13_C` | Travel dress | 2.5 | 596 | `7dc96cc5-13a1-4cf5-82a9-586ad446f1d2` |
| 2036 | `F_SimpleDress03_m14_C` | Travel dress | 2.5 | 596 | `9c2af4e3-87ab-4067-9efe-8c445daafae5` |
| 2037 | `F_SimpleDress03_m15_C` | Travel dress | 2.5 | 495 | `82d7b0ad-1048-4bed-8d97-a11315b2388f` |
| 2038 | `F_SimpleDress04_m01_C` | Frilled dress | 2.5 | 831 | `48aa7458-3c72-4034-997f-69ad1e5b3dd5` |
| 2039 | `F_SimpleDress04_m02_C` | Frilled dress | 2.5 | 596 | `ccce69de-2d52-41b5-a8f0-3d832eab1137` |
| 2040 | `F_SimpleDress04_m03_C` | Frilled dress | 2.5 | 831 | `3a369a3b-fbc4-4b4b-8d59-5ca8492daa33` |
| 2041 | `F_SimpleDress04_m04_C` | Frilled dress | 2.5 | 831 | `29963409-a8b4-4c9a-8c7c-02b674cb5883` |
| 2042 | `F_SimpleDress04_m05_C` | Frilled dress | 2.5 | 831 | `7b1c6ee9-b6f0-406b-85cf-23a6260d19ca` |
| 2043 | `F_SimpleDress04_m06_C` | Frilled dress | 2.5 | 831 | `cfabea07-919a-4d7c-bbae-2e7d8d02c8e4` |
| 2044 | `F_SimpleDress04_m07_B` | Frilled dress | 2.5 | 1293 | `a20c4364-fe42-4a25-91b4-216a9beb15bb` |
| 2045 | `F_SimpleDress04_m08_B` | Frilled dress | 2.5 | 1293 | `ba54ce29-9e83-4042-b24a-75e480f80d32` |
| 2046 | `F_SimpleDress04_m09_B` | Frilled dress | 2.5 | 1293 | `0fb6359f-f8b0-4ff1-b18c-7410d6f55604` |
| 2047 | `F_SimpleDress04_m10_B` | Frilled dress | 2.5 | 1293 | `802510a0-b398-4898-ab4b-e28b9882aba1` |
| 2048 | `F_SimpleDress04_m11_B` | Frilled dress | 2.5 | 1293 | `307e72cc-6468-4ca1-9b5b-1411d6b4f9ae` |
| 2049 | `F_SimpleDress04_m12_B` | Frilled dress | 2.5 | 860 | `3cd47919-2e3b-4f47-ab95-df8456d12efb` |
| 2050 | `F_SimpleDress04_m13_B` | Frilled dress | 2.5 | 1293 | `3540b5c2-50ef-4720-b6e5-77724397ab4e` |
| 2051 | `F_SimpleDress04_m14_B` | Frilled dress | 2.5 | 1293 | `a4e52915-90a3-4a22-b1f6-40365c72db60` |
| 2052 | `F_SimpleDress04_mDoubravka` | Frilled dress | 2.5 | 1293 | `c8a5d1f4-5699-4203-8786-dca8f7720f9f` |
| 2053 | `F_SimpleDress04_mMusician01_C` | Frilled colourful dress | 2.5 | 831 | `20330afb-7fcb-404f-964f-6316a89252a2` |
| 2054 | `F_SimpleDress04_mMusician02_C` | Frilled colourful dress | 2.5 | 831 | `c10cc5ae-a918-4655-b60e-e2f11e77726d` |
| 2055 | `F_SimpleDress04_mMusician03_C` | Frilled colourful dress | 2.5 | 831 | `c30df767-7d43-43a1-9264-752f583c0fc6` |
| 2056 | `F_SimpleDress05_m01_C` | Festive dress | 2.5 | 831 | `d3c19094-a50d-4f82-84af-38cfe3131a9a` |
| 2057 | `F_SimpleDress05_m02_C` | Festive dress | 2.5 | 831 | `e8311a12-9888-4f3f-8780-2de38fd1ef90` |
| 2058 | `F_SimpleDress05_m03_C` | Festive dress | 2.5 | 831 | `ea849ae5-a704-468e-9585-ff247b411052` |
| 2059 | `F_SimpleDress05_m04_C` | Festive dress | 2.5 | 831 | `388534dd-e293-41df-ab94-596562e67592` |
| 2060 | `F_SimpleDress05_m05_C` | Festive dress | 2.5 | 831 | `80a17c01-d59a-4b6e-b043-f68a0ff413ae` |
| 2061 | `F_SimpleDress05_m06_C` | Festive dress | 2.5 | 831 | `4375dd38-ef7b-4453-8bdc-ae24dd69154b` |
| 2062 | `F_SimpleDress05_m07_C` | Festive dress | 2.5 | 831 | `d7d111b3-b29d-45c3-ad55-157326da77b4` |
| 2063 | `F_SimpleDress05_m08_C` | Festive dress | 2.5 | 596 | `fb19e7cb-fbef-4184-bec3-a4c545d9f6d5` |
| 2064 | `F_SimpleDress05_m09_C` | Festive dress | 2.5 | 831 | `27312d9f-8b06-45d3-bf55-7e4265ee9926` |
| 2065 | `F_SimpleDress05_m10_C` | Festive dress | 2.5 | 831 | `c9d439f9-0e28-4d7e-af1c-b84003605742` |
| 2066 | `F_SimpleDress05_m11_C` | Festive dress | 2.5 | 596 | `1c8d0891-f61c-4cd6-b01d-b13b2163328e` |
| 2067 | `F_SimpleDress05_m12_C` | Festive dress | 2.5 | 831 | `936416bb-7cf8-49de-9951-eeb11924f4d8` |
| 2068 | `F_SimpleDress05_m13_C` | Festive dress | 2.5 | 596 | `d23d05fa-400b-4756-a769-4c4b32282dca` |
| 2069 | `F_SimpleDress05_m14_C` | Festive dress | 2.5 | 831 | `4bc73e64-93e5-4dcc-81aa-4bf0e005a22b` |
| 2070 | `F_SimpleDress05_m15_C` | Festive dress | 2.5 | 831 | `f90262b5-a805-4737-b891-21ee7c64db4f` |
| 2071 | `F_SimpleDress05_m16_C` | Festive dress | 2.5 | 831 | `9d29ed14-5ee2-4ad2-97ad-aa7458c2fa4b` |
| 2072 | `F_SimpleDress05_m17_C` | Festive dress | 2.5 | 831 | `3f8d9377-29d6-425d-9843-ed9b9af4d52b` |
| 2073 | `F_SimpleDress05_m18_C` | Festive dress | 2.5 | 596 | `a8153319-98ed-4023-a036-62dc9ec7998c` |
| 2074 | `F_SimpleDress05_m19_C` | Festive dress | 2.5 | 831 | `9b83c780-fd31-45a7-9df1-cb44367cb84a` |
| 2075 | `F_SimpleDress05_m20_C` | Festive dress | 2.5 | 596 | `95191099-030c-4e55-9e22-c6f6551766fc` |
| 2076 | `F_SimpleDress05_m21_C` | Festive dress | 2.5 | 596 | `02b0e86d-9ee0-4262-9d56-9bedaf578a54` |
| 2077 | `F_SimpleDress05_m22_C` | Festive dress | 2.5 | 596 | `bb0d5f2a-bb1b-456b-8be1-fcc6e07ec65f` |
| 2078 | `F_SimpleDress05_m23_C` | Women's hood | 2.5 | 596 | `4329e12c-6e55-4419-8651-8f649318d311` |
| 2079 | `F_SimpleDress05_mMusician01_C` | Colorful festive dress | 2.5 | 596 | `46879403-d210-48eb-ac0a-109d79a489d2` |
| 2080 | `F_SimpleDress05_mMusician02_C` | Colorful festive dress | 2.5 | 831 | `e0a6076b-56e6-4645-aaf6-08da16952548` |
| 2081 | `F_SimpleDress06_m01_D` | Work dress | 2.5 | 488 | `38b2c716-3447-45e5-aadd-8db9fa5463ef` |
| 2082 | `F_SimpleDress06_m02_D` | Work dress | 2.5 | 331 | `184a3ab8-9441-4dc0-9f75-a2aea7ed3eaf` |
| 2083 | `F_SimpleDress06_m03_D` | Work dress | 2.5 | 488 | `976bda3f-81bd-49db-ac7a-9c2faf3bbc8a` |
| 2084 | `F_SimpleDress06_m04_D` | Work dress | 2.5 | 488 | `47350028-3216-42d2-b5ff-3baa3a75e122` |
| 2085 | `F_SimpleDress06_m05_D` | Work dress | 2.5 | 488 | `23db5cb7-5c0f-48eb-b7ac-f79c8f1e710b` |
| 2086 | `F_SimpleDress06_m06_D` | Work dress | 2.5 | 488 | `b750fb4f-fd42-4ddf-8c6e-0da53880f65e` |
| 2087 | `F_SimpleDress06_m07_D` | Work dress | 2.5 | 331 | `7b41ffb2-dbcf-4497-b197-b5245c3628b6` |
| 2088 | `F_SimpleDress06_m08_D` | Work dress | 2.5 | 435 | `d6e856d5-7cdf-4dc7-b72d-2d8bc9debdd8` |
| 2089 | `F_SimpleDress06_m09_D` | Work dress | 2.5 | 1084 | `9e1d7955-1f97-4f49-a889-837edd151e1d` |
| 2090 | `F_SimpleDress06_m10_D` | Work dress | 2.5 | 488 | `99ab23c5-0980-4f1c-8bc8-a0b0f40cd8e6` |
| 2091 | `F_SimpleDress06_m11_D` | Work dress | 2.5 | 488 | `fbc524b9-4f4e-4063-bc5d-32ce7cdde6f9` |
| 2092 | `F_SimpleDress06_m12_D` | Work dress | 2.5 | 488 | `35e21363-7a25-43cd-a1cc-29ec4b273e85` |
| 2093 | `F_SimpleDress06_m13_D` | Work dress | 2.5 | 488 | `153274cd-23a0-4ed1-922f-93e266466d71` |
# Items: Armour (2/2: F-Z)
> The 1424 item classes of the game's Armor table: id, name, English name, weight, price and class GUID.
The game's **`Armor`** rows - 1424 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 2094 | `F_SimpleDress06_m14_D` | Work dress | 2.5 | 331 | `0eb17a3c-2d68-4ef4-bf33-2228e3e90d8e` |
| 2095 | `F_SimpleDress06_m15_D` | Work dress | 2.5 | 488 | `be43e226-e03a-4522-ac0d-4f7ea978ee36` |
| 2096 | `F_SimpleDress06_m16_D` | Work dress | 2.5 | 488 | `db7b9a38-835a-4d40-aacf-41c842a47d83` |
| 2097 | `F_SimpleDress06_m17_D` | Work dress | 2.5 | 435 | `10f9f683-9007-4b2b-a62c-e710ce5506ba` |
| 2098 | `F_SimpleDress06_m18_D` | Work dress | 2.5 | 488 | `bae580d7-c947-49f8-98fd-22ff4c7a0203` |
| 2099 | `F_SimpleDress06_m19_D` | Work dress | 2.5 | 331 | `35eed96b-1210-4801-a84a-7e24ac7d28f2` |
| 2100 | `F_SimpleDress06_m20_D` | Work dress | 2.5 | 488 | `3bdf1489-9b87-4dee-a205-30e0a939c1ec` |
| 2101 | `F_SimpleDress06_mDivozenka` | Work dress | 2.5 | 488 | `7dab39b0-da4f-44fc-a7a4-57410ec57bf8` |
| 2102 | `F_SimpleDress06_mMother_D` | Work dress | 2.5 | 331 | `66c9d3d6-5615-4d0a-a17b-7be8e97be0d4` |
| 2103 | `F_SimpleDress07_m01_C` | Frilled dress | 2.5 | 831 | `cfc0f1a3-fa66-4ee8-a595-9f84c7f25b70` |
| 2104 | `F_SimpleDress07_m02_C` | Frilled dress | 2.5 | 831 | `d6b653d6-1aab-44d5-a296-790e4558b4b8` |
| 2105 | `F_SimpleDress07_m03_C` | Frilled dress | 2.5 | 596 | `82c61093-683e-4f7b-8c91-c6b09aecc8a7` |
| 2106 | `F_SimpleDress07_m04_C` | Frilled dress | 2.5 | 831 | `26bb0cf7-7a47-44b6-a676-5e97d5d24425` |
| 2107 | `F_SimpleDress07_m05_C` | Frilled dress | 2.5 | 831 | `fa62f728-cf18-4efa-8d38-39a446f290fb` |
| 2108 | `F_SimpleDress07_m06_C` | Frilled dress | 2.5 | 831 | `3f016165-3daa-44ca-a4f5-c1c3f58240a8` |
| 2109 | `F_SimpleDress07_m07_C` | Frilled dress | 2.5 | 831 | `1215e215-5daa-4c51-ae33-f72e9161f4b2` |
| 2110 | `F_SimpleDress07_m08_C` | Frilled dress | 2.5 | 596 | `fb5e7350-abe9-433a-8e76-32e2ec2d54b7` |
| 2111 | `F_SimpleDress07_m09_C` | Frilled dress | 2.5 | 831 | `2fb242f9-45b1-41aa-bd5c-c5a6017579b0` |
| 2112 | `F_SimpleDress07_m10_C` | Frilled dress | 2.5 | 831 | `b6128460-8284-462b-a766-5ff8b3fd490f` |
| 2113 | `F_SimpleDress07_m11_C` | Frilled dress | 2.5 | 596 | `08ddb424-8a79-41ff-b267-4d2153c57d2a` |
| 2114 | `F_SimpleDress07_m12_C` | Frilled dress | 2.5 | 831 | `60013e69-0380-4cf3-a717-48840d9fa0f2` |
| 2115 | `F_SimpleDress07_m13_C` | Frilled dress | 2.5 | 596 | `8f866797-6137-4cc8-a565-f17e0f0d4cfe` |
| 2116 | `F_SimpleDress07_m14_C` | Frilled dress | 2.5 | 831 | `70b5b68d-93d5-49ef-8b32-a85fa50a4be0` |
| 2117 | `F_SimpleDress07_m15_C` | Frilled dress | 2.5 | 596 | `11cc948c-90e1-4345-bbec-4bd10d3bf120` |
| 2118 | `F_SimpleDress07_m16_C` | Frilled dress | 2.5 | 831 | `babbdff9-bd54-4fba-afa4-5df09d54b3bc` |
| 2119 | `F_SimpleDress07_m17_C` | Frilled dress | 2.5 | 831 | `49826b43-0a0a-4385-ae9c-3aa8dc53807d` |
| 2120 | `F_SimpleDress07_m18_C` | Frilled dress | 2.5 | 831 | `ea617f86-763a-45a2-83d9-d950bdea763c` |
| 2121 | `F_SimpleDress07_m19_C` | Frilled dress | 2.5 | 831 | `ce694e9f-a557-4e92-b97c-5e4dc1cc13fa` |
| 2122 | `F_SimpleDress07_m20_C` | Frilled dress | 2.5 | 831 | `a18262f3-24c7-415e-ad0b-b5589961edb8` |
| 2123 | `F_SimpleDressKatherine_m01` | Katherine's dress | 2.5 | 831 | `af8c405e-7cf5-48af-befe-7f049aca4908` |
| 2124 | `F_SimpleDressKatherine_m02` | Katherine's dress | 2.5 | 831 | `18bb4d37-9c8c-4893-a46d-d5e26990f417` |
| 2125 | `F_SimpleDressKatherine_m03` | Katherine's dress | 2.5 | 831 | `dacb4ec9-1bb1-483d-aa36-281abefb77f4` |
| 2126 | `F_SimpleDressMagdalena_m01` | Katherine's dress | 2.5 | 831 | `3213211b-8622-4009-9c3e-c3f5d9a93905` |
| 2127 | `F_SimpleDressRose_HiddenBelt` | Rosa's dress | 2.5 | 831 | `9e8ab447-25b7-4250-98e2-44b93981115f` |
| 2128 | `F_SimpleDressRose_m01` | Rosa's dress | 2.5 | 831 | `58cc63cf-6fd4-4249-bfa8-72ed690a2e94` |
| 2129 | `F_Surcote01_m01_C` | Surcoat | 3 | 347 | `d8d53fe2-06f9-49a7-b108-3c56cde90dbd` |
| 2130 | `F_Surcote01_m02_C` | Surcoat | 3 | 637 | `5774e410-d41f-4432-9bca-4fdd636f0b8d` |
| 2131 | `F_Surcote01_m03_C` | Surcoat | 3 | 637 | `259f998d-7f72-4e83-96c9-1dbbd7717086` |
| 2132 | `F_Surcote01_m04_C` | Surcoat | 3 | 637 | `ac713c38-958e-4233-a928-653400b3f1a3` |
| 2133 | `F_Surcote01_m05_C` | Surcoat | 3 | 637 | `1a7b20dd-7e52-4030-97e0-f9615f88afbd` |
| 2134 | `F_Surcote01_m06_C` | Surcoat | 3 | 637 | `35663a5e-7d0d-4392-85c0-c4498416b245` |
| 2135 | `F_Surcote01_m07_C` | Surcoat | 3 | 637 | `4fd067ad-df3f-47ff-84c2-f33bc6a0610b` |
| 2136 | `F_Surcote01_m08_C` | Surcoat | 3 | 637 | `3e4e1ae1-ceab-47b5-b398-e9e49446f10c` |
| 2137 | `F_Surcote01_m09_C` | Surcoat | 3 | 347 | `30f8b9d6-1cd3-40c0-9b1d-e1f90c10abcf` |
| 2138 | `F_Surcote01_m10_C` | Surcoat | 3 | 637 | `ec7ea2cb-0552-41a7-88db-95b9b72eeabd` |
| 2139 | `F_Surcote01_m11_C` | Surcoat | 3 | 637 | `b22dd85e-0e65-40ba-a89a-301f6bf540bb` |
| 2140 | `F_Surcote01_m12_C` | Surcoat | 3 | 637 | `3dd43c63-5ce0-49b4-9efd-db94895aaf50` |
| 2141 | `F_Surcote01_m13_C` | Surcoat | 3 | 637 | `070730ed-b35b-4bb1-82e9-0e75c1727ac6` |
| 2142 | `F_Surcote01_m14_C` | Surcoat | 3 | 637 | `e9ca7f34-a10d-4d55-8ba2-49185cc2496a` |
| 2143 | `F_Surcote01_m15_C` | Surcoat | 3 | 637 | `c3eed13a-743e-46fd-8c2e-87d9467ba375` |
| 2144 | `F_Surcote01_mBlanka_C` | Surcoat | 3 | 637 | `6bfa09b4-c5bf-486c-bf61-65ca186c7162` |
| 2145 | `F_Veil01_m01_B` | Frilled veil | 0.2 | 947 | `c1f1a284-07bf-4a1b-aa13-0709f8866ebb` |
| 2146 | `F_Veil02_m01_B` | Simple veil | 0.2 | 947 | `f6c0b8db-655a-43b9-98a8-e8901d1c5ac1` |
| 2147 | `F_Veil03_m01_D` | Frilled veil | 0.2 | 149 | `fffce133-8738-4bc2-a300-02f3e0a1be31` |
| 2148 | `F_Veil03_m02_D` | Frilled veil | 0.2 | 149 | `2b0a8cdc-b084-4c43-ae71-714461e9ae29` |
| 2149 | `F_Veil04_m01_C` | Jewish veil | 0.2 | 504 | `5724d31a-cb34-4418-a360-ccbb6558b118` |
| 2150 | `F_Veil05_m01_D` | Colourful headscarf | 0.2 | 149 | `cbd84d49-6a80-434c-965f-1cb387d18ca0` |
| 2151 | `F_Veil05_m02_D` | Colourful headscarf | 0.2 | 149 | `5ce33a2f-2605-49df-b0b2-752e762bcd44` |
| 2152 | `F_Veil05_m03_D` | Colourful headscarf | 0.2 | 149 | `4100eb21-1784-40ac-997e-fb3bf9bca9fa` |
| 2153 | `F_Veil05_m04_D` | Colourful headscarf | 0.2 | 149 | `ce5cc078-3d10-41e4-bc53-6008a9610263` |
| 2154 | `F_Veil05_m05_D` | Colourful headscarf | 0.2 | 149 | `6f4e253b-e2c2-4222-a5bc-82e08b7c1732` |
| 2155 | `F_Veil05_m06_D` | Colourful headscarf | 0.2 | 149 | `93b6193a-f147-4e27-b232-d6bbd17cd908` |
| 2156 | `F_Veil05_m07_D` | Colourful headscarf | 0.2 | 149 | `b2fa79fe-3084-434a-8b93-e92be7f44dcc` |
| 2157 | `F_Veil05_m08_D` | Colourful headscarf | 0.2 | 149 | `bf85a76a-7248-4d57-9f77-80c208cd4785` |
| 2158 | `F_Veil05_m09_D` | Colourful headscarf | 0.2 | 149 | `9c5b14e6-f3bb-405d-a1cb-74afd2e850ff` |
| 2159 | `F_Veil05_m10_D` | Colourful headscarf | 0.2 | 149 | `7b84f3b7-71da-46a4-929e-8a1c96b859b4` |
| 2160 | `F_Veil06_m01_D` | Work headscarf | 0.2 | 149 | `b877cf13-90eb-4b8b-9a11-303a8b9c1be1` |
| 2161 | `F_Veil06_m02_D` | Work headscarf | 0.2 | 149 | `3c9c621e-f4cc-4057-bb93-e5665b87452a` |
| 2162 | `F_Veil06_m03_D` | Work headscarf | 0.2 | 149 | `67941ef7-bb74-4f4e-b84a-0421c88b204a` |
| 2163 | `F_Veil06_m04_D` | Work headscarf | 0.2 | 149 | `86f116d5-fbe1-4c46-b138-9b23902fd917` |
| 2164 | `F_Veil06_m05_D` | Work headscarf | 0.2 | 149 | `e0d30670-4b0b-436d-9683-d6f63c27738d` |
| 2165 | `F_Veil06_m06_D` | Work headscarf | 0.2 | 149 | `dcc78cf6-e48d-46a8-bf95-af07efe29795` |
| 2166 | `F_Veil06_m07_D` | Work headscarf | 0.2 | 149 | `923226be-5c9f-4824-a235-377c43e1933f` |
| 2167 | `F_Veil06_m08_D` | Work headscarf | 0.2 | 149 | `ff99e988-8b42-432b-b08c-1436e8f1039d` |
| 2168 | `F_VeilMagdalena_m01` | Frilled veil | 0.2 | 947 | `f01f2eba-b73c-4e05-b936-c2b6f849afd6` |
| 2169 | `F_Wreath01_m01` | Wreath | 0.1 | 149 | `5ee43a42-3ce8-490f-83d4-cb8294cbc51f` |
| 2170 | `F_Wreath01_m02` | Wreath | 0.1 | 149 | `f6e6b06e-487f-4bf2-bbd6-0b6eb2a49688` |
| 2171 | `F_Wreath01_m03` | Wreath | 0.1 | 149 | `e6ffbe4f-a30b-48fe-a1a8-db04cf8f9cde` |
| 2172 | `F_Wreath01_m04` | Wreath | 0.1 | 149 | `22288162-b9d0-4641-8505-d96f9408a555` |
| 2173 | `F_Wreath01_m05` | Wreath | 0.1 | 149 | `018c7670-6fe6-4728-8c3d-d1b1becade1a` |
| 2190 | `GambesonLong01_fnc_mAulitz` | Long gambeson | 12.5 | 3430 | `77683dc3-ad4e-40b0-9761-99d30d7d6124` |
| 2191 | `GambesonLong01_m01_C3` | Long gambeson | 12.5 | 3544 | `100b9146-1c41-4136-9991-ff80983f1955` |
| 2192 | `GambesonLong01_m01_C3_KHtournament_Henry` | Tournament gambeson | 12.5 | 1793 | `cc455bf4-5d9c-4f3d-9e79-06f0381c41b2` |
| 2193 | `GambesonLong01_m02_C3` | Gambeson long | 12.5 | 3586 | `d2440b7a-a40b-4a2c-bf7d-61febcf5cfda` |
| 2194 | `GambesonLong01_m03_C3` | Gambeson long | 12.5 | 3586 | `46b051c4-d4e2-4f3a-8b88-e3f64dae4618` |
| 2195 | `GambesonLong01_m04_C3` | Gambeson long | 12.5 | 3586 | `a6f4fcf5-9d0a-45c4-8641-b9689415983b` |
| 2196 | `GambesonLong01_m05_C3` | Gambeson long | 12.5 | 3461 | `e1c454dd-9834-4da0-940e-da2a27b0b795` |
| 2197 | `GambesonLong01_m06_C3` | Long gambeson | 12.5 | 3586 | `01fd6791-d9dc-46d3-8331-1ac65ee61dd5` |
| 2198 | `GambesonLong01_m07_C3` | Gambeson long | 12.5 | 3728 | `9a354274-f8bc-43cc-be5a-b522b829b61c` |
| 2199 | `GambesonLong01_m08_C3` | Gambeson long | 12.5 | 3586 | `80da65ef-da4d-4b61-95e6-200932aa5d1b` |
| 2200 | `GambesonLong01_m09_C3` | Long gambeson | 12.5 | 3728 | `018c1614-ddbf-4d9b-a797-40330be86c1c` |
| 2201 | `GambesonLong01_m10_C3` | Long gambeson - black | 10.6 | 3932 | `d34ebe81-f4eb-43b3-9efc-82feea7b88c1` |
| 2202 | `GambesonLong01_m11_C3` | Long gambeson | 12.5 | 3728 | `0a8b54b4-93f5-4b21-bb1e-4bc94b9724b4` |
| 2203 | `GambesonLong01_m12_C3` | Gambeson long | 12.5 | 3461 | `fe365538-9abe-41ca-90e8-97e191662490` |
| 2204 | `GambesonLong01_m13_C3` | Gambeson long | 12.5 | 3461 | `d40cc1ba-5ea4-44d7-86fb-ccb1680b611d` |
| 2205 | `GambesonLong01_m15_C3` | Long gambeson | 12.5 | 3461 | `c684625e-5f43-4e05-8cca-bb8cfadef4b7` |
| 2206 | `GambesonLong01_m16_B3` | Long gambeson | 13.9 | 5480 | `5b7acd28-8f5e-43dd-807a-16c61c8f077e` |
| 2207 | `GambesonLong01_m17_B3` | Long gambeson | 13.9 | 5596 | `86d438d0-975d-4e2e-9988-ac5023f5f064` |
| 2208 | `GambesonLong01_m18_B3` | Long gambeson | 13.9 | 5596 | `798db76e-9d15-4697-b995-7b8cbf7c2f34` |
| 2209 | `GambesonLong01_m19_B3` | Long gambeson | 13.9 | 5596 | `72a7e155-fae8-4c97-bad7-458664218252` |
| 2210 | `GambesonLong01_m20_B3` | Long gambeson | 13.9 | 5596 | `f8933c95-6ad2-4256-86f1-02cc431b32ab` |
| 2211 | `GambesonLong01_mdrowner` | Drowner's gambeson | 16 | 7591 | `ab7e7c7f-b03f-4d58-8f88-943bdfed50de` |
| 2212 | `GambesonLong01_mHenryStartStage1_noBags` | Long gambeson | 0.5 | 540 | `1a41c9d5-a1c3-49c7-8210-7744f720e8de` |
| 2213 | `GambesonLong03_m01_B4` | Long pourpoint | 14.6 | 6134 | `afa1ab10-b28e-4d76-873c-8a4780603695` |
| 2214 | `GambesonLong03_m02_B4` | Long pourpoint | 14.6 | 5968 | `ba6a0b5e-4674-4fac-9f2f-bd6076a6069c` |
| 2215 | `GambesonLong03_m03_B4` | Long pourpoint | 14.6 | 6134 | `fb15a17d-81d1-40ee-926f-f3f031234ed8` |
| 2216 | `GambesonLong03_m04_B4` | Long pourpoint | 14.6 | 6134 | `f6f6cfba-2e56-4c95-959d-9e5e63597a12` |
| 2217 | `GambesonLong03_m05_B4` | Long pourpoint | 14.6 | 6134 | `854c2f9f-f2b6-481d-b0d9-7721888562e5` |
| 2218 | `GambesonLong03_m06_B4` | Long pourpoint | 14.6 | 6236 | `3092f087-b3bc-4d66-9eb9-b3498570ee9c` |
| 2219 | `GambesonLong03_m07_B4` | Long pourpoint - black | 12.5 | 7726 | `e305c005-67c1-4b37-8b50-aa570137b62b` |
| 2220 | `GambesonLong03_m08_B4` | Long pourpoint | 14.6 | 5968 | `0bb591c2-663f-4e0c-9ca9-7cd893dc77da` |
| 2221 | `GambesonLong03_m09_B4` | Long pourpoint | 14.6 | 5968 | `f36cf17d-f9de-490c-818d-ecf9aab45c60` |
| 2222 | `GambesonLong03_m10_B4` | Long pourpoint | 14.6 | 6134 | `272b277a-5d7d-45c0-b2e2-b9de631fbf64` |
| 2223 | `GambesonLong03_m11_B4` | Long pourpoint | 14.6 | 6079 | `7963c946-f52a-4373-94f4-b30fabd15f8f` |
| 2224 | `GambesonLong03_m12_B4` | Long pourpoint | 14.6 | 5968 | `5b9e7420-05df-46da-963f-97c63af73f6d` |
| 2225 | `GambesonLong03_m13_B4` | Long pourpoint | 14.6 | 6134 | `4b71b17b-1302-4500-a376-c33883127806` |
| 2226 | `GambesonLong03_m14_B4` | Long pourpoint | 14.6 | 5968 | `8085164b-616a-40a4-b966-4a884e9248b6` |
| 2227 | `GambesonLong03_mCapon_NoBags` | Long pourpoint | 13.2 | 4375 | `274b827f-cf97-42ba-97b1-8c73bb5bbc3b` |
| 2228 | `GambesonLong03_mErik` | Erik's pourpoint | 14.6 | 6134 | `d6a2e36a-3a27-401f-8f17-f50137622fe4` |
| 2229 | `GambesonLong03_mSamuel` | Long pourpoint | 14.6 | 5968 | `df85f445-9eb1-43c2-82c0-39e793227aab` |
| 2230 | `GambesonLong03_mTwitch` | Warhorse pourpoint | 13.2 | 4796 | `71ac5966-90bf-4406-bba9-6c75f81ac20f` |
| 2231 | `GambesonLong04_m01_A5` | Noble gambeson | 16 | 9105 | `b08cb478-d900-4be1-9fd9-f2754f4d2ff2` |
| 2232 | `GambesonLong04_m02_A5` | Noble gambeson | 16 | 9105 | `cb233582-1908-4c23-86cc-37711d9eac7d` |
| 2233 | `GambesonLong04_m03_A5` | Noble gambeson | 16 | 9008 | `b3dc9c7a-b378-47b2-b68c-887abb7f34a4` |
| 2234 | `GambesonLong04_m04_A5` | Noble gambeson | 16 | 9105 | `86aa32e1-d4be-4518-91d8-393412d85849` |
| 2235 | `GambesonLong04_m05_A5` | Noble gambeson | 16 | 9105 | `d6236357-c652-4d43-a7df-59dfcb464415` |
| 2236 | `GambesonLong04_m06_A5` | Noble gambeson | 16 | 9105 | `af03a987-053a-4b91-ace2-da2f1b501dd0` |
| 2237 | `GambesonLong04_m07_A5` | Noble gambeson | 16 | 9105 | `118e01d4-d0e8-4e0b-a53d-bcf3c8c02f06` |
| 2238 | `GambesonLong04_m08_A5` | Noble gambeson | 16 | 8811 | `a7fe9db7-83d6-460c-a0d8-64b67355ace6` |
| 2239 | `GambesonLong04_m09_A5` | Noble gambeson | 16 | 9008 | `6a235270-1a07-4397-98a8-ae6d38a96a4d` |
| 2240 | `GambesonLong04_m10_A5` | Noble gambeson | 16 | 8811 | `7bb206c5-9417-4721-94b9-6cb8c506f01d` |
| 2241 | `GambesonLong04_m11_A5` | Noble gambeson | 16 | 9105 | `2837cde1-8e89-46d6-aec0-a6a86c3c55e1` |
| 2242 | `GambesonLong04_m12_A5` | Noble gambeson | 16 | 9105 | `1bb9643b-36ef-4b7b-880e-8c0bc14b471e` |
| 2243 | `GambesonLong04_m13_A5` | Noble gambeson | 16 | 9105 | `fda28334-d525-4093-bf40-21c7d5a08fdf` |
| 2244 | `GambesonLong04_m14_A5` | Noble gambeson | 16 | 9008 | `40dabf61-4728-45a7-8189-4c254f5e9dc9` |
| 2245 | `GambesonLong04_mTwitch` | Cutpurse's pourpoint | 11.2 | 4996 | `1ffc3ad5-4d06-4dfb-b384-bcd45edf37f3` |
| 2246 | `GambesonLong_placeholder` | A suspicious bag | 0.5 | 507 | `4c694bdc-69ab-fd72-4452-7fb635e6e69a` |
| 2247 | `GambesonLongCapon_m01` | Capon's gambeson | 13.2 | 4614 | `08b22db7-f612-40a3-b7b0-351a731bf5e0` |
| 2248 | `GambesonLongGodwin_m01` | Old gambeson | 13.2 | 4304 | `1c6988c7-bcbc-490e-97aa-350b378ef186` |
| 2249 | `GambesonLongGodwin_mNoBags` | Old gambeson | 13.2 | 4263 | `876c492b-7f08-4956-81a6-836ff1b5e607` |
| 2250 | `GambesonLongGodwin_mNoDagger` | Old gambeson | 13.2 | 4263 | `c2016c1f-1b75-48d4-b486-12011cf7ece1` |
| 2251 | `GambesonShort01_m01_D2` | Short gambeson | 10.8 | 2814 | `6069fdce-2661-4870-815b-20c37aeda40c` |
| 2252 | `GambesonShort01_m02_D2` | Gambeson short | 10.8 | 2814 | `b091659c-7293-4a63-992f-1b4bde3b87fd` |
| 2253 | `GambesonShort01_m03_D2` | Gambeson short | 10.8 | 2865 | `eec788f9-672a-40ba-89dc-b3da10d3badf` |
| 2254 | `GambesonShort01_m04_D2` | Short gambeson | 10.8 | 2814 | `00b7ed62-a7bd-4269-acfa-8d852366579b` |
| 2255 | `GambesonShort01_m05_D2` | Short gambeson | 10.8 | 2865 | `40700938-bd53-480d-80c3-2820ed3b5380` |
| 2256 | `GambesonShort01_m06_D2` | Gambeson short | 10.8 | 2814 | `c42f0260-8490-438a-a67b-ae521a48bf0d` |
| 2257 | `GambesonShort01_m07_D2` | Short gambeson | 10.8 | 2814 | `0942ca27-0900-4244-a563-08531dc77389` |
| 2258 | `GambesonShort01_m08_D2` | Gambeson short | 10.8 | 2865 | `b6b5f07a-d94d-4a1b-a9af-bad64277ab13` |
| 2259 | `GambesonShort01_m09_D2` | Gambeson short | 10.8 | 2865 | `fb175529-7e50-4d9d-a940-d3037284b8f3` |
| 2260 | `GambesonShort01_m10_D2` | Gambeson short | 10.8 | 2814 | `4c7218e8-78c2-49cf-b88a-06f567c24e5a` |
| 2261 | `GambesonShort01_m11_B2` | Gambeson short | 10.8 | 3187 | `75bd92ba-d594-41ed-beec-b6cc457a6f60` |
| 2262 | `GambesonShort01_m12_B2` | Gambeson short | 10.8 | 3187 | `96ebb4c3-04ae-4fbd-9e98-2c73e97da3c3` |
| 2263 | `GambesonShort02_m01_E1` | Gambeson worn | 9.4 | 993 | `8ec8f99a-57a7-4006-bb61-1f737996a0a9` |
| 2264 | `GambesonShort02_m02_E1` | Worn gambeson | 9.4 | 1011 | `6004945e-9358-4778-93c5-fc2b10df87a9` |
| 2265 | `GambesonShort02_m03_E1` | Worn gambeson | 9.4 | 993 | `73b9efe7-4082-4d5a-a879-4b5c7bdc5ea2` |
| 2266 | `GambesonShort02_m04_E1` | Worn gambeson | 9.4 | 1019 | `ced71295-f0ba-47ab-af48-805fe06da60a` |
| 2267 | `GambesonShort02_m05_E1` | Worn gambeson | 9.4 | 1019 | `6c9dcdf3-7db0-4272-94d5-939014a6accc` |
| 2268 | `GambesonShort02_m06_E1` | Worn gambeson | 9.4 | 993 | `a65b08f8-5fae-4cf8-ad66-ef70715625b2` |
| 2269 | `GambesonShort02_m07_E1` | Worn gambeson | 9.4 | 993 | `b0d1f5f3-d97a-4b3f-ad3d-1ff6c63e2189` |
| 2270 | `GambesonShort02_m08_E1` | Worn gambeson | 9.4 | 1019 | `35c6c55f-52b9-4644-972c-ffd9d9405113` |
| 2271 | `GambesonShort02_m09_E1` | Worn gambeson | 9.4 | 993 | `0116b44d-972d-43a1-8a59-dfe40b2ae916` |
| 2272 | `GambesonShort02_m10_E1` | Worn gambeson | 9.4 | 1019 | `68335d8b-33ee-4400-a2e0-2fad06b6c4ab` |
| 2273 | `GambesonShort02_m11_E1` | Worn gambeson | 9.4 | 993 | `2f20e7ab-77ae-4c17-be1d-e6f4931769d5` |
| 2274 | `GambesonShort02_m12_E1` | Vagrant's gambeson | 8.1 | 1137 | `d92e8830-0056-4731-84d8-7a4021cf2ab2` |
| 2275 | `GambesonShort03_m01_A4` | Short pourpoint | 14 | 7432 | `ac26f226-5020-4f2e-be67-8748fd5b789e` |
| 2276 | `GambesonShort03_m02_A4` | Short pourpoint | 14 | 7288 | `f96f93ed-3141-4a31-9d3b-eac9f4c1c422` |
| 2277 | `GambesonShort03_m03_A4` | Short pourpoint | 14 | 7336 | `c9623550-0d5c-44db-a3af-3ca76a4e18e7` |
| 2278 | `GambesonShort03_m04_A4` | Short pourpoint - black | 12.1 | 8195 | `d546030a-5ae8-4bf6-8f48-1f99ea85fea0` |
| 2279 | `GambesonShort03_m05_A4` | Short pourpoint | 14 | 7432 | `b6e14db7-5210-45d2-97f2-236ad6805e3a` |
| 2280 | `GambesonShort03_m06_A4` | Short pourpoint | 14 | 7432 | `b26e6866-c903-4238-9f64-24eca84fc34a` |
| 2281 | `GambesonShort03_m07_A4` | Short pourpoint | 14 | 7432 | `f1bfd1f3-c5e8-4b4a-93b1-ddd6293a3e23` |
| 2282 | `GambesonShort03_m08_A4` | Short pourpoint | 14 | 7432 | `49b40181-7b44-4e9f-824c-6c71b061a8d0` |
| 2283 | `GambesonShort03_m09_A4` | Short pourpoint | 14 | 7144 | `861e1fd9-346a-428b-87a2-406c35649b55` |
| 2284 | `GambesonShort03_m10_A4` | Short pourpoint | 14 | 7144 | `34249f9e-e0b2-4bd2-a462-770dacda5833` |
| 2285 | `GambesonShort03_mBergovCaptured_A2` | A suspicious bag | 10.8 | 3167 | `4ab86b39-e094-4737-beda-5cbd29d6f65a` |
| 2286 | `GambesonShort04_m01_C3` | Short aketon | 12.1 | 4013 | `3cea4901-cce2-4582-b4a0-c208df45cd53` |
| 2287 | `GambesonShort04_m02_C3` | Short aketon | 12.1 | 4013 | `6f275925-deff-47ba-8bd6-68ac4ce1c6ed` |
| 2288 | `GambesonShort04_m03_C3` | Short aketon | 12.1 | 4013 | `3462cc25-3ff2-42c9-92ca-05022ff6a11e` |
| 2289 | `GambesonShort04_m04_C3` | Short aketon | 12.1 | 4013 | `0658b976-5789-4349-ad70-10042b84e870` |
| 2290 | `GambesonShort04_m05_C3` | Robber baron's aketon | 10 | 5288 | `072b4325-debc-40fc-bd69-db7823043ae8` |
| 2291 | `GambesonShort04_m06_C3` | Short aketon | 12.1 | 3933 | `89c9a049-c9af-4454-a2be-d7abb468ca6a` |
| 2292 | `GambesonShort04_m07_C3` | Short aketon | 12.1 | 4013 | `0aba49a1-bffe-460b-bcc0-781654d79ac1` |
| 2293 | `GambesonShort04_m08_C3` | Short aketon | 12.1 | 3933 | `5c56aabe-bed1-46d0-b6ac-cf9ba307a8d9` |
| 2294 | `GambesonShort04_m09_C3` | Short aketon | 12.1 | 4013 | `dd527318-efd1-4148-ac08-c4dd9426b5eb` |
| 2295 | `GambesonShort04_m10_C3` | Short aketon | 12.1 | 4182 | `e72e4dcc-07b1-4117-bd05-1a635614faa1` |
| 2296 | `GambesonShort04_m11_C3` | Short aketon | 12.1 | 4013 | `ff5d03fd-5e8f-4e4d-b5e7-8b19b6274c32` |
| 2297 | `GambesonShort04_m12_C3` | Short aketon | 12.1 | 3933 | `cef28cd9-71ce-4279-8aa2-d2be83a8ab23` |
| 2298 | `GambesonShort_placeholder` | A suspicious bag | 0.5 | 1300 | `4cfb5e34-e8ce-2c62-18ab-05074b0551bc` |
| 2299 | `GambesonShortIstvan_m01` | Short aketon | 13.4 | 5683 | `a55966fa-0937-40bb-aaae-fa0bccc7180a` |
| 2300 | `GambesonShortIstvan_mNoScabbard` | Short aketon | 12.1 | 4293 | `91e271bc-be16-49ea-af14-ecf97a5033d4` |
| 2301 | `GambesonShortKomar_m01` | Short aketon | 12.1 | 4082 | `67129f45-fbc4-4547-be4f-8262bc636a13` |
| 2302 | `GambesonShortKomar_mNoBags` | Short aketon | 12.1 | 4082 | `bccd20de-eb52-4cd5-bd8c-27ede5330bb7` |
| 2303 | `GambesonShortKubyenka_m01` | Short aketon | 12.1 | 4082 | `b4c5fae6-1289-4456-ba60-b5de7da55dd8` |
| 2304 | `GambesonShortKubyenka_mNoDagger` | Short aketon | 12.1 | 4082 | `e4d2f1c7-1332-4c7b-bde8-219fe44a4bba` |
| 2305 | `GambesonShortLichtenstein_m01` | Short aketon | 12.1 | 4082 | `32c601fe-12ce-4449-b044-f473507994f7` |
| 2306 | `GambesonShortSamuel_m01` | Short aketon | 12.1 | 4082 | `5d603bea-3062-4d38-80d1-d3642dbfa2ff` |
| 2309 | `Gauntlet_placeholder` | A suspicious bag | 9.6 | 770 | `1558b620-d1bb-4ee1-8a36-32c0c91d7dcd` |
| 2310 | `Gauntlets01_m01_C3` | Hourglass gauntlets | 3 | 22048 | `63eff267-424a-43fd-a5ec-132c89c286f0` |
| 2311 | `Gauntlets01_m02_C3` | Hourglass gauntlets | 3 | 22048 | `916a6a5e-a1c1-4db7-b573-909c139a1b52` |
| 2312 | `Gauntlets01_m03_C3` | Hourglass gauntlets | 3 | 22120 | `d1926fdf-d10e-4ab5-9531-2deeff6f8d07` |
| 2313 | `Gauntlets01_mAlberich` | Hourglass gauntlets | 3 | 22048 | `b205fa9c-02b1-4821-821c-d36fd63a3584` |
| 2314 | `Gauntlets02_m01_B4` | Milanese gauntlets | 3.2 | 26425 | `f5c11ece-238d-4463-88ec-1f51c80c1bcf` |
| 2315 | `Gauntlets02_m01_B4_khTournament_Henry` | Tournament gauntlets | 3 | 10677 | `b9fa2db6-ee6e-4976-9449-24ae92916789` |
| 2316 | `Gauntlets02_m02_B4` | Milanese gauntlets | 3.2 | 26425 | `d47478d2-ab3d-4224-812f-696e71765206` |
| 2317 | `Gauntlets02_m03_B4` | Milanese gauntlets | 3.2 | 34478 | `2f88924c-f968-4d0c-80d2-ed8e63787783` |
| 2318 | `Gauntlets03_m01_D1` | Chainmail gauntlets | 2.5 | 6622 | `6c7ea4d3-011f-4052-a23e-3349cc54d56c` |
| 2319 | `Gauntlets03_m02_D1` | Chainmail gauntlets | 2.5 | 6622 | `e9f59d27-ee5f-4a7e-8341-643854166285` |
| 2320 | `Gauntlets03_m03_D1` | Chainmail gauntlets | 2.5 | 6670 | `54933fe9-c9e1-43af-b0bf-8595fc3bad76` |
| 2321 | `Gauntlets04_m01_C2` | Noble's gauntlets | 2.8 | 14577 | `3d03fd46-32cb-4a9c-a7a1-f159a5f926d0` |
| 2322 | `Gauntlets04_m02_C2` | Noble's gauntlets | 2.8 | 14577 | `38c34f78-cfa0-40c9-a94e-5e04dcf35608` |
| 2323 | `Gauntlets04_m03_C2` | Noble's gauntlets | 2.8 | 14794 | `b3a22213-cc7a-4d5f-afe3-728fa0f12231` |
| 2324 | `Gauntlets04_m04_C2` | Noble's gauntlets | 2.8 | 14794 | `a31f66aa-6726-449c-83d0-0bc34a0a108e` |
| 2325 | `Gauntlets04_m05_C2` | Noble's gauntlets | 2.8 | 14577 | `74047697-1962-4284-8b5f-c9f93c2716b7` |
| 2326 | `Gauntlets04_m06_C2` | Noble's gauntlets | 2.8 | 14650 | `4835b390-05a4-42d8-a77d-d4fb30ea03d9` |
| 2327 | `Gauntlets04_m07_C2` | Noble's gauntlets | 2.8 | 14577 | `d49ae7bb-c6d5-4f7c-8513-3eb18176c97a` |
| 2328 | `Gauntlets05_m01_A5` | Nuremberg gauntlets | 3.5 | 56928 | `09ae6cbc-77d1-4686-801e-871b49440d7d` |
| 2329 | `Gauntlets05_m02_A5` | Nuremberg gauntlets | 3.5 | 55844 | `17f0d18c-c55c-4570-8710-410fe0238792` |
| 2330 | `Gauntlets05_m03_A5` | Nuremberg gauntlets | 3.5 | 54577 | `89a60e7b-f80e-4999-8560-fa018737deae` |
| 2331 | `Gauntlets05_mAulitz` | Nuremberg gauntlets | 3 | 22653 | `b75b94e6-47e1-4202-a2dd-2aaf245d3ea8` |
| 2332 | `Gauntlets05_mBergov` | Nuremberg gauntlets | 3 | 22653 | `cc334dba-2d91-4af9-9c44-ac02bcbb8fec` |
| 2333 | `Gauntlets08_m01_B4` | Brigandine gauntlets | 3.3 | 36960 | `2dd6ea92-4024-4113-97ed-6a23f19b39d9` |
| 2334 | `Gauntlets08_m02_B4` | Brigandine gauntlets | 3.3 | 37337 | `0e62824f-8ef8-488b-a2b1-32a42133fa6d` |
| 2335 | `Gauntlets08_m03_B4` | Brigandine gauntlets | 3.3 | 36960 | `6f31e9ab-7eb3-4fe0-9785-653568eec882` |
| 2336 | `Gauntlets08_m04_B4` | Brigandine gauntlets | 3.3 | 36960 | `a52152b9-16a9-437c-a057-fb719ae424b0` |
| 2337 | `Gauntlets08_m05_B4` | Brigandine gauntlets | 3.3 | 36960 | `1e1d5953-986f-4fd1-8d3b-db2690dddd64` |
| 2338 | `Gauntlets08_m06_B4` | Brigandine gauntlets | 3.3 | 37086 | `40abb1e6-7131-4eee-88a6-c7901ea0aa74` |
| 2339 | `Gauntlets08_mErik` | Brigandine gauntlets | 3 | 22653 | `040945cd-4f2b-476d-a259-61d2b239662f` |
| 2340 | `Gauntlets08_mTwitch` | Warhorse gauntlets | 3.3 | 38107 | `9403ad41-7eea-451b-836f-32ba034ef3bb` |
| 2341 | `GauntletsBrunswig_m01` | Brunswick's gauntlets | 2.8 | 15049 | `c052fb20-9f20-4ebd-8b7f-8ff937ee11b0` |
| 2342 | `GauntletsZizka_m01` | Brigandine gauntlets | 3.3 | 38107 | `99910dfe-2ec7-4943-96a7-0cc27fd3a331` |
| 2343 | `Gloves01_m01_C1` | Pickpocket's gloves | 1 | 1056 | `b128bc50-58da-494a-ba3d-c47d2d044e7c` |
| 2344 | `Gloves01_m02_C1` | Leather gloves | 1 | 1306 | `51d9a001-eb09-4db8-98f0-d23b794c530d` |
| 2345 | `Gloves01_m03_C1` | Leather gloves | 0.9 | 1266 | `c6bb6698-a8ed-469b-a189-7cfb99b7362c` |
| 2346 | `Gloves01_m04_C1` | Leather gloves | 1 | 1430 | `4d0c2c11-1406-4eb9-ae9d-8234da6096f7` |
| 2347 | `Gloves01_m05_C1` | Leather gloves | 1 | 1056 | `2db34fd5-db13-44ce-843d-a794a8077f7e` |
| 2348 | `Gloves01_m06_C1` | Leather gloves | 1 | 1430 | `f26b7c7b-fb22-4fc4-8231-c409d6e3f256` |
| 2349 | `Gloves01_m07_C1` | Leather gloves | 1 | 1430 | `ea9afa9e-6555-45c5-beb3-af3364b6c380` |
| 2350 | `Gloves01_m08_C1` | Leather gloves | 1 | 1056 | `aed4b745-7f15-489a-b7de-0c216c78e888` |
| 2351 | `Gloves02_m01_D3` | Mitts | 1 | 1349 | `4e5c9449-d757-415d-b418-e5276218ee1e` |
| 2352 | `Gloves02_m02_D3` | Mitts | 1 | 1597 | `0531f403-6772-44a6-939d-01a335c0b424` |
| 2353 | `Gloves02_m03_D3` | Mitts | 1 | 1597 | `df8450d8-5850-4d73-b7e0-7444c84d0a6b` |
| 2354 | `Gloves02_m04_D3` | Mitts | 1 | 1349 | `4c93efb9-f7d6-40e7-a3b4-582931cec334` |
| 2355 | `Gloves02_m05_D3` | Mitts | 1 | 1514 | `786efb5a-320e-4c2c-aec8-fc4c8ba2d534` |
| 2356 | `Gloves02_m06_D3` | Mitts | 1 | 1349 | `25bcc85a-0e32-4ac9-851e-ed71f8ce57fc` |
| 2357 | `Gloves02_m07_D3` | Mitts | 1 | 1597 | `98038466-ce31-4924-b188-742c00d36b60` |
| 2358 | `Gloves02_m08_D3` | Mitts | 1 | 1597 | `1296f34d-990b-48ae-aa80-c62d1b2d20fd` |
| 2359 | `Gloves02_mdrowner` | Drowned man's gloves | 1 | 248 | `4dc15378-9506-452e-9cd9-55dfab6a5c77` |
| 2360 | `Gloves05_m01_B2` | Riding gloves | 1 | 1809 | `efaf440b-1fbb-4a05-b013-df7a9d2d570f` |
| 2361 | `Gloves05_m02_B2` | Riding gloves | 1 | 2140 | `c8abe6d0-fbd8-49b2-a8e4-94e892aca6fa` |
| 2362 | `Gloves05_m03_B2` | Riding gloves | 1 | 1809 | `6218183a-25c9-411c-a79e-c31e608f2db8` |
| 2363 | `Gloves05_m04_B2` | Thief's gloves | 0.9 | 3786 | `7af660c5-cf0a-4ee8-ab26-8727dcfd18a8` |
| 2364 | `Gloves05_m05_B2` | Riding gloves | 1 | 1809 | `7c3877fd-c929-4245-a451-2c18ce3b5729` |
| 2365 | `Gloves05_m06_B2` | Riding gloves | 1 | 3920 | `13ec7013-d6ab-4b54-b50d-c44e6ae245a4` |
| 2366 | `Gloves05_m07_B2` | Riding gloves | 1 | 1809 | `946ff824-0e6a-4341-ba4e-5193eac4ebb7` |
| 2367 | `Gloves05_m08_B2` | Riding gloves | 1 | 3920 | `79d777bc-14b9-4073-8cdb-85a94b91ba98` |
| 2368 | `Gloves05_mHanush` | Riding gloves | 1 | 1865 | `a2e150f0-df24-4eea-8891-ea03dea12f8a` |
| 2369 | `Gloves05_mIstvan` | Riding gloves | 2.8 | 15968 | `0fca1819-2818-4c48-bcf9-7e7fadce4bcb` |
| 2370 | `Gloves05_mPros` | Henry's blacksmith gloves | 1 | 1809 | `6fb72436-1a45-4649-b701-47f8c23c98cf` |
| 2371 | `Gloves05_mRadzig` | Riding gloves | 1 | 1865 | `3c3b344a-89ed-472f-bb12-f397e7a055c8` |
| 2372 | `Gloves05_mTwitch` | Cutpurse's gloves | 0.9 | 2001 | `ef7d8509-667b-4d7f-920c-b22fcf646e18` |
| 2373 | `Gloves06_m01_A2` | Noble gloves | 1 | 5206 | `1d8b9715-0d98-411b-80bf-548ce87a071a` |
| 2374 | `Gloves06_m02_A2` | Noble gloves | 1 | 5629 | `8df913e6-3f2f-4a83-85a1-25fec51073f5` |
| 2375 | `Gloves06_m03_A2` | Noble gloves | 1 | 5629 | `bf8d68dd-84f1-4254-8b52-c351e4284bfc` |
| 2376 | `Gloves06_m04_A2` | Noble gloves | 1 | 4360 | `cb94717e-8083-4184-9c97-0f42548ff9e1` |
| 2377 | `Gloves06_m05_A2` | Noble gloves | 1 | 4360 | `d05c4d2c-fbef-4afb-8771-199ebe9885c5` |
| 2378 | `Gloves06_m06_A2` | Noble gloves | 1 | 5629 | `8f867e5d-4044-4775-af05-1bd097cd2667` |
| 2379 | `Gloves06_m07_A2` | Noble gloves | 1 | 5629 | `d7bbf58e-eea6-421f-a514-ac7942d4bc02` |
| 2380 | `Gloves06_m08_A2` | Noble gloves | 1 | 5629 | `a6a525be-f71e-44cd-8797-d5a5e0077c5b` |
| 2381 | `Gloves06_mAbbot_A` | Noble gloves | 0.9 | 2139 | `414f8f5e-ca5a-467f-a10a-4ca1812ea669` |
| 2382 | `Gloves06_mChamberlain_A` | Noble gloves | 0.9 | 2139 | `51b61116-8059-4475-9455-cc73b335ed2b` |
| 2383 | `Gloves06_mLegate` | Legate's gloves | 1 | 4226 | `c69361d6-84d5-4c74-a399-97890561087f` |
| 2384 | `Gloves06_mMurderer` | Noble gloves | 1 | 5206 | `7074fd92-1d1b-4a8d-b672-45b80c5d4e75` |
| 2385 | `Gloves06_mPisek_A` | Noble gloves | 0.9 | 2139 | `e62d37e8-de7a-47b2-9507-2894b3f15889` |
| 2386 | `Gloves06_mRings02_A` | Noble gloves | 0.9 | 2139 | `33bc0d27-08cc-4279-afb6-a672821d1d01` |
| 2387 | `Gloves06_mRings_A` | Noble gloves | 0.9 | 2139 | `2827e566-f38b-4d0b-816a-81fb8baf39a9` |
| 2388 | `Gloves06_mRuthard_A` | Noble gloves | 0.9 | 2139 | `a2e58fdb-0179-4b1b-9299-2252a8c021b7` |
| 2389 | `Gloves07_m01_B` | Master huntsman's gloves | 1 | 1410 | `24e62c1d-a52c-4a07-8cde-cdab9c833adc` |
| 2390 | `Gloves_placeholder` | A suspicious bag | 5.7 | 3781 | `a7054b3a-17e5-418b-ac96-85e19501aa98` |
| 2396 | `Habit01_m01_C` | Cleric habit | 2 | 632 | `ea8f18d9-83ed-4599-ac49-06ee98dbefc6` |
| 2397 | `Habit01_m02_C` | Cleric habit | 2 | 632 | `e9415ffd-f446-4b16-af3b-8e679784f6e3` |
| 2398 | `Habit01_m03_C` | Cleric habit | 2 | 632 | `cfe63209-0745-485d-ad9b-d78d97682a30` |
| 2399 | `Habit01_m04_C` | Cleric habit | 2 | 632 | `bc55caf7-f5f5-4f51-8478-3fe00f2366cc` |
| 2400 | `Habit01_m05_C` | Cleric habit | 2 | 981 | `8490f7fb-7301-4769-801d-6cdd3b1e761f` |
| 2401 | `Habit01_m06_C` | Cleric habit | 2 | 981 | `ebfc4660-4947-4de2-91cf-9a1dfa128f11` |
| 2402 | `Habit02_m01_C` | Lord's overcoat | 2 | 496 | `f9439148-1e80-4d72-99d2-a314f05a2c50` |
| 2403 | `Habit02_m02_C` | Lord's overcoat | 2 | 1397 | `b6704b45-e58d-49e5-a045-b5dbfacd40fb` |
| 2404 | `Habit02_m03_C` | Lord's overcoat | 2 | 1927 | `b7e9b9f3-a128-45f9-885a-076b63df158a` |
| 2405 | `Habit02_m04_C` | Lord's overcoat | 2 | 2410 | `85aa1df6-7bec-4795-af54-b8126d8b55bf` |
| 2406 | `Habit02_m05_C` | Lord's overcoat | 2 | 1397 | `ee6c5367-5eb7-4031-9d67-fa03a836fc95` |
| 2407 | `Habit02_m06_C` | Lord's overcoat | 2 | 496 | `4edb4700-9a8f-4f7d-afd6-43878323fc05` |
| 2408 | `Habit02_mAlbik_C` | Cleric habit | 2 | 1397 | `75e1532d-7ca2-4174-be67-855ad7c1fd51` |
| 2409 | `Habit02_mAlbikNoBags_C` | Cleric habit | 2 | 1397 | `f1bf2cba-5435-4aa8-8322-12b1b5b0e100` |
| 2410 | `Habit02_mChamberlain_C` | Cleric habit | 2 | 1397 | `f9a913dc-2038-4769-b7b6-2101a09a1060` |
| 2411 | `Habit03_m01_C` | Cleric habit | 2 | 1847 | `4032f9a9-a779-4575-bfcb-bfeb80601f35` |
| 2412 | `Habit03_m02_C` | Cleric habit | 2 | 814 | `25f0754b-c6a8-4f9c-9126-d926909002f7` |
| 2413 | `Habit03_m03_C` | Cleric habit | 2 | 496 | `8c541449-a00e-447c-b817-f11abd075f15` |
| 2414 | `Habit03_m04_C` | Cleric habit | 2 | 1847 | `a9ef7321-dc22-47f6-a32d-9ac7baf7dd01` |
| 2415 | `Habit03_m05_C` | Cleric habit | 2 | 814 | `6de6b589-32f1-4626-a69b-293a4a35ff7d` |
| 2416 | `Habit03_m06_C` | Cleric habit | 2 | 496 | `531bff09-3e7a-4678-8c96-be573164591a` |
| 2417 | `Habit03_m07_C` | Cleric habit | 2 | 2731 | `990115a0-70c4-4665-a86d-bd3bc6cc6a88` |
| 2418 | `Habit04_m01_C` | Cleric habit | 2 | 2731 | `a29f72f8-56c2-4cc1-abf6-f21cca49525d` |
| 2419 | `Habit04_mAbbot_C` | Cleric habit | 2 | 2731 | `7a533e93-62d0-4b1e-b4a5-047e6e81becb` |
| 2420 | `Habit04_mHerbalist_C` | Cleric habit | 2 | 2731 | `e8710764-4655-4d87-924a-34280291227b` |
| 2421 | `Habit04_mLibrarian_C` | Cleric habit | 2 | 2731 | `690d09c2-4c51-45e8-8c94-d7928650dec3` |
| 2422 | `Habit05_m01_C` | Cleric habit | 2 | 2731 | `5fe3b579-95b9-4902-ae2a-d03af4fbff24` |
| 2423 | `Habit05_mCustodian_C` | Cleric habit | 2 | 2731 | `95715de0-92d4-4c21-b189-2171147b7d96` |
| 2424 | `Habit05_mElias` | Cleric habit | 2 | 2731 | `46fe17e9-f93e-40fd-a71f-08fe1c401600` |
| 2425 | `Habit05_mInfirmarius_C` | Cleric habit | 2 | 2731 | `f137a4e6-79e1-485c-97d6-4c4d9c8020ad` |
| 2426 | `Habit05_mScribe_C` | Cleric habit | 2 | 2731 | `6a7c97d2-a180-45b2-ba2a-4d9cd4611e51` |
| 2427 | `Habit_placeholder` | A suspicious bag | 7.2 | 664 | `472fbd1f-7749-ca4c-d87e-a0659b5886b8` |
| 2428 | `HabitLegate_m01` | Legate's robe | 2 | 814 | `da3889eb-9733-410b-b606-dd62805b58d5` |
| 2429 | `HabitRabi_m01` | Cleric habit | 2 | 814 | `bab3f816-c19e-4cbb-a91d-229d3b649261` |
| 2437 | `HairCapBrabant_m01` | A suspicious bag | 0 | 770 | `8d09748e-a90e-407d-aa5b-e610e478622a` |
| 2438 | `HairCapLichtenstein_m01` | A suspicious bag | 0 | 171 | `652278ee-c760-4485-aaf3-499817155ab9` |
| 2439 | `HairCapSigismund_m01` | A suspicious bag | 0 | 300 | `6729739a-f0ff-4235-8a58-589d6661b925` |
| 2446 | `HandWrap01_m01_E` | Hand wrap | 0.1 | 17 | `13eccab3-ee46-40e4-b0d1-73f3acde338c` |
| 2447 | `HandWrap01_m02_E` | Hand wrap | 0.1 | 10 | `677f4c8d-8ec3-444e-b650-6ab58804fb13` |
| 2448 | `HandWrap01_m03_E` | Hand wrap | 0.1 | 17 | `243c6ad9-e995-4e40-84cb-07a1a1c6ad6d` |
| 2449 | `HandWrap01_m04_E` | Hand wrap | 0.1 | 10 | `0a218fa9-58c7-4696-b5a3-7954e639dd9e` |
| 2451 | `Harness_placeholder` | A suspicious bag | 0 | 4907 | `dd2d35f2-7078-469b-af26-9afd81248f8c` |
| 2668 | `HorsePadded_placeholder` | A suspicious bag | 1 | 493 | `100baec1-374a-44f2-b901-22a8b7fd7390` |
| 2671 | `horseshoeFarmer` | Farmer's horseshoes | 0.5 | 200 | `549ab26e-df73-43d6-ac9b-f4f74afec67f` |
| 2672 | `horseshoeMilitary` | Knight's horseshoes | 0.5 | 400 | `0faf833f-8e88-40a0-87b8-2669c0e64c03` |
| 2673 | `horseshoeNoble` | Nobleman's horseshoes | 0.5 | 500 | `5ded1ff4-9f81-4179-bb65-f786e6e80560` |
| 2674 | `horseshoeNomad` | Lovarian horseshoes | 0.5 | 800 | `1dd2863e-0793-49ba-bb82-125af6b31ddc` |
| 2675 | `horseshoeRacing` | Racing horseshoes | 0.5 | 1500 | `4934fb15-73c4-4b71-912a-9bab78a53f66` |
| 2676 | `horseshoeSpecial_phantomHorse` | Ghostly horseshoes | 0.5 | 3000 | `651333f0-7ae6-45a1-b9ec-bf0d4701c8e5` |
| 2677 | `horseTrading_cheapBridle` | Damaged leather bridle | 2 | 220 | `505343b8-b5ff-4f47-94d9-470a1977a421` |
| 2678 | `horseTrading_cheapSaddle` | Moglen saddle of poor quality leather | 12.5 | 130 | `bf06d242-4dcb-48e9-bbf1-b6a36f368a57` |
| 2679 | `HoseJoined01_m01_C` | Hose joined | 0.5 | 1001 | `f3aa4492-06fb-4ce3-9e41-784cbac8801f` |
| 2680 | `HoseJoined01_m03_C` | Hose joined | 0.5 | 1284 | `01151dab-bb77-4524-be5f-3bf94b00575f` |
| 2681 | `HoseJoined01_m04_C` | Hose joined | 0.5 | 1190 | `51ca48f5-91ed-42a7-8941-b2666a94ffcb` |
| 2682 | `HoseJoined01_m05_C` | Hose joined | 0.5 | 1001 | `08d82149-af01-48b6-9e72-b3f000da5e5f` |
| 2683 | `HoseJoined01_m06_C` | Hose joined | 0.5 | 1001 | `1299d389-8137-4cc8-97df-da430215d876` |
| 2684 | `HoseJoined01_m07_C` | Hose joined | 0.5 | 1001 | `91056111-bb80-4db3-b63a-a3971129e53b` |
| 2685 | `HoseJoined01_m08_C` | Hose joined | 0.5 | 1190 | `4724c8d8-c049-46bf-a5f3-8bf51ea74828` |
| 2686 | `HoseJoined01_m09_C` | Hose joined | 0.5 | 1001 | `5936461f-a2d3-49c5-9c13-e38c2fe0d6b1` |
| 2687 | `HoseJoined01_m10_C` | Thief's hose | 0.5 | 2059 | `8aae6517-dd6d-4ed1-88d0-eccff5273846` |
| 2688 | `HoseJoined01_m11_C` | Hose joined | 0.5 | 1001 | `8db59cbb-55da-437d-894f-865dd281677d` |
| 2689 | `HoseJoined01_m12_C` | Hose joined | 0.5 | 1284 | `be92b571-d8ec-4bee-a62e-6259fa88446c` |
| 2690 | `HoseJoined01_m13_C` | Hose joined | 0.5 | 1001 | `1b735ceb-6884-4d3f-a785-d0fddbd31653` |
| 2691 | `HoseJoined01_m14_C` | Hose joined | 0.5 | 1001 | `fbea7771-4176-4faf-808e-05777a946fa0` |
| 2692 | `HoseJoined01_m15_C` | Hose joined | 0.5 | 1284 | `9b4e1e48-1572-4748-9390-e0239d96288e` |
| 2693 | `HoseJoined01_mdrowner` | Drowner's hose | 0.5 | 248 | `a2dd8608-b428-4d2c-a676-ab9bbef7bab8` |
| 2694 | `HoseJoined02_m01_B` | Gartered hose | 0.5 | 1756 | `ccd43d26-4668-48db-acd5-82a7226bf5e6` |
| 2695 | `HoseJoined02_m02_B` | Gartered hose | 0.5 | 1756 | `4b371a94-5a03-48b5-82a6-3dd22ac4caea` |
| 2696 | `HoseJoined02_m03_B` | Gartered hose | 0.5 | 1756 | `91b47469-d884-40c2-b41b-9a9ca7dac595` |
| 2697 | `HoseJoined02_m04_B` | Gartered hose | 0.5 | 1756 | `91b0c4fd-c4e8-4695-8ea4-2cb0095dc68e` |
| 2698 | `HoseJoined02_m05_B` | Gartered hose | 0.5 | 1630 | `deef379a-d3eb-445f-ab23-3c4f882f9b5c` |
| 2699 | `HoseJoined02_m06_B` | Gartered hose | 0.5 | 1756 | `026f24e9-9836-47d8-ab42-bd8f9b2fc73e` |
| 2700 | `HoseJoined02_m07_B` | Gartered hose | 0.5 | 2119 | `1786879c-080f-4dcc-b5b2-3ef1dd29d5e4` |
| 2701 | `HoseJoined02_m08_B` | Gartered hose | 0.5 | 2119 | `11a20e87-6b4b-4894-99c5-fcb19178ee81` |
| 2702 | `HoseJoined02_m09_B` | Gartered hose | 0.5 | 1630 | `89e30a08-6966-48ee-aa7a-b8b4922fbf07` |
| 2703 | `HoseJoined02_m10_B` | Gartered hose | 0.5 | 1377 | `efdf02d6-6951-4854-a50d-d841bc23f0e1` |
| 2704 | `HoseJoined02_m11_B` | Gartered hose | 0.5 | 1377 | `7a3ca93b-262b-42d4-b371-e82b2cfe511c` |
| 2705 | `HoseJoined02_m12_B` | Courtier's hose | 0.5 | 2283 | `0c6313b1-8fe6-4534-9f4d-24c3a3815c56` |
| 2706 | `HoseJoined02_m13_B` | Gartered hose | 0.5 | 2119 | `43f9b16e-c585-4b5d-9ab7-c9d04241a0bc` |
| 2707 | `HoseJoined02_m14_B` | Gartered hose | 0.5 | 2119 | `8deddb7c-8ba6-42ea-87c8-c0cacf8535ed` |
| 2708 | `HoseJoined02_m15_B` | Gartered hose | 0.5 | 1645 | `0394d9ae-f96e-4814-9e8f-363a4e4ed282` |
| 2709 | `HoseJoined02_m16_B` | Gartered hose | 0.5 | 1756 | `46920fd0-cc38-41dd-bcfb-958b134ee717` |
| 2710 | `HoseJoined02_m17_B` | Gartered hose | 0.5 | 2119 | `e0ac2cd5-7407-4710-97e1-cb26387ce1e7` |
| 2711 | `HoseJoined02_m18_B` | Gartered hose | 0.5 | 1377 | `2cb59173-41e9-470f-bf65-efabee28cc9a` |
| 2712 | `HoseJoined02_m19_B` | Gartered hose | 0.5 | 2119 | `9e5875bd-2b99-4483-9181-15f7dd08e144` |
| 2713 | `HoseJoined02_m20_B` | Gartered hose | 0.5 | 2119 | `2b62bd02-fead-4601-9aff-f4020dee293b` |
| 2714 | `HoseJoined02_m21_B` | Gartered hose | 0.5 | 1756 | `3b97b6ed-09dd-428c-ad6b-b0888ac0ec1b` |
| 2715 | `HoseJoined02_mBergovCaptured` | Gartered hose | 0.5 | 1754 | `03096c7e-5a03-4666-8d96-5736e5e37565` |
| 2716 | `HoseJoined02_mGottfried` | Gartered hose | 0.5 | 1781 | `6dc64d62-9ea3-49ec-8ec8-b3e9a367821b` |
| 2717 | `HoseJoined02_mJobst_B` | Gartered hose | 0.5 | 1377 | `bfaab83e-2b10-492c-b357-6c66154e5312` |
| 2718 | `HoseJoined02_mKomar` | Gartered hose | 0.5 | 624 | `3d7385bb-b48f-4ced-8414-c0c94920e8f0` |
| 2719 | `HoseJoined02_mLegate` | Legate's hose | 0.5 | 4097 | `f8f75f14-085c-407c-abc0-2977d4aa3624` |
| 2720 | `HoseJoined02_mOderin_B` | Gartered hose | 0.5 | 1630 | `43ee0517-5498-4d41-8d84-d99396ee427b` |
| 2721 | `HoseJoined02_mPainter` | Gartered hose | 0.5 | 1781 | `5a64a0a1-2795-4f52-b52a-5ff0ddd25412` |
| 2722 | `HoseJoined02_mPattern01_B` | Tied jester's hose | 0.5 | 1756 | `0c6cd742-18d7-496a-8b0b-f4735f27cbf1` |
| 2723 | `HoseJoined02_mPattern01_m01_B` | Tied jester's hose | 0.5 | 1756 | `7e94e8d4-c0d5-4713-bf06-8bfcb72afc88` |
| 2724 | `HoseJoined02_mPattern02_B` | Tied jester's hose | 0.5 | 1756 | `9e55c53f-696f-438f-a492-e1649becb68c` |
| 2725 | `HoseJoined02_mPattern03_B` | Tied jester's hose | 0.5 | 1756 | `09f61f5c-e377-4c7c-a8cc-2732a6741050` |
| 2726 | `HoseJoined02_mPisek_B` | Gartered hose | 0.5 | 1630 | `d5fdb90e-9dbc-4d18-801c-14c57fe4b068` |
| 2727 | `HoseJoined02_mSamuel` | Gartered hose | 0.5 | 1190 | `a32d3805-ac78-4eee-8aab-d60606955e8a` |
| 2728 | `HoseJoined02_mTwitch_B` | Cutpurse's hose | 0.5 | 1842 | `80cb6275-db4a-46a1-91d3-f24a5f4dfe88` |
| 2729 | `HoseJoined_placeholder` | A suspicious bag | 1 | 55 | `4521fad8-d91c-9b20-2f03-9dccdf00e48e` |
| 2730 | `HoseJoinedCapon_m01` | Gartered hose | 0.5 | 1630 | `2681f0d0-06e7-4ef2-967b-6cb77dabb213` |
| 2731 | `HoseJoinedDevil_m01` | Gartered hose | 0.5 | 1630 | `7eb5dab1-5efb-486d-b3f4-e077b30ddbe6` |
| 2732 | `HoseJoinedSigismund_m01` | Gartered hose | 0.5 | 1630 | `46df2226-b623-4f29-a41b-f454310bbb56` |
| 2733 | `HoseLoose01_m01_C` | Loose hose | 0.5 | 422 | `7c278c7d-7e5c-4329-a3c7-695974e970f0` |
| 2734 | `HoseLoose01_m02_C` | Loose hose | 0.5 | 165 | `bcec9782-14cd-48be-8979-476a0763e0eb` |
| 2735 | `HoseLoose01_m03_C` | Loose hose | 0.5 | 1092 | `04bdbf37-e92d-45c5-b365-21983f4f13e0` |
| 2736 | `HoseLoose01_m04_C` | Loose hose | 0.5 | 165 | `3f1553ae-e22d-4472-93e4-caaf782a166e` |
| 2737 | `HoseLoose01_m05_C` | Loose hose | 0.5 | 165 | `51fff1e3-af18-4361-b86e-ed48bb6863e7` |
| 2738 | `HoseLoose01_m06_C` | Loose hose | 0.5 | 165 | `e471be91-1344-46d0-987a-b706586055d0` |
| 2739 | `HoseLoose01_m07_C` | Loose hose | 0.5 | 551 | `7203871d-9f36-4515-95a9-fc5bf8fb0855` |
| 2740 | `HoseLoose01_m08_C` | Loose hose | 0.5 | 551 | `c40e9a9b-9745-42ff-be6d-eef9d2f8f744` |
| 2741 | `HoseLoose01_m09_C` | Loose hose | 0.5 | 551 | `4658ee9c-1842-483b-afe2-3a2cc6325e8c` |
| 2742 | `HoseLoose01_m10_C` | Loose hose | 0.5 | 165 | `d53af275-3210-421e-9dbf-c2bbadcc492f` |
| 2743 | `HoseLoose01_mUher_C` | Loose hose | 0.5 | 422 | `632f63b1-27c1-4cf9-b1e2-5bee030ae65e` |
| 2744 | `HoseLoose_placeholder` | A suspicious bag | 1 | 1590 | `43e02509-f02b-6618-b09e-9110c1fbd6a4` |
| 2745 | `HoseLooseMusa_m01` | Loose hose | 0.5 | 422 | `9b7869d7-d4a9-4979-87d2-52bea6440be8` |
| 2746 | `HoseMail_placeholder` | A suspicious bag | 1 | 209 | `4e5d50ee-d51e-9d3a-28a5-37eea670fcb6` |
| 2747 | `HosePadded_placeholder` | A suspicious bag | 1 | 350 | `4eb2b9eb-e59d-2366-90bf-75e936b4e9a2` |
| 2748 | `HoseSeparate01_m01_D` | Simple hose | 0.5 | 796 | `59705738-4e0d-4282-b2f1-d01565f85dc1` |
| 2749 | `HoseSeparate01_m01_E` | Simple hose | 0.5 | 331 | `ec462e53-eff1-4ea7-a9c6-02021f2fddfd` |
| 2750 | `HoseSeparate01_m02_D` | Simple hose | 0.5 | 733 | `121c90c7-3543-4078-9360-94977d2e16ec` |
| 2751 | `HoseSeparate01_m03_D` | Simple hose | 0.5 | 733 | `6356eaac-e97e-42e6-a736-18ebd8dffe5f` |
| 2752 | `HoseSeparate01_m03_E` | Simple hose | 0.5 | 407 | `ddfa57a9-39f0-4660-a673-fe60825f5f98` |
| 2753 | `HoseSeparate01_m04_D` | Simple hose | 0.5 | 733 | `5cb3676d-3bf5-4b1a-ae3c-16b0c970a736` |
| 2754 | `HoseSeparate01_m05_D` | Simple hose | 0.5 | 733 | `d4ade1cb-79dd-41a7-8d72-7bd88ec2e0d4` |
| 2755 | `HoseSeparate01_m06_D` | Vagrant's hose | 0.5 | 642 | `7f0bddf1-0202-4328-9512-5254a68a0211` |
| 2756 | `HoseSeparate01_m07_D` | Simple hose | 0.5 | 579 | `db2b0d9a-9cd2-43ab-a675-9e2030776a9b` |
| 2757 | `HoseSeparate01_m08_D` | Simple hose | 0.5 | 579 | `eb878a10-d68f-470c-b1e0-f89ed7f49d0b` |
| 2758 | `HoseSeparate01_m09_D` | Simple hose | 0.5 | 796 | `91e17195-0d9f-4373-ab2a-aed59193ac2d` |
| 2759 | `HoseSeparate01_m10_D` | Simple hose | 0.5 | 1026 | `f4830492-15e2-44e9-abec-fe4eb6879ab8` |
| 2760 | `HoseSeparate01_m11_D` | Simple hose | 0.5 | 796 | `806c81cc-2959-4a5a-9644-40174d336f4b` |
| 2761 | `HoseSeparate01_m12_D` | Simple hose | 0.5 | 733 | `123f4340-b20d-4ea4-ab12-08c043906520` |
| 2762 | `HoseSeparate01_m13_D` | Simple hose | 0.5 | 579 | `1e528899-15f8-4b00-a60a-16aaffe5df5d` |
| 2763 | `HoseSeparate01_m14_D` | Simple hose | 0.5 | 579 | `346c9d81-aae9-4e28-865d-f76ac754e801` |
| 2764 | `HoseSeparate01_m15_D` | Simple hose | 0.5 | 1026 | `e2d6e929-061b-496f-a9de-16489f90e550` |
| 2765 | `HoseSeparate01_m16_D` | Simple hose | 0.5 | 579 | `4a8e9921-fdc0-4eb1-9607-ecf52ef374c7` |
| 2766 | `HoseSeparate01_m17_D` | Simple hose | 0.5 | 1026 | `d75895df-da01-4ac8-b9b8-64c66baac8b4` |
| 2767 | `HoseSeparate01_m18_D` | Simple hose | 0.5 | 733 | `62e8b3b7-5cfb-47a9-b76b-866d736220ee` |
| 2768 | `HoseSeparate01_m19_D` | Simple hose | 0.5 | 579 | `8693b7c4-27e7-4b4e-99ac-44cb415d2ac7` |
| 2769 | `HoseSeparate01_m20_D` | Simple hose | 0.5 | 796 | `97aeb82a-cba6-46c1-8208-ab043db41603` |
| 2770 | `HoseSeparate01_m21_D` | Master huntsman's hose | 0.5 | 579 | `6035b2a6-cad7-4067-b0ff-d98f8bd2951f` |
| 2771 | `HoseSeparate01_mBrabant` | Plain troubadours' hose | 0.5 | 1456 | `ac032cfa-5a67-46e6-8d85-25df71e8dfcf` |
| 2772 | `HoseSeparate01_mHanush` | Plain troubadours' hose | 0.5 | 1456 | `f3bf351b-d625-44f9-ad9a-db91cf523b4d` |
| 2773 | `HoseSeparate01_mPattern01_D` | Plain troubadours' hose | 0.5 | 1026 | `69d340fd-34bb-4b03-9796-00326060eb23` |
| 2774 | `HoseSeparate01_mPattern01_m01_D` | Plain troubadours' hose | 0.5 | 1026 | `a9a69e72-4ee6-4e0a-9439-e617675e52e6` |
| 2775 | `HoseSeparate01_mPattern02_D` | Plain troubadours' hose | 0.5 | 1026 | `6919b54e-6f77-44a3-9960-fc33973fae8c` |
| 2776 | `HoseSeparate01_mPattern02_m01_D` | Plain troubadours' hose | 0.5 | 1026 | `c7007d1f-8422-4307-b043-6d797a3fc6aa` |
| 2777 | `HoseSeparate01_mPattern03_D` | Plain troubadours' hose | 0.5 | 1026 | `018697e5-48cb-4f20-8789-2411f30647bf` |
| 2778 | `HoseSeparate01_mPattern03_m01_D` | Plain troubadours' hose | 0.5 | 1026 | `4099e298-3599-498b-942a-76716447c100` |
| 2779 | `HoseSeparate01_mPattern03_m02_D` | Plain troubadours' hose | 0.5 | 1026 | `be0df5ee-4d63-40fa-ae70-8938638547c1` |
| 2780 | `HoseSeparate04_m01_E` | Beggar's hose | 0.5 | 331 | `993d563a-7a0b-46d9-8aba-5a9d689bfa03` |
| 2781 | `HoseSeparate04_m02_E` | Beggar's hose | 0.5 | 331 | `b173b837-5ee6-4b16-b843-b72eae1a1ce6` |
| 2782 | `HoseSeparate04_m03_E` | Pickpocket's hose | 0.5 | 455 | `a63c1f3b-9eb1-4a6b-86dc-44691bbe8508` |
| 2783 | `HoseSeparate04_m04_E` | Beggar's hose | 0.5 | 407 | `e43f71ad-3e55-4648-9be9-1e90b1e68e45` |
| 2784 | `HoseSeparate04_m05_E` | Beggar's hose | 0.5 | 407 | `1370ebdf-d2a6-44fb-9c57-dd3ccee5315b` |
| 2785 | `HoseSeparate04_m06_E` | Beggar's hose | 0.5 | 407 | `d03ab313-df4c-4073-a58b-7e6ebe615072` |
| 2786 | `HoseSeparate04_m07_E` | Beggar's hose | 0.5 | 407 | `48e9a193-57c5-4f65-9692-f85d8abc07b7` |
| 2787 | `HoseSeparate04_m08_E` | Beggar's hose | 0.5 | 331 | `7ef3972c-8441-4ac4-9927-102ddcfd6e32` |
| 2788 | `HoseSeparate04_m09_E` | Beggar's hose | 0.5 | 382 | `554452f0-f7c9-4589-bfbf-d457cfab741b` |
| 2789 | `HoseSeparate04_m10_E` | Beggar's hose | 0.5 | 331 | `de37871b-b7e8-4d27-954e-6bb83d67df1b` |
| 2790 | `HoseSeparate04_m11_E` | Beggar's hose | 0.5 | 331 | `bf588802-3f31-4394-8033-e2f393767c00` |
| 2791 | `HoseSeparate04_m12_E` | Beggar's hose | 0.5 | 407 | `256874a1-0e08-4ee3-8bf4-837015e711e1` |
| 2792 | `HoseSeparate04_m13_E` | Beggar's hose | 0.5 | 331 | `60820b83-0b08-4c25-9598-1693740c494d` |
| 2793 | `HoseSeparate04_m14_E` | Beggar's hose | 0.5 | 407 | `31ddd7b8-0b3a-4628-8d04-4350c50cbafe` |
| 2794 | `HoseSeparate05_m01_D` | Miner hose | 0.5 | 579 | `21e8216b-c03c-4e5f-a605-b4ef5f46abda` |
| 2795 | `HoseSeparate05_m02_D` | Miner hose | 0.5 | 579 | `4529e983-fbeb-4c12-8279-ecc089f0ec3f` |
| 2796 | `HoseSeparate05_m03_D` | Miner hose | 0.5 | 733 | `c32d3beb-2aaa-4178-ad97-31420d4d5555` |
| 2797 | `HoseSeparate05_m04_D` | Miner hose | 0.5 | 733 | `435331ad-edbb-4007-9738-3a81d7ea39c0` |
| 2798 | `HoseSeparate05_m05_D` | Miner hose | 0.5 | 733 | `0cc4d53d-0c83-417a-8ffa-b8f1407ececd` |
| 2799 | `HoseSeparate05_m06_D` | Miner hose | 0.5 | 579 | `4dc1302d-3a53-4e21-90a5-7c2fcd4c333c` |
| 2800 | `HoseSeparate05_m07_D` | Miner hose | 0.5 | 579 | `9d8239a9-185f-443d-be7a-33249be68126` |
| 2801 | `HoseSeparate05_m08_D` | Miner hose | 0.5 | 579 | `4c2b02a0-eb06-4bb3-984b-50f3299238b4` |
| 2802 | `HoseSeparate05_m09_D` | Miner hose | 0.5 | 579 | `11860e3a-0c7d-431d-a978-b49db53fbd95` |
| 2803 | `HoseSeparate05_m10_D` | Miner hose | 0.5 | 579 | `d88847ce-97fb-4754-922c-f396993d93f2` |
| 2804 | `HoseSeparate05_m11_D` | Miner hose | 0.5 | 733 | `f16b96b8-3895-467a-9770-21fd8effe24c` |
| 2805 | `HoseSeparate05_m12_D` | Miner hose | 0.5 | 733 | `d6f182bd-1316-46f8-948f-24b857cf4c51` |
| 2806 | `HoseSeparate05_m13_D` | Miner hose | 0.5 | 579 | `a904d61c-58bc-43a6-8f59-2be813f7eeaa` |
| 2807 | `HoseSeparate05_m14_D` | Miner hose | 0.5 | 733 | `bead66ce-c802-4544-b037-85c61506d901` |
| 2808 | `HoseSeparate05_mBurned` | Miner hose | 0.5 | 733 | `4f3c374e-63c4-4267-90e5-2b1fb3419768` |
| 2809 | `HoseSeparate_placeholder` | A suspicious bag | 1 | 504 | `a166eff6-8dff-462b-bae0-3ed476a90fc8` |
| 2836 | `Kafka_Cap33_m06_B` | Master Raven's hat | 0.5 | 690 | `ffa3a545-7389-4f6f-bda4-ad0c2c6a5996` |
| 2886 | `KettleHat_placeholder` | A suspicious bag | 3 | 1225 | `46a16aaa-5419-94da-7a9b-104b41fb25b1` |
| 2903 | `kocovnickaCest_amulet` | Voivode's amulet | 0 | 1221 | `320ec2b7-af1e-4201-97cf-c8a8a8676027` |
| 2905 | `kocovnickaCest_marikasScarf` | Marika's scarf | 0.2 | 362 | `6f41a1df-74a8-4bf2-9a70-16a9e6dc47a1` |
| 2912 | `korenarkaZachrana_pavelnasNecklace` | Pavlena's necklace | 0 | 500 | `bb34c92e-505b-4a48-bd95-652ce458d876` |
| 2919 | `kovaniKatuvSleh_fakeGamblerNoose` | Hanged man's noose | 0.3 | 120 | `2d5e420c-3678-4cc1-a7d1-6d585dbf2d1b` |
| 2922 | `kovaniKatuvSleh_magicHorseshoe` | Ghostly horseshoe | 0.5 | 600 | `651333f0-36d1-4321-975f-bc7833a773eb` |
| 2950 | `kovaniZavodniPodkovy_caulkinHorseshoe` | Spiked horseshoes | 1 | 450 | `22799e4c-1489-44b1-807f-6bfa3df47425` |
| 2987 | `KucharskaKniha_medailon` | St. Katherine's medallion | 0 | 1221 | `abe9eb98-a43c-457a-9bd6-92d0ea455526` |
| 3015 | `LegsBrigandine01_m01_D2` | Old brigandine legs | 10 | 16556 | `3b912b8e-3669-43e6-a53f-8136b7ae3e99` |
| 3016 | `LegsBrigandine01_m02_D2` | Old brigandine legs | 10 | 16880 | `48bd6984-747d-4ae3-9489-666a2bdcd66c` |
| 3017 | `LegsBrigandine01_m03_D2` | Old brigandine legs | 10 | 16556 | `263e6aa0-cffd-4c30-87ea-98e3fcaa4dc7` |
| 3018 | `LegsBrigandine01_m04_D2` | Old brigandine legs | 10 | 16556 | `8472dd03-91d6-4496-a92e-e6e9baaa46ba` |
| 3019 | `LegsBrigandine01_m05_D2` | Old brigandine legs | 10 | 16556 | `0888180c-8f9c-4781-8eb1-b9f1300951e5` |
| 3020 | `LegsBrigandine01_m06_D2` | Old brigandine legs | 10 | 16556 | `f7bcdadb-de2f-4576-b84f-474c2a56804f` |
| 3021 | `LegsBrigandine01_m07_D2` | Old brigandine legs | 10 | 16556 | `91f76dc9-7d86-4fd3-b4f0-e518ca6c342e` |
| 3022 | `LegsBrigandine01_m08_D2` | Old brigandine legs | 10 | 16556 | `195dd5c2-7608-42c2-93d6-962bc17883cb` |
| 3023 | `LegsBrigandine01_mMarkvartDream` | Old brigandine legs | 10 | 16556 | `0ac7819f-5061-48ab-a040-8614b34376ab` |
| 3024 | `LegsBrigandine03_m01_B4` | Noble brigandine legs | 11.8 | 41322 | `25221b9b-12fa-47ef-b696-b9a00412f015` |
| 3025 | `LegsBrigandine03_m02_B4` | Noble brigandine legs | 11.8 | 40673 | `b90f82a2-f590-4564-af7b-f5f5bd44bc1c` |
| 3026 | `LegsBrigandine03_m03_B4` | Noble brigandine legs | 11.8 | 40890 | `b8f6cbf1-6cab-4abb-8eb7-8488a95839f2` |
| 3027 | `LegsBrigandine03_m04_B4` | Noble brigandine legs | 11.8 | 40673 | `90bd14a2-f6a1-4853-8451-e3fb90bb7888` |
| 3028 | `LegsBrigandine03_m05_B4` | Noble brigandine legs | 11.8 | 40673 | `d267aa34-a039-42fd-b5d4-f306c118e4e7` |
| 3029 | `LegsBrigandine03_m06_B4` | Noble brigandine legs | 11.8 | 40673 | `5f7b7f74-bea6-4c7b-9861-5ac6f06f1d5c` |
| 3030 | `LegsBrigandine03_m07_B4` | Noble brigandine legs | 11.8 | 40890 | `a6fdf67f-f133-429d-a06b-ef4380ba5c35` |
| 3031 | `LegsBrigandine03_m08_B4` | Noble brigandine legs | 11.8 | 40673 | `12af8d23-d6ae-4da2-b109-0394d04dcf50` |
| 3032 | `LegsBrigandine03_m09_B4` | Noble brigandine legs | 11.8 | 40673 | `1e803030-4c52-4caa-b4de-d8bce3a888d7` |
| 3033 | `LegsBrigandine03_m10_B4` | Noble brigandine legs | 11.8 | 41322 | `650c2205-584e-49bc-a113-71ee23b4a59e` |
| 3034 | `LegsBrigandine03_m11_B4` | Noble brigandine legs | 11.8 | 40673 | `0bab0244-9806-4dd0-8e39-ef1f2331e96c` |
| 3035 | `LegsBrigandine03_m12_B4` | Noble brigandine legs | 11.8 | 40673 | `dca5b92f-17ee-4790-b1d0-7e1fca8e30ae` |
| 3036 | `LegsBrigandine03_mSamuel` | Noble brigandine legs | 11.2 | 31450 | `d5e769f1-e3af-4b65-a2f1-d5b3ec952d9f` |
| 3037 | `LegsBrigandine03_mTwitch` | Warhorse plate leg armour | 11.2 | 31450 | `954afcac-c0ab-41ce-9e37-6a7fb4e55b1e` |
| 3038 | `LegsBrigandine04_m01_A5` | Laminar knight legs | 13 | 74824 | `b405d47f-2728-4e0c-8b6f-82ffcd4c0280` |
| 3039 | `LegsBrigandine04_m02_A5` | Laminar knight legs | 13 | 74466 | `8a30d58f-67f7-49db-90c4-38d6523899a7` |
| 3040 | `LegsBrigandine04_m03_A5` | Laminar knight legs | 13 | 74824 | `4d269478-7061-46da-bf62-08917cdc73cf` |
| 3041 | `LegsBrigandine04_m04_A5` | Laminar knight legs | 13 | 74466 | `a8b22da0-e42e-4d79-abe7-52e6eebad6eb` |
| 3042 | `LegsBrigandine04_m05_A5` | Laminar knight legs | 13 | 75539 | `c9cce9dc-c179-4e83-b159-3ce5ce79ee90` |
| 3043 | `LegsBrigandine04_m06_A5` | Laminar knight legs | 13 | 74466 | `2c3dd3de-a5a0-4a64-b325-b3d1f95b2198` |
| 3044 | `LegsBrigandine04_m07_A5` | Laminar knight legs | 13 | 74466 | `2c8f7096-5b0b-4d9b-a50c-b1557f24e45a` |
| 3045 | `LegsBrigandine04_m08_A5` | Laminar knight legs | 13 | 74466 | `d2d624af-1f0a-4fff-a521-fc54d90f996f` |
| 3046 | `LegsBrigandine04_m09_A5` | Laminar knight legs | 13 | 75539 | `7d0d48fd-bfdf-445d-8c74-8860fb2e667d` |
| 3047 | `LegsBrigandine04_m10_A5` | Laminar knight legs | 13 | 74466 | `3b4ce858-6133-49de-8b6a-d9ddeff2b6bb` |
| 3048 | `LegsBrigandine04_mErik` | Laminar knight legs | 13 | 64754 | `2ca3d4ee-e889-41e6-8ecc-4040b68ccdd8` |
| 3049 | `LegsBrigandine04_mOderin_A5` | Laminar knight legs | 13 | 64754 | `4d22fab7-9424-429f-a443-14eed1cc11f2` |
| 3050 | `LegsBrigandine04_mRuthard_A5` | Laminar knight legs | 13 | 64754 | `3663335c-7756-4b8d-82fb-064149197de4` |
| 3051 | `LegsBrigandine_placeholder` | A suspicious bag | 2 | 3641 | `78c22235-7a4f-4b4f-99c6-064cb01875c5` |
| 3052 | `LegsPadded01_m01_C3` | Quilted hose | 5.7 | 3610 | `6fad4fc0-eb11-4394-943f-d8def9871cc2` |
| 3053 | `LegsPadded01_m02_C3` | Padded chausses | 5.7 | 3642 | `cc1adb78-fa5a-45c9-be7b-b7b50e182cb3` |
| 3054 | `LegsPadded01_m03_C3` | Padded chausses | 5.7 | 3642 | `a157447c-3c6f-463a-a02d-d4b696e644e1` |
| 3055 | `LegsPadded01_m04_C3` | Padded chausses | 5.7 | 3546 | `c6a66736-2f9e-4c0c-9def-4d6fd5906b82` |
| 3056 | `LegsPadded01_m05_C3` | Quilted hose | 5.7 | 3642 | `4773c640-aa32-4644-87fd-89160d5ae844` |
| 3057 | `LegsPadded01_m06_C3` | Quilted hose | 5.7 | 3546 | `0f70adb9-d36a-4f72-8367-a64454159a4f` |
| 3058 | `LegsPadded01_m07_C3` | Quilted hose | 5.7 | 3642 | `078e439b-1a5b-40ca-b009-d4abf6fcf810` |
| 3059 | `LegsPadded01_m08_C3` | Quilted hose - dark | 5.1 | 3630 | `f44e20f0-c31b-4dc7-91a9-140c9d367ab8` |
| 3060 | `LegsPadded01_m09_C3` | Quilted hose | 5.7 | 3642 | `c8617a2b-cac4-4f2d-828d-9f93eee3971b` |
| 3061 | `LegsPadded01_m10_C3` | Quilted hose | 5.7 | 3546 | `6ca69142-da64-4abc-b989-682fc91b83c7` |
| 3062 | `LegsPadded01_m11_C3` | Quilted hose | 5.7 | 3546 | `a363573e-57dd-4eda-9b44-d9d9ddf47a5d` |
| 3063 | `LegsPadded02_m01_E1` | Old quilted hose | 5.3 | 1201 | `be916959-2459-4a31-81fc-4b00090c3f42` |
| 3064 | `LegsPadded02_m02_E1` | Old quilted hose | 5.3 | 1230 | `cf672182-1c7a-404a-9af9-1b08e20d81e3` |
| 3065 | `LegsPadded02_m03_E1` | Old quilted hose | 5.3 | 1201 | `cde6db6c-302f-4484-a774-bc5d2264a0df` |
| 3066 | `LegsPadded02_m04_E1` | Old quilted hose | 5.3 | 1201 | `8a8e914e-d384-4e7b-ae5e-534f48679c85` |
| 3067 | `LegsPadded02_m05_E1` | Old quilted hose | 5.3 | 1201 | `b5bfc0d3-b4e2-421c-ae14-4bce9f1f54be` |
| 3068 | `LegsPadded02_m06_E1` | Old quilted hose | 5.3 | 1201 | `9748ecfc-9f6d-4a84-88f8-d5259070a35c` |
| 3069 | `LegsPadded02_m07_E1` | Old quilted hose | 5.3 | 1230 | `bf6a9662-bb1a-48e1-9d81-266a9db81834` |
| 3070 | `LegsPadded02_m08_E1` | Vagrant's quilted hose | 4.6 | 993 | `867cddb7-32e6-4a3d-98f2-f6b9ba3ae7c9` |
| 3071 | `LegsPadded02_m09_E1` | Old quilted hose | 5.3 | 1220 | `7aa28765-c119-4fc7-99d4-c01cce00560b` |
| 3072 | `LegsPadded02_m10_E1` | Old quilted hose | 5.3 | 1230 | `f40e2765-b3ea-4404-898a-be7eba82935f` |
| 3073 | `LegsPadded02_m11_E1` | Old quilted hose | 5.3 | 1201 | `50413cc2-f405-44b4-b80e-6150db354bb1` |
| 3074 | `LegsPadded02_m12_E1` | Old quilted hose | 5.3 | 1201 | `b49694c9-31dd-49f0-bc1b-be86644cf1fa` |
| 3075 | `LegsPadded02_m13_E1` | Old quilted hose | 5.3 | 1201 | `cdafe0da-d6fa-4285-80e2-02ad7626f3dd` |
| 3076 | `LegsPadded02_m14_E1` | Old quilted hose | 5.3 | 1230 | `92343d9d-3084-4cec-b0ef-be2f0bef3416` |
| 3077 | `LegsPadded03_m01_B2` | Noble quilted trousers | 5.5 | 2498 | `a79e8354-4706-4dde-bec3-51e1d88bf699` |
| 3078 | `LegsPadded03_m02_B2` | Noble's quilted hose | 4.9 | 3100 | `92c8681a-e101-4961-b7fc-e8067e638e08` |
| 3079 | `LegsPadded03_m03_B2` | Noble's quilted hose | 5.5 | 2498 | `63ae760f-f5cd-49f5-a535-14ca1d73eda9` |
| 3080 | `LegsPadded03_m04_B2` | Noble's quilted hose | 5.5 | 2614 | `5a189394-0191-4545-9d9f-98db7fce4745` |
| 3081 | `LegsPadded03_m05_B2` | Noble's quilted hose | 5.5 | 2498 | `cd55db54-061e-4389-9de2-73e1f5237555` |
| 3082 | `LegsPadded03_m06_B2` | Noble's quilted hose | 5.5 | 2614 | `5dc552cd-ed2c-411c-81c6-10e9b2cb2d24` |
| 3083 | `LegsPadded03_m07_B2` | Noble's quilted hose | 5.5 | 2498 | `d86cfc84-c1b4-4b13-bfcb-a09c5ae6d314` |
| 3084 | `LegsPadded03_m08_B2` | Noble's quilted hose | 5.5 | 2498 | `97572af8-2acc-40d6-89ae-21e940fe34c6` |
| 3085 | `LegsPadded03_m09_B2` | Noble's quilted hose | 5.5 | 2614 | `a9c075b0-7af8-40b4-ac1b-03a959e899b2` |
| 3086 | `LegsPadded03_m10_B2` | Noble's quilted hose | 5.5 | 2614 | `9214fb0e-3979-4243-bd69-1cbd709765ab` |
| 3087 | `LegsPadded03_mSamuel` | Noble's quilted hose | 5.7 | 3546 | `a6d373c3-de69-4cd7-8355-740da04cf8f8` |
| 3088 | `LegsPadded05_m01_B1` | Riding boots - high | 5.3 | 1629 | `c82b31f2-89b0-4e7b-b24e-fa56e9a4c5d1` |
| 3089 | `LegsPadded05_m02_B1` | Riding boots - high | 5.3 | 1745 | `880953a0-c5f8-4b71-a33a-9979e1f32bc2` |
| 3090 | `LegsPadded05_m03_B1` | Riding boots - high | 5.3 | 1629 | `fa19b23a-c9c1-4e36-b70d-622d220b61da` |
| 3091 | `LegsPadded05_m04_B1` | Riding boots - high | 5.3 | 1745 | `169749ba-3c35-4d4a-a8a8-2dcf4488477c` |
| 3092 | `LegsPadded05_m05_B1` | Riding boots - high | 5.3 | 1705 | `9c7ace12-1010-4d4f-b2ab-2585f6f02dac` |
| 3093 | `LegsPaddedGodwin_m01` | Mended padded leggings | 5.3 | 1705 | `ffe35c10-6a19-42f3-9960-1c4801fd1fbf` |
| 3094 | `LegsPlate01_m01_C3` | Bavarian plate legs | 12.2 | 36842 | `403db8bc-649a-4b10-9385-01275b96f141` |
| 3095 | `LegsPlate01_m02_C3` | Bavarian plate legs | 12.2 | 36842 | `dd0c4b0d-c890-4d72-8761-aab1781d9276` |
| 3096 | `LegsPlate01_m03_C3` | Bavarian plate legs | 12.2 | 36976 | `1cee6060-b595-4f6f-8fca-83a50f373e0b` |
| 3097 | `LegsPlate01_mAlberich` | Bavarian plate legs | 12.2 | 36842 | `f2ddfa19-4849-4f85-85c5-d59e4a5526ff` |
| 3098 | `LegsPlate01_mIstvan` | Bavarian plate legs | 12.2 | 36976 | `a4fa9057-3a42-4df7-8277-390e6da4c195` |
| 3099 | `LegsPlate02_m01_B4` | Milanese plate leg armour | 13.3 | 65018 | `18f3756f-9d76-48a4-afa5-72f4ccc0e16b` |
| 3100 | `LegsPlate02_m02_B4` | Milanese plate leg armour | 13.3 | 65018 | `d49de4f0-cd22-4c7e-a1fa-2a2192a6f456` |
| 3101 | `LegsPlate02_m03_B4` | Milanese plate leg armour | 13.3 | 65221 | `1b94661c-7de9-4a15-a870-110eb771ac8d` |
| 3102 | `LegsPlate02_m04_B4` | Milanese plate leg armour | 13.3 | 65018 | `39c52304-d3a7-443e-a229-686c192106d9` |
| 3103 | `LegsPlate03_m01_A5` | Noble's plate legs | 14 | 89480 | `a8cb0916-6466-4728-b551-6f645d40a76d` |
| 3104 | `LegsPlate03_m02_A5` | Noble's plate legs - dark | 14 | 89773 | `a710d21c-6b50-468d-bef8-4f0201f8d116` |
| 3105 | `LegsPlate03_m03_A5` | Noble's plate legs | 14 | 89480 | `1972ac07-f8e1-41f0-9fb4-cf115b0088ec` |
| 3106 | `LegsPlate03_m04_A5` | Noble's plate legs | 14 | 89480 | `4841c334-f6ef-409e-9f33-70c51efcdca3` |
| 3107 | `LegsPlate03_m05_A5` | Noble's plate legs | 14 | 89480 | `fba4ddab-729a-4485-9f9c-cfff0f2757b3` |
| 3108 | `LegsPlate03_mAulitz` | A suspicious bag | 14 | 77807 | `fd69ff98-89fb-4268-b97a-65a8a58b1b1b` |
| 3109 | `LegsPlate03_mBergov` | A suspicious bag | 14 | 77807 | `a7f1527d-299c-4796-bec9-7acc14c59e4b` |
| 3110 | `LegsPlate04_m01_D1` |
Half plate legs | 11 | 18211 | `3625fd0b-94df-47ca-a0db-09f5f8833ac0` |
| 3111 | `LegsPlate04_m02_D1` |
Half plate legs | 11 | 18211 | `ccb82eee-2caa-445d-9cd1-ca3820edb6b5` |
| 3112 | `LegsPlate04_m03_D1` |
Half plate legs | 11 | 18301 | `c01ca195-4129-4fbd-a966-f8eb7b162ddf` |
| 3113 | `LegsPlate04_m04_D1` |
Half plate legs | 11 | 18211 | `30468716-1e11-4b55-874d-36702add9114` |
| 3114 | `LegsPlate04_m05_D1` |
Half plate legs | 11 | 18211 | `3d5708c2-65a2-433e-9792-03c3cbb5c14d` |
| 3115 | `LegsPlate05_m01_C3` | Saxon plate legs | 12.5 | 42491 | `bf69906e-4f4b-40dd-803c-9deee8c0bd15` |
| 3116 | `LegsPlate05_m02_C3` | Saxon plate legs | 12.5 | 42491 | `663d6ec1-c5b9-406e-9017-04f1688331ea` |
| 3117 | `LegsPlate05_m03_C3` | Saxon plate legs | 12.5 | 42491 | `d8d6e479-8eb1-41e7-9ac4-f003f2d62c53` |
| 3118 | `LegsPlate05_m04_C3` | Saxon plate legs | 12.5 | 42491 | `4c211401-3edc-4f85-b489-206b229420fb` |
| 3119 | `LegsPlate05_m05_C3` | Saxon plate legs | 12.5 | 42491 | `8b96acec-7e33-4320-abde-08978461f149` |
| 3120 | `LegsPlate05_m06_C3` | Saxon plate legs | 12.5 | 42491 | `f9c2e7e4-0894-4f04-a4c5-93662230db16` |
| 3121 | `LegsPlate05_m07_C3` | Saxon plate legs | 12.5 | 42491 | `ae45230f-65b0-442a-ab4e-b50a6ea3121e` |
| 3122 | `LegsPlate05_m08_C3` | Saxon plate legs | 12.5 | 42491 | `821a808c-4858-4257-b08f-150f35b40555` |
| 3123 | `LegsPlate05_mRadzig_C3` | A suspicious bag | 12.5 | 42491 | `86183abd-43c5-4762-8a0c-12f4a8057fe7` |
| 3124 | `LegsPlate06_m01_D1` | Poleyn | 1 | 481 | `233e4fbc-42b8-4a70-a699-8b1978419f0c` |
| 3125 | `LegsPlate06_m02_D1` | Poleyn | 1 | 483 | `215026f1-e62b-4aa5-a919-36ece35a7817` |
| 3126 | `LegsPlate06_m03_D1` | Poleyn | 1 | 481 | `52d761bd-6c65-4eb0-9763-7c6c025a621d` |
| 3127 | `LegsPlate07_m01_E1` | Leaf-shaped couters | 0.9 | 332 | `35ad3b58-b9b4-4808-9512-13353f75a81a` |
| 3128 | `LegsPlate07_m02_E1` | Leaf-shaped couters | 0.9 | 331 | `553df660-2d26-47b5-9e44-aac7fe1335c6` |
| 3129 | `LegsPlate07_m03_E1` | Leaf-shaped couters | 0.9 | 331 | `a6271f15-0d29-4234-ad06-8810f939bfe6` |
| 3130 | `LegsPlate08_m01_A5` | Kuttenberg plate legs | 12.8 | 79860 | `5aed4653-fa7f-4516-86bb-8de4be98e191` |
| 3131 | `LegsPlate_placeholder` | A suspicious bag | 4.9 | 395 | `92bd0714-c57a-4cbe-8682-2f3fcdf93352` |
| 3132 | `LegsPlateBrunswig_m01` | Brunswick's plate leg armour | 11.8 | 34208 | `96981577-61e6-4e10-bb01-c3cb879aa920` |
| 3133 | `LegsPlateCapon_m01` | Capon' plate chausses | 12.2 | 37995 | `8069c62d-1ecc-4fc1-be08-15a76bea5ed1` |
| 3134 | `LegsPlateZizka_m01` | A suspicious bag | 12.2 | 36932 | `6534b5c8-4840-4329-88ed-12d45fe46f0b` |
| 3210 | `loot_rattayBridle` | Rattay bridle | 2 | 350 | `43f00e08-e8c1-462c-897f-447ad7ab37f0` |
| 3211 | `loot_rattayHarness` | Rattay breeching | 8 | 610 | `185f823e-5e4e-42ee-a8c3-9c995bebad88` |
| 3334 | `magicShop_veilOfLudmila` | Saint Ludmila's veil | 0.2 | 780 | `e2c6fbe0-e51e-46c5-9586-8cb133804c0f` |
| 3336 | `MailLong01_m01_C5` | Hauberk long | 26 | 18211 | `6f6bc011-d298-4f69-8877-71f94abe6d9e` |
| 3337 | `MailLong01_m01_mCapon_NoBags` | Hauberk long | 21.4 | 10394 | `31da3908-dd04-41cc-a376-3754b2fbea51` |
| 3338 | `MailLong01_m02_C5` | Hauberk long | 26 | 18211 | `42206555-6ba9-4de3-95df-5d70c85c5042` |
| 3339 | `MailLong01_m03_C5` | Hauberk long | 26 | 18211 | `2c501caf-4279-4bdf-82ea-9ba4bfaa4677` |
| 3340 | `MailLong01_m04_C5` | Hauberk long | 26 | 18211 | `de8aa71b-8623-4aa2-bde2-9f45685b4199` |
| 3341 | `MailLong02_m01_C2` | Saxon hauberk | 19 | 5794 | `260ccafb-0504-4c17-9833-304539d30698` |
| 3342 | `MailLong02_m02_C2` | Saxon hauberk | 19 | 5794 | `bdaa9037-a48f-4f3f-b7f0-27efaba93389` |
| 3343 | `MailLong02_m03_C2` | Saxon hauberk | 19 | 5794 | `d8048178-a9c7-4518-86a1-fa2ec417ef40` |
| 3344 | `MailShort01_m01_C4` | Short chainmail | 22 | 14900 | `b1b9a304-4f2c-4e43-8f2c-166abf25243c` |
| 3345 | `MailShort01_m02_C4` | Short chainmail | 22 | 14900 | `a5aeba9c-2e4b-4710-a6cb-5233aadab516` |
| 3346 | `MailShort01_m03_C4` | Short chainmail | 22 | 14900 | `0364c89d-ac13-44ef-94d5-22b4047e7a26` |
| 3347 | `MailShort01_m04_C4` | Short chainmail | 22 | 14900 | `8444bd63-5c51-4293-9b95-946d091e12f5` |
| 3348 | `MailShort02_m01_C1` | Italian hauberk | 15 | 4139 | `38102e92-9a28-4d57-85c4-716b97a0ecb8` |
| 3349 | `MailShort02_m02_C1` | Italian hauberk | 15 | 4139 | `b80a30ee-43d9-4d73-b064-b7c366320070` |
| 3350 | `MailShort02_m03_C1` | Italian hauberk | 15 | 4139 | `ed1b1306-df52-4504-81d1-c0b2bd8ff571` |
| 3351 | `mailShort_placeholder` | A suspicious bag | 10 | 182 | `1e1c76a6-24bf-41b8-a3f4-652b56d7d272` |
| 3389 | `mountedArchery_slowingBridle` | Tengri's Bridle | 5 | 120 | `b1622382-1065-4c74-bf2f-c9eea9fd4002` |
| 3390 | `mountedArchery_slowingCaparison` | Tengri's Caparison | 35 | 150 | `6d5b1977-32b4-4d30-a33c-ccf2fbfa6d41` |
| 3391 | `mountedArchery_slowingHorseshoes` | Tengri's horseshoes | 4 | 110 | `5b821af7-7e7c-48bf-9b45-cc7317b98051` |
| 3392 | `mountedArchery_slowingSaddle` | Tengri's Saddle | 26 | 100 | `615fc0ae-4f14-43f5-9c3b-8308e828e9ad` |
| 3420 | `nebakovPruzkum_Cap21_m01_C_nebakClue` | Cap from Nebakov | 0.5 | 225 | `25d4aeb7-5ed6-401d-872c-3076ddc02488` |
| 3425 | `Necklace01_mVajda` | Voivode's necklace | 0 | 1702 | `88083e07-95eb-4dbe-8b73-aa450d96c2c3` |
| 3426 | `necklace_golden_cross_garnet` | Golden cross with garnets | 0 | 6600 | `69bd176a-c672-4dcd-8d23-669bd66119c5` |
| 3427 | `necklace_golden_cross_pearl` | Golden cross with pearls | 0 | 6600 | `d47913f1-587c-4676-bf8d-6608723f53eb` |
| 3428 | `Necklace_placeholder` | A suspicious bag | 8 | 9133 | `468eb027-12ed-4df9-8899-6b47d856a311` |
| 3429 | `necklace_scapular_letter` | Scapular with insignia | 0 | 3398 | `342dff67-b23d-4c95-a006-bb0e29193edf` |
| 3430 | `necklace_scapular_saint` | Scapular with saint | 0 | 1476 | `3ed5c65b-39fd-4552-9af5-8252aefee1b9` |
| 3431 | `necklace_scapular_window` | Scapular with aperture | 0 | 2041 | `d118761a-8a2f-4dd6-98e8-9fc347688e78` |
| 3432 | `necklace_silver_cross_garnet` | Silver cross with garnet | 0 | 2494 | `f035a1e7-f5b0-4c19-b330-e6279b7cbac3` |
| 3433 | `necklace_silver_cross_insignia` | Silver cross with insignia | 0 | 2494 | `2eb7d615-249a-4282-ac7a-e10a7b829ac4` |
| 3434 | `necklace_tin_cross` | Tin cross | 0 | 627 | `7729cc59-e459-40e9-b0d1-a00b5b00c9d6` |
| 3443 | `NobleBridle01_m01` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `68204d36-5d4d-412e-9b37-8bce360952f3` |
| 3444 | `NobleBridle01_m02` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `c3deaeec-4712-4e2b-bd95-20b3a8c2b549` |
| 3445 | `NobleBridle01_m03` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `8e9765b9-4cc8-4cbf-9013-873946960aab` |
| 3446 | `NobleBridle01_m04` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `c8542eac-f3ed-4799-8cb9-e60d3ed84c85` |
| 3447 | `NobleBridle01_m05` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `38524c97-f740-4e37-b65a-ea332e3e4385` |
| 3448 | `NobleBridle01_m06` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `236a25e6-232a-431f-9541-7b4bb3ac41b6` |
| 3449 | `NobleBridle01_m07` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `95a500fb-89e3-45fc-a058-15335899b0bf` |
| 3450 | `NobleBridle01_m08` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `a3d02b6b-e8ef-4727-8548-9bac4b627124` |
| 3451 | `NobleBridle01_m09` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `3c865190-3414-4fd0-8a1c-3d8e018209d1` |
| 3452 | `NobleBridle01_m10` | Bridle of the Holy Roman Empire | 2.8 | 3500 | `23cf705b-f472-4fa8-a623-ed6ccf36e022` |
| 3453 | `NobleBridle02_m01` | Tournament bridle | 3 | 4600 | `72eb952b-3354-4e70-8c54-5c9a33fb9f91` |
| 3454 | `NobleBridle02_m02` | Tournament bridle | 3 | 4600 | `8d8c6878-5e2e-4d05-8518-4da978492031` |
| 3455 | `NobleBridle02_m03` | Tournament bridle | 3 | 4600 | `caccef17-3530-4e16-9c1b-09f3972eb400` |
| 3456 | `NobleBridle02_m04` | Tournament bridle | 3 | 4600 | `5ae64694-f455-411a-a33d-dfc91c95a199` |
| 3457 | `NobleBridle02_m05` | Tournament bridle | 3 | 4600 | `478b934c-025e-4313-acfc-bc1e699d1a95` |
| 3458 | `NobleBridle02_m06` | Tournament bridle | 3 | 4600 | `8af9135b-2b6e-442b-a6c7-c9d8ea4530d4` |
| 3459 | `NobleBridle02_m07` | Tournament bridle | 3 | 4600 | `83003a9e-8c50-4a48-976b-f9fde08145a5` |
| 3460 | `NobleBridle02_m08` | Tournament bridle | 3 | 4600 | `34168b55-f1d6-4f52-9f2c-d1373a8b4269` |
| 3461 | `NobleBridle02_m09` | Tournament bridle | 3 | 4600 | `aecfd845-a69d-4e69-9cdb-49026eda4924` |
| 3462 | `NobleBridle02_m10` | Tournament bridle | 3 | 4600 | `f854687f-fc8a-4c51-93d9-98535bd75731` |
| 3463 | `NobleCaparison01_m01` | Tournament caparison decorated | 14.4 | 5175 | `85a133ab-cc0a-4106-a414-375e6b7f2af2` |
| 3464 | `NobleCaparison01_m02` | Tournament caparison decorated | 14.4 | 5175 | `bc25c392-64c3-4e37-b1d4-4f96edfb6b0e` |
| 3465 | `NobleCaparison01_m03` | Tournament caparison decorated | 14.4 | 5175 | `a5cebc2e-f901-4dcc-82f9-638ee0daa7a5` |
| 3466 | `NobleCaparison01_m04` | Tournament caparison decorated | 14.4 | 5175 | `0d7bd42b-f495-4ff6-80a3-ef99475d583e` |
| 3467 | `NobleCaparison01_m05` | Tournament caparison decorated | 14.4 | 5175 | `c14ede14-3138-4d0a-8e32-b1d985fff226` |
| 3468 | `NobleCaparison01_m06` | Tournament caparison decorated | 14.4 | 5175 | `52379cdf-9749-423e-815d-c1e5591f3ed1` |
| 3469 | `NobleCaparison01_m07` | Tournament caparison decorated | 14.4 | 5175 | `465c20ef-f2fa-442e-9de0-6343ca7b5ff4` |
| 3470 | `NobleCaparison01_m08` | Tournament caparison decorated | 14.4 | 5175 | `2ef6ca4c-ea3d-45ce-923c-42d084ae6bf9` |
| 3471 | `NobleCaparison01_m09` | Tournament caparison decorated | 14.4 | 5175 | `bb8fd4b8-70dd-46d8-9d31-bb830b1e582f` |
| 3472 | `NobleCaparison01_m10` | Tournament caparison decorated | 14.4 | 5175 | `00acd76f-fdbe-4552-bffa-6640832af8e3` |
| 3473 | `NobleCaparison01_m11` | Tournament caparison decorated | 14.4 | 5175 | `25c4d2e8-2368-431d-86af-b8c10c5c79ae` |
| 3474 | `NobleCaparison01_m12` | Tournament caparison decorated | 14.4 | 5175 | `4ac37359-e55c-4dc9-a39a-c4b70ad5c29d` |
| 3475 | `NobleCaparison01_mJezek` | Lords of Holohlavy caparison | 14.4 | 5175 | `e99a819c-612b-4842-b6d8-6ecf35113ae7` |
| 3476 | `NobleCaparison01_mLeipa` | Tournament caparison in colours of Leipa | 14.4 | 5175 | `34f3b6e7-f251-4199-b86f-c8782c8a7758` |
| 3477 | `NobleCaparison01_mLeipa02` | Tournament caparison in colours of Leipa | 14.4 | 5175 | `288d5d7e-e87d-457e-a174-04f31cf66d71` |
| 3478 | `NobleCaparison01_mTwitch` | Warhorse tournament caparison | 5 | 2119 | `bfc06521-05ed-44cb-a022-88be09a2dca7` |
| 3479 | `NobleCaparison02_m01` | Caparison decorated | 13.6 | 4816 | `4d8c778d-144a-4bd5-9163-70d7ecd24338` |
| 3480 | `NobleCaparison02_m02` | Caparison decorated | 13.6 | 4816 | `6896df33-18f7-42c0-ba5e-108a5ea07f38` |
| 3481 | `NobleCaparison02_m03` | Caparison decorated | 13.6 | 4816 | `a77065c6-7bae-41ba-8e34-9ad7242c2792` |
| 3482 | `NobleCaparison02_m04` | Caparison decorated | 13.6 | 4816 | `538d406b-3706-4e12-8cc5-48078a1d52cc` |
| 3483 | `NobleCaparison02_m05` | Caparison decorated | 13.6 | 4816 | `57ac2f43-bcb5-4b5c-a2b8-8a9be75bfb46` |
| 3484 | `NobleCaparison02_m06` | Caparison decorated | 13.6 | 4816 | `5f4e4f67-794c-467c-9a30-a8436b5cad5a` |
| 3485 | `NobleCaparison02_m07` | Caparison decorated | 13.6 | 4816 | `08cd152e-0a78-4119-930d-64762e3605b0` |
| 3486 | `NobleCaparison02_m08` | Caparison decorated | 13.6 | 4816 | `a024c830-5e59-4677-9337-10cd088ec636` |
| 3487 | `NobleCaparison02_m09` | Caparison decorated | 13.6 | 4816 | `51b5c2ca-be2b-4e8d-9022-17ab74a63523` |
| 3488 | `NobleCaparison02_m10` | Caparison decorated | 13.6 | 4816 | `670b8480-23f6-4f37-818b-80d4c1143d53` |
| 3489 | `NobleCaparison02_m11` | Caparison decorated | 13.6 | 4816 | `8631c168-3b26-4955-adc7-916753140f5b` |
| 3490 | `NobleCaparison02_m12` | Caparison decorated | 13.6 | 4816 | `6df3efcb-27f6-41fe-8ca4-5105c9a1a6d3` |
| 3491 | `NobleCaparison02_m13` | Caparison decorated | 13.6 | 4816 | `bb97b80c-1f12-497b-9bba-66923c2b19e7` |
| 3492 | `NobleCaparison02_m14` | Caparison decorated | 13.6 | 4816 | `e9b2dae4-fcf1-4ac7-8a0c-4b65af20e6fd` |
| 3493 | `NobleCaparison02_mLeipa` | Caparison sewn in Leipa colours | 13.6 | 4816 | `d18c67a0-e117-4530-86ea-514e67ce60fe` |
| 3494 | `NobleCaparison02_mLeipa02` | Caparison sewn in Leipa colours | 13.6 | 4816 | `8c14ac92-cc83-45c1-82b1-6554183807a1` |
| 3495 | `NobleCaparison02_mMarkvart` | Caparison sewn in Aulitz colours | 14.4 | 5175 | `c36d9fa2-3484-487e-9fd6-4eea23bf4bf5` |
| 3496 | `NobleCaparison03_m01` | Executioner's caparison decorated | 12 | 3563 | `072c4a0f-3efc-4c9d-9ea0-cf9b577477fd` |
| 3497 | `NobleCaparison03_m02` | Executioner's caparison decorated | 12 | 3563 | `bda66810-1255-4c97-b179-3b1b03025591` |
| 3498 | `NobleCaparison03_m03` | Executioner's caparison decorated | 12 | 3563 | `871018f4-bad4-4f44-b29c-6c36e2a6dbcf` |
| 3499 | `NobleCaparison03_m04` | Executioner's caparison decorated | 12 | 3563 | `50bc4d3d-7e67-4a75-88b6-c94bdf9630bd` |
| 3500 | `NobleCaparison03_m05` | Executioner's caparison decorated | 12 | 3563 | `d07daf9e-46df-4347-9529-6492d74cf45e` |
| 3501 | `NobleCaparison03_m06` | Executioner's caparison decorated | 12 | 3563 | `2d0b520e-a7b1-499e-bbb9-82b0dc76fbd2` |
| 3502 | `NobleCaparison03_m07` | Executioner's caparison decorated | 12 | 3563 | `4fc291cc-93e9-4a92-ab43-41e0f3dcd09e` |
| 3503 | `NobleCaparison03_m08` | Executioner's caparison decorated | 12 | 3563 | `51cbe92d-f11f-4475-bf76-2d5a04626ae2` |
| 3504 | `NobleCaparison03_m09` | Executioner's caparison decorated | 12 | 3563 | `d1f96b94-2a78-4663-9d44-af5a39997d83` |
| 3505 | `NobleCaparison03_m10` | Executioner's caparison decorated | 12 | 3563 | `fb36885b-8df0-4353-b36c-fe0f9c65b61f` |
| 3506 | `NobleCaparison03_m11` | Executioner's caparison decorated | 12 | 3563 | `a8626b5b-6d74-4e0b-b992-cee6922f0629` |
| 3507 | `NobleCaparison03_m12` | Executioner's caparison decorated | 12 | 3563 | `53b03774-0e9e-471c-a546-dc8e2cf77436` |
| 3508 | `NobleCaparison03_m13` | Executioner's caparison decorated | 12 | 3563 | `93ccb74f-8b86-41c1-8eca-7dbd8f2214f6` |
| 3509 | `NobleCaparison03_m14` | Executioner's caparison decorated | 12 | 3563 | `23daff23-428c-42a1-bc43-7ba432f58423` |
| 3510 | `NobleCaparison03_mLeipa` | Executioner’s caparison in colours of Leipa | 12 | 3563 | `455154ff-87a2-4892-a001-80708edc0f46` |
| 3511 | `NobleCaparison03_mLeipa02` | Executioner’s caparison in colours of Leipa | 12 | 3563 | `37140c46-727e-41a6-afca-2eebccaf4616` |
| 3512 | `NobleCaparison04_m01` | Executioner's caparison with breeching | 14.4 | 5175 | `477c944b-27cb-4d76-99ef-4f7e6b7eb1e4` |
| 3513 | `NobleCaparison04_m02` | Executioner's caparison with breeching | 14.4 | 5175 | `d31186b6-d0b2-4ba7-a387-95ffb8b0dd07` |
| 3514 | `NobleCaparison04_m03` | Executioner's caparison with breeching | 14.4 | 5175 | `bdd98236-3fd2-411c-8194-cfc6b5dfeffe` |
| 3515 | `NobleCaparison04_m04` | Executioner's caparison with breeching | 14.4 | 5175 | `401abd48-c45c-4df3-ab8f-ee4f5be626db` |
| 3516 | `NobleCaparison04_m05` | Executioner's caparison with breeching | 14.4 | 5175 | `fbafb20c-9473-4b37-9fe6-d9e877e2b2cc` |
| 3517 | `NobleCaparison04_m06` | Executioner's caparison with breeching | 14.4 | 5175 | `35a5693e-891a-4239-a8a3-dc35cdf84574` |
| 3518 | `NobleCaparison04_m07` | Executioner's caparison with breeching | 14.4 | 5175 | `1ac8e65c-6154-4884-a03f-7ec679a6b036` |
| 3519 | `NobleCaparison04_m08` | Executioner's caparison with breeching | 14.4 | 5175 | `af0e44c7-8fc5-4186-a6fb-d2d57a563a67` |
| 3520 | `NobleCaparison04_m09` | Executioner's caparison with breeching | 14.4 | 5175 | `5bb37b12-c268-4abb-bb83-f31e8631ec79` |
| 3521 | `NobleCaparison04_m10` | Executioner's caparison with breeching | 14.4 | 5175 | `dc2f0283-5570-462c-ba36-afab924034e3` |
| 3522 | `NobleCaparison04_mMarkvart` | Markvart von Aulitz's caparison | 14.4 | 5175 | `2428b944-b184-4e9a-9faa-58c778003c48` |
| 3523 | `NobleCaparison05_m01` | Halved caparison decorated | 12.8 | 3875 | `3d44de66-b34c-476d-98eb-f280b07d88c0` |
| 3524 | `NobleCaparison05_m02` | Halved caparison decorated | 12.8 | 3875 | `93109d78-7b6c-4b26-b2cd-51aae8d0ea3d` |
| 3525 | `NobleCaparison05_m03` | Halved caparison decorated | 12.8 | 3875 | `96a5ce7a-6c6f-45bc-b4ea-1c0a2e4cdbd3` |
| 3526 | `NobleCaparison05_m04` | Halved caparison decorated | 12.8 | 3875 | `2b714d8b-8753-43f4-a82d-8cfe414d3dab` |
| 3527 | `NobleCaparison05_m05` | Halved caparison decorated | 12.8 | 3875 | `308cfc8d-64a7-4726-8539-48f878e31733` |
| 3528 | `NobleCaparison05_m06` | Halved caparison decorated | 12.8 | 3875 | `dcb8c5a6-df67-4ee9-afb9-e59d86e855de` |
| 3529 | `NobleCaparison05_m07` | Halved caparison decorated | 12.8 | 3875 | `82c19843-4254-427b-812b-53bf8a939845` |
| 3530 | `NobleCaparison05_m08` | Halved caparison decorated | 12.8 | 3875 | `f05b9cd0-ca30-4393-8540-033083861182` |
| 3531 | `NobleCaparison05_m09` | Halved caparison decorated | 12.8 | 3875 | `c92bf1cf-0513-4870-91ce-b96e8b6b95b1` |
| 3532 | `NobleCaparison05_m10` | Halved caparison decorated | 12.8 | 3875 | `b89ca515-a4b8-4073-b172-e12989df5ac6` |
| 3533 | `NobleCaparison06_m01` | Caparison á la crupper decorated | 11.2 | 3250 | `1dcc68e2-20d6-44da-bf31-fd5ccf16a1fd` |
| 3534 | `NobleCaparison06_m02` | Caparison á la crupper decorated | 11.2 | 3250 | `796890cb-0aa0-4aad-9cae-8c65c9eb752a` |
| 3535 | `NobleCaparison06_m03` | Caparison á la crupper decorated | 11.2 | 3250 | `592428d2-6e56-406f-b917-899024ee4427` |
| 3536 | `NobleCaparison06_m04` | Caparison á la crupper decorated | 11.2 | 3250 | `fd94cd25-cf40-4a9d-b15a-a0df9e67f501` |
| 3537 | `NobleCaparison06_m05` | Caparison á la crupper decorated | 11.2 | 3250 | `28855f6e-c16a-473d-b16f-43ce0b23b49b` |
| 3538 | `NobleCaparison06_m06` | Caparison á la crupper decorated | 11.2 | 3250 | `9ebb6fb5-0c6e-4f4b-8ca9-c150666c56f9` |
| 3539 | `NobleCaparison06_m07` | Caparison á la crupper decorated | 11.2 | 3250 | `11084379-c94c-4a8b-bfe8-5b6214b9c890` |
| 3540 | `NobleCaparison06_m08` | Caparison á la crupper decorated | 11.2 | 3250 | `ca154752-a639-4b06-9a19-2d6028352465` |
| 3541 | `NobleCaparison06_m09` | Caparison á la crupper decorated | 11.2 | 3250 | `abf99866-6deb-4de1-a9ba-ee0443cb0db1` |
| 3542 | `NobleCaparison06_m10` | Caparison á la crupper decorated | 11.2 | 3250 | `d5e78740-a7f3-46f1-acde-b5a0976ebb52` |
| 3543 | `NobleCaparison06_mLeipa` | Executioner’s caparison in colours of Leipa | 0.5 | 9140 | `e26ed0c8-91cf-4120-a898-1498856615ff` |
| 3544 | `NobleCaparison07_m01` | Executioner’s caparison with breeching | 14.4 | 5175 | `cef0e663-7cf6-4984-a2a1-ca3a12400aab` |
| 3545 | `NobleCaparison07_m02` | Executioner’s caparison with breeching | 14.4 | 5175 | `faada886-a161-4e3b-9614-9c7243059353` |
| 3546 | `NobleCaparison07_m03` | Executioner’s caparison with breeching | 14.4 | 5175 | `eaaf1591-bcf3-4fb0-8df7-9e6ce4916dda` |
| 3547 | `NobleCaparison07_m04` | Executioner’s caparison with breeching | 14.4 | 5175 | `8f750fcf-e720-40b0-ad39-ef1905c0b5cc` |
| 3548 | `NobleCaparison07_m05` | Executioner’s caparison with breeching | 14.4 | 5175 | `b7bf69c9-e0ff-4c43-a86b-461784805e34` |
| 3549 | `NobleCaparison07_m06` | Executioner’s caparison with breeching | 14.4 | 5175 | `5dce98d4-971d-48f8-89cb-aad53bd70af5` |
| 3550 | `NobleCaparison07_m07` | Executioner’s caparison with breeching | 14.4 | 5175 | `8ccab226-4038-4095-9ba1-5a3934db850d` |
| 3551 | `NobleCaparison07_m08` | Executioner’s caparison with breeching | 14.4 | 5175 | `b2e610f1-4c18-4fa5-8172-248470491aaa` |
| 3552 | `NobleCaparison07_mLeipa` | Executioner’s caparison in colours of Leipa | 0.5 | 20 | `2ec3b1c1-bfbe-4dad-81fe-da4a573b004a` |
| 3553 | `NobleCaparison08_m01` | Tournament caparison decorated | 14.4 | 5175 | `104567b2-f6b0-4726-99b8-bf052a1e8ce1` |
| 3554 | `NobleCaparison08_m02` | Tournament caparison decorated | 14.4 | 5175 | `51e7f495-3abb-4a64-a19a-863afb9e0c4c` |
| 3555 | `NobleCaparison08_m03` | Tournament caparison decorated | 14.4 | 5175 | `46eec158-6f24-4914-83c0-1443b37ebbc2` |
| 3556 | `NobleCaparison08_m04` | Tournament caparison decorated | 14.4 | 5175 | `787f1371-f5d7-4a85-9acb-f1543ef11237` |
| 3557 | `NobleCaparison08_m05` | Tournament caparison decorated | 14.4 | 5175 | `d80678f8-7267-48d5-9868-56c2b17b2354` |
| 3558 | `NobleCaparison08_m06` | Tournament caparison decorated | 14.4 | 5175 | `2dd6589c-5067-48a5-90c0-e6f07a86738e` |
| 3559 | `NobleCaparison08_m07` | Tournament caparison decorated | 14.4 | 5175 | `0bce901c-6370-45f8-abde-3513a566ac5c` |
| 3560 | `NobleCaparison08_m08` | Tournament caparison decorated | 14.4 | 5175 | `257d653c-1aab-4121-a684-c88f91ed93e2` |
| 3561 | `NobleCaparison08_mErik` | Tournament caparison decorated | 0.5 | 610 | `872ef517-59dc-4c56-a3d6-d6b363f400de` |
| 3562 | `NobleSaddle01_m01` | Bravante saddle | 21.6 | 20700 | `ae7eb079-4570-4f9c-8002-5de375d4421c` |
| 3563 | `NobleSaddle01_m02` | Bravante saddle | 21.6 | 20700 | `63a38e69-225a-4d82-91ee-20018557d402` |
| 3564 | `NobleSaddle01_m03` | Bravante saddle | 21.6 | 20700 | `d761189b-9ac2-4fa0-bdc8-cb59d1845957` |
| 3565 | `NobleSaddle01_m04` | Bravante saddle | 21.6 | 20700 | `a3d98538-60f4-4051-9704-bd57aa9b5f7f` |
| 3566 | `NobleSaddle01_m05` | Bravante saddle | 21.6 | 20700 | `9112f383-0216-42e1-a017-bff80f2e8d7b` |
| 3567 | `NobleSaddle01_m06` | Bravante saddle | 21.6 | 20700 | `92f84b58-ae79-4429-bed8-de43c09e402b` |
| 3568 | `NobleSaddle01_m07` | Bravante saddle | 21.6 | 20700 | `2913fe30-7252-475d-96d7-5ee408fd38df` |
| 3569 | `NobleSaddle01_m08` | Bravante saddle | 21.6 | 20700 | `74e56615-5cfb-458b-bc73-95bab7d81ebe` |
| 3570 | `NobleSaddle01_m09` | Bravante saddle | 21.6 | 20700 | `1265d185-9915-4509-8536-bef531fb6164` |
| 3571 | `NobleSaddle01_m10` | Bravante saddle | 21.6 | 20700 | `0f929cb0-58c7-44a7-9df7-0b4339070bec` |
| 3572 | `NobleSaddle01_m11` | Bravante saddle | 21.6 | 20700 | `e09d7e78-7524-469d-ad75-d0d48d5d2d85` |
| 3573 | `NobleSaddle01_m12` | Bravante saddle | 21.6 | 20700 | `93768d06-15a4-4d81-a69c-cc52f4329291` |
| 3574 | `NobleSaddle01_m13` | Bravante saddle | 21.6 | 20700 | `cafb850b-23a4-4a59-a500-4cd27eb15799` |
| 3575 | `NobleSaddle01_m14` | Bravante saddle | 21.6 | 20700 | `3f19b164-cc5b-4444-b7ef-6a0da1fe960e` |
| 3576 | `NobleSaddle02_m01` | Bridon saddle | 20.4 | 16000 | `ed154d31-b836-4c4c-a8c8-3b00c2f6b6b3` |
| 3577 | `NobleSaddle02_m02` | Bridon saddle | 20.4 | 16000 | `a3ce6197-7b02-406e-9afd-e0da5828f506` |
| 3578 | `NobleSaddle02_m03` | Bridon saddle | 20.4 | 16000 | `db9eb8f0-ba77-48a8-a657-91eaa1018114` |
| 3579 | `NobleSaddle02_m04` | Bridon saddle | 20.4 | 16000 | `be99e748-2fca-4363-a102-d0d83343e844` |
| 3580 | `NobleSaddle02_m05` | Bridon saddle | 20.4 | 16000 | `c1238997-86be-4803-aa98-7b27eae9cd9c` |
| 3581 | `NobleSaddle02_m06` | Bridon saddle | 20.4 | 16000 | `ab02705b-9c90-43b9-97f5-35ef70ebb595` |
| 3582 | `NobleSaddle02_m07` | Bridon saddle | 20.4 | 16000 | `6d712946-f8a0-4b51-b863-c21812413427` |
| 3583 | `NobleSaddle02_m08` | Bridon saddle | 20.4 | 16000 | `4fbe6287-9b35-4608-948c-ed5c487d726f` |
| 3584 | `NobleSaddle02_m09` | Bridon saddle | 20.4 | 16000 | `1ca6a63a-0522-42b1-a60a-e8295a0c03f1` |
| 3585 | `NobleSaddle02_m10` | Bridon saddle | 20.4 | 16000 | `c86b79b0-3214-478b-aac7-96ebe0be793b` |
| 3586 | `NobleSaddle02_m11` | Bridon saddle | 20.4 | 16000 | `d464f9be-c088-459c-aaf3-60beef6905b9` |
| 3587 | `NobleSaddle02_m12` | Bridon saddle | 20.4 | 16000 | `fd74329c-eaba-4c72-a774-527b099dad3d` |
| 3588 | `NobleSaddle02_m13` | Bridon saddle | 20.4 | 16000 | `aa2c10e4-145c-49bb-9e9c-afcdc3468fc6` |
| 3589 | `NobleSaddle02_m14` | Bridon saddle | 20.4 | 16000 | `51636329-c3b8-489f-ac74-a10993153063` |
| 3590 | `NobleSaddle02_m15` | Bridon saddle | 20.4 | 16000 | `34758735-e07e-40e0-9c04-9665106331c9` |
| 3591 | `NobleSaddle03_m01` | Dragon saddle | 22.8 | 23000 | `fd6c8a0a-96b9-4b20-a0f0-01f52637ae9e` |
| 3592 | `NobleSaddle03_m02` | Dragon saddle | 22.8 | 23000 | `82242945-dcc8-4b6d-aec9-e12b80ff6f29` |
| 3593 | `NobleSaddle03_m03` | Dragon saddle | 22.8 | 23000 | `53a6b283-0ad9-48da-ad2e-c5537ee64cd4` |
| 3594 | `NobleSaddle03_m04` | Dragon saddle | 22.8 | 23000 | `fcf843c9-d15b-4bc7-8f02-b5988249f944` |
| 3595 | `NobleSaddle03_m05` | Dragon saddle | 22.8 | 23000 | `e28e1ff1-d463-4bd7-8f1a-1d06e76f9a27` |
| 3596 | `NobleSaddle03_m06` | Dragon saddle | 22.8 | 23000 | `24f9ef85-28a0-40df-8733-fd670a072b3f` |
| 3597 | `NobleSaddle03_m07` | Dragon saddle | 22.8 | 23000 | `0757f25f-041f-4467-832f-9d3dc838a868` |
| 3598 | `NobleSaddle03_m08` | Dragon saddle | 22.8 | 23000 | `b9a5ba14-c3c5-41d3-bf74-ec68fee3c65a` |
| 3599 | `NobleSaddle03_m09` | Dragon saddle | 22.8 | 23000 | `c18e7087-592a-4eb0-a242-aa5630a50130` |
| 3600 | `NobleSaddle03_m10` | Dragon saddle | 22.8 | 23000 | `5d5dad3d-3f5f-45c2-a066-f7d001c0857c` |
| 3601 | `NobleSaddle03_m11` | Dragon saddle | 22.8 | 23000 | `90fa13dd-120b-43e2-b743-a03ed8e2cb96` |
| 3602 | `NobleSaddle03_m12` | Dragon saddle | 22.8 | 23000 | `0a01129a-00f2-455c-ac7c-3a69922b8f56` |
| 3603 | `NobleSaddle03_m13` | Dragon saddle | 22.8 | 23000 | `f2c54b43-48aa-4c71-9201-484147e7e85b` |
| 3604 | `NobleSaddle03_m14` | Dragon saddle | 22.8 | 23000 | `6454ac78-049e-441c-80de-7e5e7263b913` |
| 3605 | `NomadBridle01_m01` | Zamur's bridle | 1.5 | 3400 | `0caed7dc-b9cb-48f3-8960-7f39b3e8b71b` |
| 3606 | `Noose_mHangman` | A suspicious bag | 8 | 9133 | `a921a2ea-df35-4e91-aaa8-35b62eafc3fb` |
| 3617 | `PaddedCaparison01_m01` | Tournament caparison quilted | 33.6 | 5750 | `886aaa70-06e0-4617-a55c-5a3e5fdec2d6` |
| 3618 | `PaddedCaparison01_m02` | Tournament caparison quilted | 33.6 | 5750 | `859c486c-5eaa-4c84-8ef7-3b9b3338b6a2` |
| 3619 | `PaddedCaparison01_m03` | Tournament caparison quilted | 33.6 | 5750 | `54741398-b9b6-4e1e-8280-793af804cbf1` |
| 3620 | `PaddedCaparison01_m04` | Tournament caparison quilted | 33.6 | 5750 | `69e4929c-b5d6-46b0-a36e-92829fbc898c` |
| 3621 | `PaddedCaparison01_m05` | Tournament caparison quilted | 33.6 | 5750 | `34b86ba5-95f4-449a-9f9c-df5f13ff938a` |
| 3622 | `PaddedCaparison01_m06` | Tournament caparison quilted | 33.6 | 5750 | `66be7eb2-923e-4d8d-9652-49b0563141df` |
| 3623 | `PaddedCaparison01_m07` | Tournament caparison quilted | 33.6 | 5750 | `6766fb76-17ac-4acd-ac87-4e47b949b997` |
| 3624 | `PaddedCaparison01_m08` | Tournament caparison quilted | 33.6 | 5750 | `f836869b-013a-4040-a209-c936cb56bdcb` |
| 3625 | `PaddedCaparison01_m09` | Tournament caparison quilted | 33.6 | 5750 | `fb66efee-3aa6-4d87-aa76-647e4a2b75d6` |
| 3626 | `PaddedCaparison01_m10` | Tournament caparison quilted | 33.6 | 5750 | `7a33f459-476b-4e3f-92b5-5c6de67ea002` |
| 3627 | `PaddedCaparison01_mLeipa` | Tournament caparison quilted | 33.6 | 5750 | `cb464bd2-9504-48b2-b8ac-de5452dd73b1` |
| 3628 | `PaddedCaparison01_mLeipa01` | Tournament caparison quilted | 33.6 | 5750 | `37ca1d69-60dd-476b-a488-43b266c51c9f` |
| 3629 | `PaddedCaparison01_mRuthard` | Tournament caparison quilted | 33.6 | 5750 | `20060d35-0347-4ee7-b1b5-06766d6f5285` |
| 3630 | `PaddedCaparison01_mRuthard02` | Tournament caparison quilted | 33.6 | 5750 | `b8b6e1ad-4f3c-4163-ae84-73a6462aea26` |
| 3631 | `PaddedCaparison01_mSemin` | Tournament caparison quilted | 33.6 | 5750 | `b2ceb731-81fb-43a1-a0d3-c21066d65a55` |
| 3632 | `PaddedCaparison01_mSemin02` | Tournament caparison quilted | 33.6 | 5750 | `e88ff1c5-203a-4483-b492-6bf81c5633e6` |
| 3633 | `PaddedCaparison02_m01` | Executioner's caparison quilted | 24 | 2500 | `444cccd2-fc08-4800-8255-cbb19427aee0` |
| 3634 | `PaddedCaparison02_m02` | Executioner's caparison quilted | 24 | 2500 | `9caff0c8-3f23-4d5e-ae38-f20e8d0049c4` |
| 3635 | `PaddedCaparison02_m03` | Executioner's caparison quilted | 24 | 2500 | `a1e4191e-e8d7-40c9-ac8f-438ba7e8d6c8` |
| 3636 | `PaddedCaparison02_m04` | Executioner's caparison quilted | 24 | 2500 | `37686ce9-e122-4a41-b4d5-926cae9ef74f` |
| 3637 | `PaddedCaparison02_m05` | Executioner's caparison quilted | 24 | 2500 | `1436c206-4208-4215-8402-896e87791cb8` |
| 3638 | `PaddedCaparison02_m06` | Executioner's caparison quilted | 24 | 2500 | `4f4ddea5-1c57-463e-bd48-6148fb02f23b` |
| 3639 | `PaddedCaparison02_m07` | Executioner's caparison quilted | 24 | 2500 | `c06fb041-304a-4810-a29d-10a584141744` |
| 3640 | `PaddedCaparison02_m08` | Executioner's caparison quilted | 24 | 2500 | `0b38b046-f80e-4941-8c85-af9619cc3313` |
| 3641 | `PaddedCaparison02_m09` | Executioner's caparison quilted | 24 | 2500 | `531bdc22-0cf3-47a8-9565-d20f8d6d263e` |
| 3642 | `PaddedCaparison02_m10` | Executioner's caparison quilted | 24 | 2500 | `9a9fc522-c626-443d-85d9-2336f6cd62db` |
| 3643 | `PaddedCaparison02_mRuthard02` | Executioner's caparison quilted | 24 | 2500 | `ac74242c-a20c-4675-a27f-fa78e05b5fba` |
| 3644 | `PaddedCaparison02_mRuthard03` | Executioner's caparison quilted | 24 | 2500 | `72a1c5f5-0732-4395-a7b6-11075a43f770` |
| 3645 | `PaddedCaparison02_mSemin` | Executioner's caparison quilted | 24 | 2500 | `08a87c78-3761-4a04-a693-1226c56b0766` |
| 3646 | `PaddedCaparison02_mSemin02` | Executioner's caparison quilted | 24 | 2500 | `a5d6d4ea-7099-4590-b3f7-138a9660811c` |
| 3647 | `PaddedCaparison03_m01` | Quilted caparison with breeching | 28.8 | 3750 | `56e54c14-e049-4473-8a9d-27106dbf5bb9` |
| 3648 | `PaddedCaparison03_m02` | Quilted caparison with breeching | 28.8 | 3750 | `df108cd8-72ad-45fc-936e-3cf26e793d0b` |
| 3649 | `PaddedCaparison03_m03` | Quilted caparison with breeching | 28.8 | 3750 | `06b506d2-11ea-45a5-b70a-f36e91e002a5` |
| 3650 | `PaddedCaparison03_m04` | Quilted caparison with breeching | 28.8 | 3750 | `9c6da684-8448-43d7-b28c-0a7ffa89e180` |
| 3651 | `PaddedCaparison03_m05` | Quilted caparison with breeching | 28.8 | 3750 | `8ff7c154-4741-4a2b-bcd0-10c0e5043cc3` |
| 3652 | `PaddedCaparison03_m06` | Quilted caparison with breeching | 28.8 | 3750 | `248f40f1-4213-44b6-93b8-d0ee04dc4884` |
| 3653 | `PaddedCaparison03_m07` | Quilted caparison with breeching | 28.8 | 3750 | `5eb8fd68-bfc8-41e9-941b-a29ea5b7429a` |
| 3654 | `PaddedCaparison03_m08` | Quilted caparison with breeching | 28.8 | 3750 | `61d0e35a-2c53-4646-9852-f097d229bc56` |
| 3655 | `PaddedCaparison03_m09` | Quilted caparison with breeching | 28.8 | 3750 | `3a87205f-5988-4d46-9ed9-83e2e19b7731` |
| 3656 | `PaddedCaparison03_m10` | Quilted caparison with breeching | 28.8 | 3750 | `ee4b742f-ad10-473c-940e-a743971c28d3` |
| 3657 | `PaddedCaparison03_mBailiff` | Quilted caparison with breeching | 28.8 | 3750 | `a5264a2f-8f6f-4de4-b80f-5db4f35ff9a1` |
| 3658 | `PaddedCaparison03_mLeipa` | Quilted caparison with breeching | 28.8 | 3750 | `73634299-2c72-48c6-a986-feb001cf8e08` |
| 3659 | `PaddedCaparison03_mLeipa01` | Quilted caparison with breeching | 28.8 | 3750 | `2b2a3572-38a6-4787-aa58-2ee4ee00cab0` |
| 3660 | `PaddedCaparison04_m01` | Quilted caparison with breeching | 28.8 | 3750 | `ace99cb0-6ec3-46f4-8226-2c5a3301342e` |
| 3661 | `PaddedCaparison04_m02` | Quilted caparison with breeching | 28.8 | 3750 | `e9484ee3-cf40-4acf-9ec8-3e297eea3f5f` |
| 3662 | `PaddedCaparison04_m03` | Quilted caparison with breeching | 28.8 | 3750 | `350373bb-ea1d-453a-b7c0-9f4a135a9c9b` |
| 3663 | `PaddedCaparison04_m04` | Quilted caparison with breeching | 28.8 | 3750 | `71d13987-b003-42c6-85ba-f565b7662b98` |
| 3664 | `PaddedCaparison04_m05` | Quilted caparison with breeching | 28.8 | 3750 | `338edf6b-d128-4ee4-afab-d7869fa22873` |
| 3665 | `PaddedCaparison04_m06` | Quilted caparison with breeching | 28.8 | 3750 | `78ba17e5-2761-4f59-b2f2-c6af88547f74` |
| 3666 | `PaddedCaparison04_m07` | Quilted caparison with breeching | 28.8 | 3750 | `3c28bcae-6724-4465-aa60-3b0364450f34` |
| 3667 | `PaddedCaparison04_m08` | Quilted caparison with breeching | 28.8 | 3750 | `978eff03-61a3-4b0d-bb19-33c10101754e` |
| 3668 | `PaddedCaparison04_m09` | Quilted caparison with breeching | 28.8 | 3750 | `75d84292-9fe6-4878-a646-8482194b8bed` |
| 3669 | `PaddedCaparison04_m10` | Quilted caparison with breeching | 28.8 | 3750 | `58f79fdd-143e-413e-a72f-71bcf3cca192` |
| 3670 | `PaddedCaparison04_mSemin` | Quilted caparison with breeching | 28.8 | 3750 | `47c73480-49b4-4788-9a2d-065fbdb7e563` |
| 3671 | `PaddedCaparison05_m01` | Quilted caparison with breeching | 28.8 | 3750 | `7281b200-ed5b-4f8a-8ad2-4be277437ca4` |
| 3672 | `PaddedCaparison05_m02` | Quilted caparison with breeching | 28.8 | 3750 | `088ce19a-dac6-4243-9055-3f6b8319503e` |
| 3673 | `PaddedCaparison05_m03` | Quilted caparison with breeching | 28.8 | 3750 | `2d604b81-801d-45fe-ac88-0a2eae2dbb38` |
| 3674 | `PaddedCaparison05_m04` | Quilted caparison with breeching | 28.8 | 3750 | `f31bacdd-7bc7-47f5-a4b8-c907aea56e82` |
| 3675 | `PaddedCaparison05_m05` | Quilted caparison with breeching | 28.8 | 3750 | `dd8ed70b-7225-47bb-886b-0514a1d9471f` |
| 3676 | `PaddedCaparison05_m06` | Quilted caparison with breeching | 28.8 | 3750 | `a7d4c077-4813-4632-8e1c-4689ed792fe1` |
| 3677 | `PaddedCaparison05_m07` | Quilted caparison with breeching | 28.8 | 3750 | `4af690ff-f83b-47d4-a551-449cf7270021` |
| 3678 | `PaddedCaparison05_m08` | Quilted caparison with breeching | 28.8 | 3750 | `7084e3e7-a865-47bd-823e-0de2c4ac5c08` |
| 3679 | `PaddedCaparison05_m09` | Quilted caparison with breeching | 28.8 | 3750 | `31c45b42-342f-4372-bdaf-02507111a92b` |
| 3680 | `PaddedCaparison05_m10` | Quilted caparison with breeching | 28.8 | 3750 | `30e40e6d-6bc0-4543-98e4-f1e0d9678bc9` |
| 3681 | `PaddedCaparison05_mLeipa` | Quilted caparison with breeching | 28.8 | 3750 | `e6233a38-9ffb-4ca9-aa52-85d36361a438` |
| 3682 | `PaddedCoifLarge_placeholder` | A suspicious bag | 10 | 529 | `41766893-0309-b874-5531-e52dc0eb7cba` |
| 3683 | `PaddedCoifMail_placeholder` | A suspicious bag | 13 | 162 | `4d197020-1241-490b-7ae7-6360dcb888ac` |
| 3752 | `podMostem_tunic` | Old tunic | 1 | 82 | `085e326b-5677-4ed6-86f2-114ea5217e5f` |
| 3762 | `poi_luffy_strawhat` | Strange strawhat | 36 | 570 | `7b672958-3452-4d3e-afd0-07baccde7f57` |
| 3801 | `poi_vodnik_vodnikovyKalhoty` | Water goblin's hose | 0.5 | 248 | `5fb45d64-c10f-4a7a-b713-e32e940239e1` |
| 3921 | `Pourpoint_placeholder` | A suspicious bag | 7 | 746 | `46fbcca7-a792-b039-b87e-24c26f6373a7` |
| 3922 | `PourpointDevil01_m01` | A suspicious bag | 34 | 3703 | `5051c16a-437e-4cfa-b25e-f67566f52736` |
| 3923 | `PourpointDevil01_mNoDagger` | A suspicious bag | 9 | 624 | `5dc7e2a4-9082-401a-863d-34aae06619c2` |
| 3924 | `PourpointDevil01_mNoDaggerWithBags` | A suspicious bag | 9 | 624 | `6606ae71-7d17-43fa-bb0f-6055eb5b130f` |
| 3938 | `pracharna_concubineDress` | Tyrol brocade cotehardie | 5 | 5336 | `f75371a0-6d02-4d18-8a78-a5c63882968a` |
| 3948 | `prepadeni_henryWetBreeches` | A suspicious bag | 31 | 845 | `72ceac2a-6dd6-4857-b53a-1d564ed1c0b6` |
| 3949 | `prepadeni_hitchedUpSkirt01_m01` | A suspicious bag | 10 | 1216 | `4634df53-53ee-4127-a0ca-536e79a8a8c7` |
| 3950 | `prepadeni_hitchedUpSkirt01_m02` | A suspicious bag | 31 | 194 | `d8b18f36-8aaf-4d3d-8ffc-d12b297f80c4` |
| 3951 | `prepadeni_hitchedupskirtkatherine_m01` | A suspicious bag | 4 | 2029 | `bc0e04e5-2b4d-481e-b897-b2e9c79e06c4` |
| 3952 | `prepadeni_voves_ring` | Oats' ring | 0 | 885 | `0d46f211-2ceb-4115-ad5c-96e5a1ba8cb9` |
| 3966 | `prop_bagOverHead` | A suspicious bag | 40 | 567 | `43852f3d-ed8c-4369-b5d7-4b7c05ef6c50` |
| 3975 | `prop_Brigandine05_m03_back` | A suspicious bag | 8 | 7336 | `8c2f483c-3efc-4439-9eb8-30a825581a6b` |
| 3976 | `prop_Brigandine05_m03_front` | A suspicious bag | 40 | 453 | `b708a913-da79-4300-8141-a081a73b708f` |
| 3977 | `prop_Brigandine05_m03_shoulder_left` | A suspicious bag | 3 | 300 | `767733e7-9737-4636-998d-65857799b242` |
| 3978 | `prop_Brigandine05_m03_shoulder_right` | A suspicious bag | 8 | 1700 | `bb69f051-ce6f-4039-8579-5e5007d8d351` |
| 3979 | `prop_Cuirass07_m02_back` | A suspicious bag | 10 | 1116 | `4d50a7c3-e991-4e75-a47b-45ca138364d5` |
| 3980 | `prop_Cuirass07_m02_front` | A suspicious bag | 10 | 1444 | `76d32b03-9c46-49e5-b5d5-329194a79889` |
| 3981 | `prop_Cuirass07_m02_shoulder_left` | A suspicious bag | 22 | 3112 | `406dc85d-9cb1-4926-b72f-b57490b9cec9` |
| 3982 | `prop_Cuirass07_m02_shoulder_right` | A suspicious bag | 43 | 237 | `26ae783b-2138-476e-88e4-6a5184b08f0e` |
| 3984 | `prop_GambesonLong01_mHenryTrailerDream` | Long gambeson | 3 | 3221 | `a5e0e48b-0565-495e-8203-a58812cbccec` |
| 3985 | `prop_Scabbard_Falchion_m01` | A suspicious bag | 22 | 2953 | `90311895-1fe3-4d48-8251-d8e4aae1e319` |
| 3986 | `prop_Scabbard_HuntingSword_m01` | A suspicious bag | 13 | 144 | `83d2601a-e29e-4cc5-b489-3da1190d5e72` |
| 3987 | `prop_Scabbard_LongSword01` | A suspicious bag | 10 | 6164 | `f547b4ed-255b-4716-b239-b8d1b34abdee` |
| 3988 | `prop_Scabbard_LongSword01_m01` | A suspicious bag | 24 | 10693 | `a3f1ffe2-8bc8-4411-843e-4ac3231257a9` |
| 3989 | `prop_Scabbard_LongSword01_m02` | A suspicious bag | 25 | 134 | `22bdc463-8a82-4a98-8203-72d42f9bd62b` |
| 3990 | `prop_Scabbard_LongSword01_m03` | A suspicious bag | 4 | 141 | `d25b23d1-2fda-4683-8bbf-6a98a8dc3436` |
| 3991 | `prop_Scabbard_LongSword01_m04` | A suspicious bag | 3 | 162 | `961591fe-76c1-4fa6-a421-978de372804a` |
| 3992 | `prop_Scabbard_LongSword01_m05` | A suspicious bag | 8 | 740 | `8fffa592-f442-43cb-8c83-6a960667a6be` |
| 3993 | `prop_Scabbard_LongSword02` | A suspicious bag | 10 | 7465 | `36dfd94f-9d92-4490-81b5-092a5f3b14eb` |
| 3994 | `prop_Scabbard_LongSword02_m01` | A suspicious bag | 10 | 15804 | `09567135-d301-4eb4-8876-f3be04e904e0` |
| 3995 | `prop_Scabbard_LongSword02_m02` | A suspicious bag | 29 | 6231 | `3b7e27a0-7375-4076-b406-90ab532c9323` |
| 3996 | `prop_Scabbard_LongSword02_m03` | A suspicious bag | 4 | 1116 | `53e2fe23-cfd2-453e-b059-4f244251e41d` |
| 3997 | `prop_Scabbard_LongSword02_m04` | A suspicious bag | 34 | 1216 | `ee6fa981-c5ba-42e7-a956-afed86202eb4` |
| 3998 | `prop_Scabbard_LongSword02_m05` | A suspicious bag | 13 | 180 | `85733268-6749-4c56-9f37-b3587512b60b` |
| 3999 | `prop_Scabbard_LongSword03` | A suspicious bag | 8 | 233 | `cded28ab-9b98-49cf-b544-0e05dd87b8dd` |
| 4000 | `prop_Scabbard_LongSword03_m01` | A suspicious bag | 10 | 1011 | `b84c0e49-d279-4a80-8d62-7374ae3cb054` |
| 4001 | `prop_Scabbard_LongSword03_m02` | A suspicious bag | 10 | 137 | `cd525ef4-d2f3-4227-bc0e-e8e6f1e49676` |
| 4002 | `prop_Scabbard_LongSword03_m03` | A suspicious bag | 3 | 757 | `52ee5016-ef12-48e9-8dd7-493128d81cdd` |
| 4003 | `prop_Scabbard_LongSword03_m04` | A suspicious bag | 8 | 12000 | `82735e11-dab2-463d-863d-b1858c4b9ef5` |
| 4004 | `prop_Scabbard_LongSword03_m05` | A suspicious bag | 10 | 4000 | `e931202b-bd5f-4351-b97c-75a5a2a12f81` |
| 4005 | `prop_Scabbard_LongSword04` | A suspicious bag | 13 | 9124 | `faa30fee-39bc-41e2-9c59-b6c82b84b438` |
| 4006 | `prop_Scabbard_LongSword04_m01` | A suspicious bag | 8 | 241 | `afc7e686-9be8-49a4-b1bd-a2b740d3581c` |
| 4007 | `prop_Scabbard_LongSword04_m02` | A suspicious bag | 5 | 708 | `58bbc590-7e57-4e7f-85e5-39f2f768e97a` |
| 4008 | `prop_Scabbard_LongSword04_m03` | A suspicious bag | 10 | 6164 | `a3f652b1-dd99-4862-9256-85416824b8b8` |
| 4009 | `prop_Scabbard_LongSword04_m04` | A suspicious bag | 29 | 6521 | `fbe48ef0-40da-424e-af44-41e9e7579437` |
| 4010 | `prop_Scabbard_LongSword04_m05` | A suspicious bag | 3 | 1619 | `1b6b44b7-69ad-4ccf-836b-a9469d5701c3` |
| 4011 | `prop_Scabbard_LongSwordBergov` | A suspicious bag | 10 | 146 | `2bbd9b10-5108-4aa0-a6d4-1f3849754b87` |
| 4012 | `prop_Scabbard_LongSwordCapon` | A suspicious bag | 29 | 493 | `7ab34533-7d0d-46d3-82dc-8702aacd7d91` |
| 4013 | `prop_Scabbard_LongSwordDevil` | A suspicious bag | 4 | 134 | `39592e0f-00d3-472f-ab02-306de06c2499` |
| 4014 | `prop_Scabbard_LongSwordEvangelists` | A suspicious bag | 10 | 146 | `6e603436-70b6-4371-ab12-f8894803152c` |
| 4015 | `prop_Scabbard_LongSwordProgressive` | A suspicious bag | 10 | 146 | `b6b1cab6-d5c1-456b-935c-cc4f147c9391` |
| 4016 | `prop_Scabbard_Sabre_m01` | A suspicious bag | 10 | 770 | `a14c32e4-3e23-41b5-af0c-980b3c35090f` |
| 4017 | `prop_Scabbard_SabreLionHead_m01` | A suspicious bag | 10 | 770 | `52765e9f-6627-4662-9103-caf194e3780a` |
| 4018 | `prop_Scabbard_ShortSword01` | A suspicious bag | 12 | 198 | `1017066a-aa4d-4f37-83db-adc9c4d45208` |
| 4019 | `prop_Scabbard_ShortSword01_m01` | A suspicious bag | 34 | 10693 | `391e4eb4-bc8f-49f7-ae76-034d65f763ff` |
| 4020 | `prop_Scabbard_ShortSword01_m02` | A suspicious bag | 4 | 1711 | `dced0b0e-3bc3-4fa3-9c12-016e3ee1be12` |
| 4021 | `prop_Scabbard_ShortSword01_m03` | A suspicious bag | 9 | 1225 | `21be124d-23de-4ed6-aba2-09a8d494c7fc` |
| 4022 | `prop_Scabbard_ShortSword01_m04` | A suspicious bag | 9 | 320 | `ad08bfd8-430c-4310-a186-e9fefbbe638d` |
| 4023 | `prop_Scabbard_ShortSword01_m05` | A suspicious bag | 10 | 267 | `e78d6a70-5556-4d82-9c8c-c24a8e59e803` |
| 4024 | `prop_Scabbard_ShortSword02` | A suspicious bag | 9 | 1990 | `91a0565b-ed4a-4aa1-96bc-867778219704` |
| 4025 | `prop_Scabbard_ShortSword02_m01` | A suspicious bag | 12 | 106 | `59976257-5352-43dd-8b2b-1c17831b7a7d` |
| 4026 | `prop_Scabbard_ShortSword02_m02` | A suspicious bag | 10 | 2018 | `2a29a32f-3ed2-40aa-ba5e-933824ffb66a` |
| 4027 | `prop_Scabbard_ShortSword02_m03` | A suspicious bag | 10 | 3770 | `4907ee7b-a80a-4567-9873-2f500e1f82c9` |
| 4028 | `prop_Scabbard_ShortSword02_m04` | A suspicious bag | 43 | 974 | `5d33ea40-f8f0-46ff-90d3-bbf9b68847c3` |
| 4029 | `prop_Scabbard_ShortSword02_m05` | A suspicious bag | 8 | 1949 | `2919b642-b0eb-4399-a041-464d8a00c51a` |
| 4030 | `prop_Scabbard_ShortSwordBergov` | A suspicious bag | 40 | 1810 | `e6d5d765-bb71-48aa-b0a9-a04c905cc9d0` |
| 4031 | `prop_Scabbard_ShortSwordBrabant` | A suspicious bag | 10 | 9436 | `aa7fee92-7e24-45fa-8035-7b424836abb1` |
| 4032 | `prop_Scabbard_ShortSwordZizka` | A suspicious bag | 8 | 120 | `84bb65a1-42eb-47a7-841a-03a9a8260dfe` |
| 4033 | `prop_TunicShort01_m01_D` | Short tunic | 25 | 350 | `883c45f0-2848-40c6-98f7-509926384020` |
| 4071 | `rasuvUcen_knackersGloves` | Knacker's gloves | 0.9 | 769 | `36a701ed-2144-452a-b113-385efba2c0d1` |
| 4157 | `ring_engraved_gem` | Engraved gemstone ring | 0 | 2638 | `5d628c15-9586-41a4-b9ff-67bd734771be` |
| 4158 | `ring_gem` | Gemstone ring | 0 | 2638 | `158f44ac-7078-4deb-97a1-fad69075e483` |
| 4159 | `ring_golden_cross` | Golden cross ring | 0 | 6600 | `0e43c996-01ac-49f5-9389-bd458dbd01d9` |
| 4160 | `ring_golden_large` | Solid gold ring | 0 | 6600 | `596b3395-6db0-4357-b02c-42bfdde8bc96` |
| 4162 | `Ring_placeholder` | A suspicious bag | 19 | 3781 | `3e0c1595-4274-4997-b2d0-b83d5baec4e2` |
| 4163 | `ring_poi_cistenaStudanka` | Old ring | 0 | 1469 | `e4f0e247-29b6-4cb7-9101-feb1cda53f5d` |
| 4164 | `ring_silver_engraved` | Engraved silver ring | 0 | 1469 | `40237d19-ed2f-4fe1-8924-76e2a2854f34` |
| 4165 | `ring_silver_gem` | Gemstone silver ring | 0 | 1469 | `91147117-cdbc-4f7d-b216-5584ca4ac009` |
| 4166 | `RingsSamuel_m01` | Oats' ring | 0 | 1177 | `7b3cce77-4ab8-4b81-ba77-5e26fbdb42f1` |
| 4213 | `Saddle_placeholder` | A suspicious bag | 8 | 106 | `51297fea-ac38-4dae-ae93-5f7ad66e7f28` |
| 4229 | `sedmStatecnych_ZizkaCoat` | Hunting coat | 10 | 6753 | `42a353f0-2794-4444-9a98-b2c6a7f98671` |
| 4252 | `setkaniVRatbori1_cupbearerCap` | Royal waiter's hat | 0.5 | 433 | `e1a1ad3b-cfeb-444d-993f-880d851a38da` |
| 4253 | `setkaniVRatbori1_cupbearerCoat` | Royal waiter's coat | 2.9 | 1288 | `3b57616c-7a48-4d5c-b149-665be1a1cbd4` |
| 4254 | `setkaniVRatbori1_cupbearerPants` | The hose of a royal waiter | 0.5 | 1001 | `96586306-727e-4336-82bc-ff01c3fee935` |
| 4619 | `Shoes01_m01_D` | Simple shoes | 1 | 1086 | `1149024d-72f5-405d-8edb-041d58b59f74` |
| 4620 | `Shoes01_m02_D` | Simple shoes | 1 | 1086 | `faed9509-92fe-42f2-be78-3c07d2c494b5` |
| 4621 | `Shoes01_m03_D` | Simple shoes | 1 | 1086 | `5fa40d05-bd02-480d-81ec-9b34263a88d1` |
| 4622 | `Shoes01_m04_D` | Simple shoes | 1 | 1225 | `5a0fb76a-1999-450d-ab39-48cf75d9952e` |
| 4623 | `Shoes01_m05_D` | Simple shoes | 1 | 1086 | `15f5c276-12c5-4a84-9708-bc78102da03f` |
| 4624 | `Shoes01_m06_D` | Simple shoes | 1 | 1086 | `fe43bcae-b562-4c02-a484-390a784a1b90` |
| 4625 | `Shoes01_m07_D` | Simple shoes | 1 | 1294 | `317fe073-1c63-454c-99b1-ef3615fa49de` |
| 4626 | `Shoes01_m08_D` | Simple shoes | 1 | 1086 | `1c945f16-049b-4b36-a925-d32ab7939861` |
| 4627 | `Shoes01_mCapon` | Simple shoes | 1 | 1675 | `055b2c57-174b-4a57-9912-aad81a134926` |
| 4628 | `Shoes01_mDevil_D` | Simple shoes | 1 | 1190 | `50ed5626-8248-4116-a54e-75fd76c88352` |
| 4629 | `Shoes01_mTwitch_D` | Cutpurse's shoes | 0.9 | 2200 | `86eb09e2-7dcb-4c46-a357-a70c3749ba33` |
| 4630 | `Shoes02_m01_B` | Burgher's shoes | 1 | 2092 | `e2fc390a-b158-4796-839d-f200e65305c3` |
| 4631 | `Shoes02_m02_B` | Burgher's shoes | 1 | 1675 | `4d9e267d-72db-43b0-97a5-7d48b5eb2fde` |
| 4632 | `Shoes02_m03_B` | Burgher's shoes | 1 | 1953 | `b1ccc94a-9584-4bca-80df-8e93e1cbd36c` |
| 4633 | `Shoes02_m04_B` | Burgher's shoes | 1 | 1675 | `a94f1ef3-5328-462b-b18a-18375c515795` |
| 4634 | `Shoes02_m05_B` | Burgher's shoes | 1 | 2092 | `1d308af8-c7d5-4738-8a08-972e4c36c067` |
| 4635 | `Shoes02_m06_B` | Burgher's shoes | 1 | 1675 | `793ae9c7-739f-4754-a6c8-530d29c50b0a` |
| 4636 | `Shoes02_m07_B` | Burgher's shoes | 1 | 2092 | `93ff6de8-435d-495a-bc43-91a783669cc7` |
| 4637 | `Shoes02_m08_B` | Burgher's shoes | 1 | 1675 | `910d7740-736b-414a-9876-c066bfff35c5` |
| 4638 | `Shoes02_mJobst_B` | Burgher's shoes | 1 | 1884 | `ff692a18-0b9a-4725-96ff-f5e55bd3a2f2` |
| 4639 | `Shoes02_mOderin_B` | Burgher's shoes | 1 | 1675 | `ce7ca2e0-efcf-41d9-bfb0-b76673067c05` |
| 4640 | `Shoes03_m01_C` | Soft shoes | 1 | 1380 | `ffd9af7c-d24d-4e70-8c25-ad22a37a64e7` |
| 4641 | `Shoes03_m02_C` | Soft shoes | 1 | 1589 | `a8a8db9c-955c-410f-9d47-1af70d917900` |
| 4642 | `Shoes03_m03_C` | Thief's shoes | 0.9 | 3150 | `ebe75b4a-eb09-406a-b6c4-4f608288f312` |
| 4643 | `Shoes03_m04_C` | Soft shoes | 1 | 1380 | `627e8530-e405-487b-9bef-7f85d2459360` |
| 4644 | `Shoes03_m05_C` | Soft shoes | 1 | 1380 | `2f5d0549-b885-44c9-a82b-2b2b3a2c5837` |
| 4645 | `Shoes03_m06_C` | Soft shoes | 1 | 1693 | `0f49fa33-1985-4da3-8aae-f497df6f95ec` |
| 4646 | `Shoes03_m07_C` | Soft shoes | 1 | 1693 | `378b1660-f30b-4bf7-b240-4393636272be` |
| 4647 | `Shoes03_m08_C` | Soft shoes | 1 | 1380 | `6e9b44a4-3e7d-4c26-881f-325b3214972b` |
| 4648 | `Shoes03_mBergovCaptured` | A suspicious bag | 1 | 1675 | `0e5ead13-b7ba-42bd-bda2-97a45488f529` |
| 4649 | `Shoes03_mLegate` | Legate's shoes | 1 | 4552 | `e7d484b2-9b50-46bf-ad2a-60e627e7dc92` |
| 4650 | `Shoes04_m01_E` | Simple shoes | 1 | 791 | `765d83b6-e6c8-4caf-8fb4-cdae43c41985` |
| 4651 | `Shoes04_m02_E` | Vagrant's shoes | 0.9 | 1251 | `c3e9985d-2af6-4281-96d6-60ffee58a0b5` |
| 4652 | `Shoes04_m03_E` | Simple shoes | 1 | 791 | `899ea0bb-89ea-495c-ad69-29e76fb7bb9e` |
| 4653 | `Shoes04_m04_E` | Simple shoes | 1 | 791 | `7b6aad88-4205-48fa-b4cf-353e4b744985` |
| 4654 | `Shoes05_m01_B` | Pointed shoes | 1 | 1675 | `0fda3070-6b14-4fa9-bfd1-26da6924d32e` |
| 4655 | `Shoes05_m02_B` | Pointed shoes | 1 | 1675 | `62d366b2-9a4d-40ad-a8c8-f7e0bf663dd9` |
| 4656 | `Shoes05_m03_B` | Pointed shoes | 1 | 1675 | `ee8a0292-d4be-4066-a4b1-edb18f1e7b44` |
| 4657 | `Shoes05_m04_B` | Pointed shoes | 1 | 2092 | `62c7912d-ae32-4217-83ba-440e01061aa0` |
| 4658 | `Shoes05_m05_B` | Pointed shoes | 1 | 2092 | `47177c29-7a96-46ec-bbc9-41ebba18b5d0` |
| 4659 | `Shoes05_m06_B` | Pointed shoes | 1 | 1675 | `6ec70dbb-bba6-4d9a-88ec-d0b82d794ad9` |
| 4660 | `Shoes05_m07_B` | Pointed shoes | 1 | 2092 | `c3dbbdd5-f7cb-402f-91c8-de7fa0c7f2f5` |
| 4661 | `Shoes05_m08_B` | Pointed shoes | 1 | 1675 | `1bbaa5e7-4ac0-49e8-ae26-b8f2b524ce75` |
| 4662 | `Shoes05_mPainter` | Pointed shoes | 1 | 1735 | `52f6b0a3-0ec7-4b6e-a820-a06022f916c1` |
| 4663 | `Shoes05_mSamuel` | A suspicious bag | 1 | 1380 | `477cf18d-36c6-42fd-9ca3-23fc4f204ac9` |
| 4664 | `Shoes_placeholder` | A suspicious bag | 14 | 790 | `cef7e87d-ab9a-4359-a82c-73906f5fed51` |
| 4665 | `ShoesCaponArmored_m01` | A suspicious bag | 1 | 496 | `b436b689-12e4-4b1e-8407-427c92d9d2c3` |
| 4698 | `simple_dress_placeholder` | A suspicious bag | 3 | 209 | `f8edf520-91e9-4c8e-b998-8bc0d9c209e4` |
| 4806 | `SkullCap_placeholder` | A suspicious bag | 34 | 1350 | `4ee2a4de-65de-89f7-ca92-31cd5ae76093` |
| 4842 | `Spectacles01_m01` | Spectacles | 0 | 2807 | `d7b58b33-f452-4408-ba18-e8618eb3f1dd` |
| 4843 | `Spectacles01_m01_parler` | Parler's spectacles | 0 | 50 | `c10bd371-4627-4d79-a388-d6123a94e20c` |
| 4844 | `Spectacles01_mBroken` | Spectacles | 0 | 2807 | `c42d68c5-cdf4-4d39-9b02-5973368ccc4f` |
| 4852 | `spizovaciOddil_ringFromPlagueGrave` | Ordinary ring | 0 | 740 | `9194ec83-6bf0-427f-ab79-ca17ce3445f4` |
| 4853 | `spizovaciOddil_vrbasRewardNecklace` | Virgin Mary medallion | 0 | 1221 | `474c36a4-6427-4276-a542-73ebbfbe860b` |
| 4855 | `spravedlnost_boots` | Fine shoes of cobbler Vejmola | 1 | 1380 | `6aabb9c9-5137-4bac-ac80-723b133cdba2` |
| 4856 | `spravedlnost_ring` | Silver cake ring | 0 | 1469 | `84d99c7d-5b69-4d1b-ad82-49808001b127` |
| 4860 | `Spurs01_m01_C` | Rowel spurs | 0.5 | 1000 | `1113ab25-a055-478e-b0c9-42b5d0cb2c6d` |
| 4861 | `Spurs01_m02_C` | Hungarian spurs | 0.5 | 2180 | `e7ea71a6-c19a-4dc4-b9b3-57c6361d1db1` |
| 4862 | `Spurs01_m03_C` | Knight's spurs | 0.5 | 4618 | `d72bfeaa-f17c-44be-968c-ebcba5da7a61` |
| 4863 | `Spurs01_m04_C` | Noble's spurs | 0.5 | 8000 | `81912e06-3a19-438f-ba3b-01ed492b9d93` |
| 4864 | `Spurs_placeholder` | A suspicious bag | 10 | 120 | `4f38fc34-fcb6-1860-5f8b-4df39f0c72bd` |
| 4898 | `svatba_groomsWreath` | A suspicious bag | 8 | 206 | `6e2be654-1f44-4ab4-813d-f13cd842c766` |
| 4901 | `svatba_ringFromChamberlein` | Chamberlain's ring | 0 | 2054 | `76d8cec6-eb5b-4030-a568-f6fb63f99d86` |
| 4904 | `svatba_tournamentCheapRing` | Cheap ring | 0 | 150 | `fcf3b5a7-7c66-4809-a0dc-b0b7bae6c296` |
| 4905 | `svatba_tournamentRewardNecklace` | Lord Semine's necklace | 0 | 731 | `b9182c51-a70c-4b00-9101-8900958e021e` |
| 4917 | `taboryKutnohorsko_pukavecCap` | Eggman's hat | 0.5 | 76 | `bb7c554b-119a-424a-a6b4-3989046a858f` |
| 4922 | `taboryTrosecko_casperRing` | Casper's ring | 0 | 1469 | `1b4fb17c-c1f8-4935-924a-9609aa05b882` |
| 4923 | `taboryTrosecko_karlikCap` | Handsome Charlie's hat | 0.5 | 642 | `d0a78087-0630-4dcf-907b-f579f06e7d6c` |
| 4925 | `taboryUCesty_barnabasSilverRingSecond` | Barnabas' Ring | 0.1 | 480 | `4d112f7f-d47b-49dc-b6c2-2f2a34e8b2de` |
| 4942 | `tesr_rrr2` | A suspicious bag | 3 | 158 | `40b5371b-6235-e4de-db1e-4528b11a25b6` |
| 4943 | `test` | A suspicious bag | 8 | 0 | `4cb04f94-b9e2-3ffc-83bb-229c917e5194` |
| 4951 | `test viceslotovy111111` | A suspicious bag | 3 | 64 | `43858f99-def2-df4b-b86d-8dd9f6773ea5` |
| 4952 | `test viceslotovy2` | A suspicious bag | 25 | 4000 | `44eaf3b9-c5a3-9225-1573-2a85e7c1e780` |
| 4953 | `test viceslotovy_12` | A suspicious bag | 11 | 120 | `416511f7-268c-03fe-6cd2-2135987e2686` |
| 4954 | `test viceslotovy_renamed` | A suspicious bag | 11 | 246 | `49598d90-3804-8b6b-d775-0758ad24d682` |
| 4955 | `test_antistealth_boots` | A suspicious bag | 40 | 1619 | `38d4a88c-068f-4067-8000-0604b3d41ac8` |
| 4956 | `test_antistealth_jacket` | A suspicious bag | 31 | 194 | `70405729-62b8-4ea9-b369-4e7e73cfb74a` |
| 4957 | `test_antistealth_pants` | A suspicious bag | 12 | 3224 | `dab2c84b-83b8-4214-920c-03042e38209e` |
| 4984 | `test_BascinetOpen01_m01_D2` | A suspicious bag | 12 | 1 | `b107b189-0000-4eae-bc64-2a23bd650b14` |
| 4985 | `test_best_Cap06_m01_C` | A suspicious bag | 8 | 100 | `083f9cc6-fd41-4c5d-0010-cc63d7a1bc1b` |
| 4987 | `test_better_BascinetOpen01_m01_D2` | A suspicious bag | 40 | 10 | `b107b189-7eea-4eae-0010-2a23bd650b14` |
| 4988 | `test_better_BootsAnkle01_m01_C` | A suspicious bag | 10 | 100 | `5d5b2f4d-5f18-4fbf-ae2e-6eccbd8f92ea` |
| 4989 | `test_better_CoifMail01_m01_C3` | A suspicious bag | 31 | 10 | `d20252f7-51f0-4f8e-0010-b086fcec15be` |
| 4993 | `test_blacksmith_horseshoe` | A suspicious bag | 10 | 120 | `7d1be726-749b-4540-8982-da148fc826b5` |
| 4998 | `test_BootsAnkle01_m01_C` | A suspicious bag | 29 | 1 | `5d5b2f4d-0000-4ebe-ae2e-6eccbd8f92ea` |
| 5001 | `test_BrigandineArm01_m01_D2` | A suspicious bag | 13 | 1 | `86055ea8-0000-47f2-a976-e5453bdf84d1` |
| 5003 | `test_Cap06_m01_C` | A suspicious bag | 3 | 1 | `083f9cc6-0000-4c5d-9f3a-cc63d7a1bc1b` |
| 5005 | `test_Coat02_m02_D` | A suspicious bag | 3 | 1 | `26e12ed8-aaaa-46d0-9c77-72dff2ad5606` |
| 5007 | `test_CoifCap01_m01_C` | A suspicious bag | 7 | 1 | `1b4b6487-0000-409e-9296-692b53e0429e` |
| 5008 | `test_CoifMail01_m01_C3` | A suspicious bag | 8 | 1 | `d20252f7-0000-4f8e-857c-b086fcec15be` |
| 5012 | `test_Cuirass01_m01_C2` | A suspicious bag | 8 | 1 | `85bf9cdb-0000-4ff3-b77e-a01319ed87d3` |
| 5014 | `test_damaVNesnazich_dress` | A suspicious bag | 36 | 1 | `991526e6-7014-4df7-bc19-3d50dfa265c6` |
| 5015 | `test_F_SimpleDress02_m03` | A suspicious bag | 19 | 666666 | `496fe570-758e-474c-a6b8-95b5849ae0c8` |
| 5016 | `test_GambesonShort01_m01_C2` | A suspicious bag | 13 | 1 | `6069fdce-0000-4870-815b-20c37aeda40c` |
| 5017 | `test_Gauntlets01_m01_D2` | A suspicious bag | 8 | 1 | `63eff267-0000-43fd-a5ec-132c89c286f0` |
| 5020 | `test_HoseJoined01_m01_D` | A suspicious bag | 19 | 1 | `f3aa4492-0000-4ce3-9e41-784cbac8801f` |
| 5022 | `test_inventory_armor` | A suspicious bag | 8 | 1 | `b6e7c070-3d15-23e5-e206-37455905374a` |
| 5024 | `test_invisible_boots` | A suspicious bag | 12 | 1 | `c6053348-3bfd-43c5-a716-2aad4143ba35` |
| 5026 | `test_invisible_hood` | A suspicious bag | 11 | 1 | `a4e01cf1-78af-4692-b6db-7c6be15cbe4c` |
| 5027 | `test_invisible_jacket` | A suspicious bag | 31 | 100 | `c8d7fd2d-8237-47f5-a8f6-17549ff59a4e` |
| 5028 | `test_invisible_pants` | A suspicious bag | 10 | 1 | `47e60a8f-e458-454c-861f-bd596c9d18df` |
| 5029 | `test_LegsBrigandine01_m01_C2` | A suspicious bag | 40 | 1 | `3b912b8e-0000-43e6-a53f-8136b7ae3e99` |
| 5030 | `test_LegsPadded01_m01_E1` | A suspicious bag | 5 | 1 | `a363573e-0000-4eda-9b44-d9d9ddf47a5d` |
| 5035 | `test_night_rescue_boots` | A suspicious bag | 12 | 120 | `9e6badb0-3249-4e3c-9707-0092dc62572f` |
| 5036 | `test_night_rescue_jacket` | A suspicious bag | 3 | 120 | `275bc631-75cb-41ad-be6c-bc9f319fcb5d` |
| 5037 | `test_night_rescue_pants` | A suspicious bag | 9 | 1 | `bc9cee60-c0b3-4f83-95e3-e55d493360ab` |
| 5045 | `test_ring_beautiful` | A suspicious bag | 11 | 1 | `69ff2530-2556-439f-a486-a073ee44fb61` |
| 5046 | `test_ring_horrific` | A suspicious bag | 10 | 1 | `6edc8135-6795-4f18-81fc-95b22503afbb` |
| 5051 | `test_SkullCap01_m01_E1` | A suspicious bag | 10 | 1 | `3b0a1c2e-0000-47d6-b5f4-ac798318e86d` |
| 5052 | `test_stealth_boots` | A suspicious bag | 36 | 1 | `c9e42db7-4f90-4b4f-89f1-b3a81e7e2108` |
| 5054 | `test_stealth_jacket` | A suspicious bag | 36 | 1 | `60e78fa6-2155-4f5f-8173-5fd0cfd4f314` |
| 5055 | `test_stealth_pants` | A suspicious bag | 29 | 1 | `5450027a-1499-4b4c-ab96-6370976fc2da` |
| 5060 | `test_TunicLong01_m01_D` | A suspicious bag | 4 | 1 | `777154c4-0000-4d59-bbbb-323bbceefc3e` |
| 5067 | `TorsoPainter_flipped_m01` | Painter Vojtiech's pourpoint | 34 | 3703 | `35010aa0-a184-41bc-97c5-85ab12e048cd` |
| 5068 | `TorsoPainter_m01` | Painter Vojtiech's pourpoint | 34 | 3703 | `eda316a4-59d9-49ae-b67b-f6837789bd0c` |
| 5069 | `TorsoPainter_m02` | Painter Vojtiech's apron | 1 | 182 | `2d4c5a3b-f83a-42e7-bbc4-ee83d5d8a31c` |
| 5094 | `TunicLong01_m01_C` | Tunic | 1 | 301 | `777154c4-0a50-4d59-bbbb-323bbceefc3e` |
| 5095 | `TunicLong01_m02_C` | Tunic | 1 | 455 | `5a245999-c72a-449e-9ef5-3006e42e031c` |
| 5096 | `TunicLong01_m03_C` | Tunic | 1 | 455 | `07de606e-742b-4195-a8f1-6d19884d49bf` |
| 5097 | `TunicLong01_m04_C` | Tunic | 1 | 301 | `a1d895cb-0495-45dc-be7b-0b72698c8116` |
| 5098 | `TunicLong01_m05_C` | Pickpocket's tunic | 0.9 | 382 | `6dd6d009-084d-48e8-a344-646d06467a4f` |
| 5099 | `TunicLong01_m06_C` | Tunic | 1 | 455 | `74bf3396-241c-4c6b-a886-f5f966048852` |
| 5100 | `TunicLong01_m07_C` | Tunic | 1 | 301 | `5b0a97b2-a305-40d8-93b9-8319eea92840` |
| 5101 | `TunicLong01_m08_C` | Tunic | 1 | 301 | `3027c1fd-c093-42d6-acf0-f1794adaac2b` |
| 5102 | `TunicLong01_m09_C` | Tunic | 1 | 301 | `6998be01-738e-4294-ad41-f164194f3afd` |
| 5103 | `TunicLong01_m10_C` | Tunic | 1 | 455 | `c7183715-ee95-4bd5-b788-c72ba5ac405b` |
| 5104 | `TunicLong01_m11_C` | Tunic | 1 | 455 | `47b7d91a-d691-4f20-afff-bef80580dcc5` |
| 5105 | `TunicLong01_m12_C` | Tunic | 1 | 301 | `72838e2a-40ff-445d-acdf-16555ca8c185` |
| 5106 | `TunicLong02_m01_C` | Innkeeper tunic | 1 | 455 | `7c557521-9b40-44bc-a34b-2a52097110fd` |
| 5107 | `TunicLong02_m02_C` | Innkeeper tunic | 1 | 301 | `93352a50-a605-455d-b873-be575a68b134` |
| 5108 | `TunicLong02_m03_C` | Innkeeper tunic | 1 | 455 | `40727421-485b-4fff-8608-a4096e016500` |
| 5109 | `TunicLong02_m04_C` | Innkeeper tunic | 1 | 455 | `7f2e56ae-21b3-41c5-a0de-c6070090443a` |
| 5110 | `TunicLong02_m05_C` | Innkeeper tunic | 1 | 455 | `3af23d5b-b51d-4546-85f9-252aca92db12` |
| 5111 | `TunicLong02_m06_C` | Innkeeper tunic | 1 | 301 | `545a95c5-004e-4398-bafb-c395c09c8467` |
| 5112 | `TunicLong02_m07_C` | Innkeeper tunic | 1 | 301 | `8968966d-829f-4ce0-bd18-5d325aeb40bb` |
| 5113 | `TunicLong02_m08_C` | Innkeeper tunic | 1 | 455 | `60ec7359-d233-4de5-b29a-9cc66bcd67cb` |
| 5114 | `TunicLong02_m09_C` | Innkeeper tunic | 1 | 301 | `bb0a86e4-80b8-4f69-bf0d-09c251920f19` |
| 5115 | `TunicLong02_m10_C` | Innkeeper tunic | 1 | 455 | `e1f4007f-8228-45bc-9578-edcab5616892` |
| 5116 | `TunicLong02_m11_C` | Innkeeper tunic | 1 | 413 | `8fe4bb2e-e1f3-4055-ab13-58c5f40ab8f9` |
| 5117 | `TunicLong02_m12_C` | Innkeeper tunic | 1 | 455 | `0a9f1379-9c65-4b7d-8d26-5639a67724d6` |
| 5118 | `TunicLong02_mPusko` | Innkeeper tunic | 1 | 413 | `274fa5c9-f374-42ee-ac15-424d91935802` |
| 5119 | `TunicLong02_mPusko_NoVest` | Innkeeper tunic | 1 | 413 | `ee06c5bd-11fc-492b-aacb-6b86e144eac0` |
| 5120 | `TunicLong03_m01_D` | Leather apron | 1 | 170 | `043136b0-da77-4ef5-b9bb-970c8daeb58f` |
| 5121 | `TunicLong03_m02_D` | Leather apron | 1 | 170 | `07c33eea-2ada-4bcb-be13-be7229ff7a85` |
| 5122 | `TunicLong03_m03_D` | Leather apron | 1 | 170 | `33fbc6fa-59cb-4c3a-a218-b35f759a9c93` |
| 5123 | `TunicLong03_m04_D` | Leather apron | 1 | 221 | `a83e7036-0c3e-4782-84f5-403f0a174d49` |
| 5124 | `TunicLong03_m05_D` | Leather apron | 1 | 221 | `1a528c99-8dc5-4866-b7e0-b7e395fa276c` |
| 5125 | `TunicLong03_m06_D` | Leather apron | 1 | 221 | `63f1a97b-c3c3-4dad-bb0a-a4dd6ecf9092` |
| 5126 | `TunicLong03_m07_D` | Leather apron | 1 | 221 | `e9e3100f-2eb9-44d7-8c2d-61d5cd713a18` |
| 5127 | `TunicLong03_m08_D` | Leather apron | 1 | 170 | `238aefb0-77a8-46ee-8ab8-9ddbc9f0c97c` |
| 5128 | `TunicLong03_m09_D` | Leather apron | 1 | 246 | `48818e87-d95f-48e4-9213-88b52b598bcd` |
| 5129 | `TunicLong03_m10_D` | Leather apron | 1 | 170 | `fe70a61e-1300-47cb-a284-fe73bcdf0630` |
| 5130 | `TunicLong03_mButcher01_D` | Butcher's apron | 1 | 170 | `f7dd31a5-d8e7-485d-a970-73f30aa6127d` |
| 5131 | `TunicLong03_mButcher02_D` | Butcher's apron | 1 | 170 | `f88fe14a-e013-43eb-987b-e99fc646675e` |
| 5132 | `TunicLong03_mButcher03_D` | Butcher's apron | 1 | 170 | `54629bd4-e83f-4c4a-8fd3-7883d156d52c` |
| 5133 | `TunicLong03_mButcher_D` | Butcher's apron | 1 | 170 | `c08804ef-dd26-46f5-80d0-d8a8ed863a0f` |
| 5134 | `TunicLong04_m01_D` | Worn tunic | 1 | 221 | `2e7d5a0a-3758-4c4c-9773-d0b7feaed665` |
| 5135 | `TunicLong04_m02_D` | Worn tunic | 1 | 170 | `342d61eb-1a28-49da-9e9e-47ef03d12c6c` |
| 5136 | `TunicLong04_m03_D` | Worn tunic | 1 | 170 | `c089bb9a-dbc0-462e-8a64-7ae78b4becc9` |
| 5137 | `TunicLong04_m04_D` | Wanderer's tunic | 0.9 | 193 | `32c7d738-95a3-401c-b644-034da5870107` |
| 5138 | `TunicLong04_m05_D` | Worn tunic | 1 | 221 | `328a4dd3-9ca5-4496-9c96-7c492fd9a6a4` |
| 5139 | `TunicLong04_m06_D` | Worn tunic | 1 | 170 | `75a2775b-94d5-4ae5-8613-f57530d052ab` |
| 5140 | `TunicLong04_m07_D` | Worn tunic | 1 | 246 | `54e5c4a0-4f3d-4a2f-b0ed-eb2a3fb24758` |
| 5141 | `TunicLong04_m08_D` | Worn tunic | 1 | 170 | `fb391cba-80cf-4c17-903a-b1129eb9fba9` |
| 5142 | `TunicLong04_m09_D` | Worn tunic | 1 | 170 | `9d4fad9a-8c08-45df-aeca-ceebe90764fe` |
| 5143 | `TunicLong04_m10_D` | Worn tunic | 1 | 246 | `3461eaa6-f9ed-4435-b18a-c0fd91dd841d` |
| 5144 | `TunicLong05_m01_E` | Beggar tunic | 1 | 41 | `7ad4078c-6119-4b31-850b-1439b4296b7c` |
| 5145 | `TunicLong05_m02_E` | Beggar tunic | 1 | 41 | `850d6119-5d19-485d-b6d8-a6888afaadb0` |
| 5146 | `TunicLong05_m03_E` | Beggar tunic | 1 | 41 | `bce329f9-35ee-4ddd-9609-39373b819a9b` |
| 5147 | `TunicLong05_m04_E` | Beggar tunic | 1 | 41 | `346ae284-5a20-41ee-84dd-5997d562b3d5` |
| 5148 | `TunicLong05_m05_E` | Beggar tunic | 1 | 41 | `bbf2f8ce-5d02-46d5-aecd-7484fa20ca18` |
| 5149 | `TunicLong05_m06_E` | Beggar tunic | 1 | 41 | `30c8a613-0b2a-4287-b1a8-3dbea94b3221` |
| 5150 | `TunicLong05_m07_E` | Beggar tunic | 1 | 41 | `12cfcce4-a268-4cb6-a2f7-c2f39c74c84b` |
| 5151 | `TunicLong05_m08_E` | Beggar tunic | 1 | 41 | `beaf76ef-b573-429c-a990-8c6996fc0230` |
| 5152 | `TunicLong05_m09_E` | Beggar tunic | 1 | 41 | `d814bbc0-4405-4b9e-b83d-7d104118a142` |
| 5153 | `TunicLong05_m10_E` | Beggar tunic | 1 | 41 | `35a9832a-6c2c-45fe-9029-682d8e4f47ee` |
| 5154 | `TunicLong05_m11_E` | Beggar tunic | 1 | 41 | `d4b4c819-cc95-4cce-8971-c5a837490378` |
| 5155 | `TunicLong05_m12_E` | Beggar tunic | 1 | 41 | `db6c9c81-65c1-4d01-a89b-f4f00b40f324` |
| 5156 | `TunicLong_placeholder` | A suspicious bag | 9 | 10 | `cd50a1b6-41b3-488b-a0c0-cc0b0d886bdd` |
| 5157 | `TunicLongSigismund_m01` | A suspicious bag | 1 | 41 | `843c4f07-c41e-4693-a024-001c07d27342` |
| 5158 | `TunicShort01_m01_D` | Short tunic | 1 | 125 | `bd23c1b7-69a5-44ac-a705-190d20a2619c` |
| 5159 | `TunicShort01_m02_C` | Short tunic | 1 | 534 | `053cb9c9-202c-4d62-93ea-ef3acd34ad2e` |
| 5160 | `TunicShort01_m03_C` | Short tunic | 1 | 534 | `552d20f8-a0b8-41ed-bb77-9f3ddd8676ec` |
| 5161 | `TunicShort01_m04_C` | Short tunic | 1 | 690 | `e1478c97-282e-4b0f-8ec4-ce8361888a84` |
| 5162 | `TunicShort01_m05_C` | Short tunic | 1 | 690 | `f65775e4-cef8-4dd5-a5ec-49a58adde69d` |
| 5163 | `TunicShort01_m06_C` | Short tunic | 1 | 690 | `8c8bb0a0-382f-408e-819d-1661850a82e3` |
| 5164 | `TunicShort01_m07_C` | Short tunic | 1 | 690 | `9868b40d-0871-4a65-afce-33604730a74b` |
| 5165 | `TunicShort01_m08_D` | Short tunic | 1 | 243 | `acd6f557-5296-4047-abab-87020c65d991` |
| 5166 | `TunicShort01_m09_C` | Short tunic | 1 | 534 | `bba6cd83-1cc4-4cc1-9c90-39ddbacb410c` |
| 5167 | `TunicShort01_m10_C` | Short tunic | 1 | 639 | `186cba50-5166-4b61-bf01-dbb8cb159590` |
| 5168 | `TunicShort01_m11_C` | Short tunic | 1 | 534 | `d4dad274-0665-4f0d-ba2d-45c3f9d9c2ea` |
| 5169 | `TunicShort01_m12_C` | Short tunic | 1 | 534 | `d8a5f1bc-8dd5-495d-8e73-86cef5344110` |
| 5170 | `TunicShort01_mHenry` | Short tunic | 1 | 125 | `6db0d8e9-5cf6-492d-94f3-3d613fdda1ef` |
| 5171 | `TunicShort02_m01_D` | Short tunic | 1 | 417 | `96a4278f-9bdd-4b30-80ed-c22deacec3b0` |
| 5172 | `TunicShort02_m02_D` | Short tunic | 1 | 417 | `6f22124c-8e9e-4396-ab53-07eaa9f5cff9` |
| 5173 | `TunicShort02_m03_D` | Short tunic | 1 | 417 | `502e2e4c-a4c0-4593-9205-f51b11ab2c56` |
| 5174 | `TunicShort02_m04_D` | Short tunic | 1 | 417 | `9093ac5b-ced2-4e17-99aa-f1342572ed78` |
| 5175 | `TunicShort02_m05_D` | Short tunic | 1 | 417 | `ef3e117e-379d-4228-a2c5-6fba383e0c0c` |
| 5176 | `TunicShort02_m06_D` | Short tunic | 1 | 417 | `197ade8a-53ff-4946-b648-ce84bb36dfd5` |
| 5177 | `TunicShort02_m07_D` | Short tunic | 1 | 417 | `1f13841c-6d7d-4735-82d3-d9f3923878ea` |
| 5178 | `TunicShort02_m08_D` | Short tunic | 1 | 417 | `21a017dc-83a3-4086-bbb2-93405534f281` |
| 5179 | `TunicShort02_m09_D` | Short tunic | 1 | 417 | `2422e31a-7a8b-4afc-87f2-00084b286049` |
| 5180 | `TunicShort02_m10_D` | Short tunic | 1 | 417 | `0e5cbf6b-88be-4a4e-8b0d-3a6f04da9046` |
| 5181 | `TunicShort03_m01_D` | Miner's tunic | 1 | 349 | `9307cce2-4994-4298-87d6-282d9641ca31` |
| 5182 | `TunicShort03_m02_D` | Miner's tunic | 1 | 349 | `f3300001-5e96-4d6b-91b3-66a78ef024cf` |
| 5183 | `TunicShort03_m03_D` | Miner's tunic | 1 | 417 | `3e066250-57a6-408e-b125-28269d8f3f7c` |
| 5184 | `TunicShort03_m04_D` | Miner's tunic | 1 | 451 | `02c1ed76-1a9b-4dfe-b4b2-65b4283afba2` |
| 5185 | `TunicShort03_m05_D` | Miner's tunic | 1 | 349 | `3a5203e8-8204-4b49-bf4b-f226382e7488` |
| 5186 | `TunicShort03_m06_D` | Miner's tunic | 1 | 417 | `818ddc7b-ec27-4585-8abc-059c8a178878` |
| 5187 | `TunicShort03_m07_D` | Miner's tunic | 1 | 349 | `3e54bbb5-6c17-488a-a41b-06f36b83b434` |
| 5188 | `TunicShort03_m08_D` | Miner's tunic | 1 | 451 | `e2590c0c-fb50-43de-a2e6-4f895e499a34` |
| 5189 | `TunicShort03_m09_D` | Miner's tunic | 1 | 349 | `36c57fd3-b52e-4dae-b14a-c4eedaaf1316` |
| 5190 | `TunicShort03_m10_D` | Miner's tunic | 1 | 349 | `2c6ad35a-c46c-4128-8881-926d02fb893a` |
| 5191 | `TunicShort03_m11_D` | Miner's tunic | 1 | 451 | `22af3622-3f94-4c63-a9c7-40b150fb7899` |
| 5192 | `TunicShort03_m12_D` | Miner's tunic | 1 | 451 | `1cfc1ce1-c2f3-402f-b49d-5457bf510091` |
| 5193 | `TunicShort04_m01_A` | Burgher pourpoint | 1 | 1867 | `841abec7-6ed2-4760-85a8-2c8ff133db25` |
| 5194 | `TunicShort04_m02_A` | Burgher pourpoint | 1 | 1867 | `2b1973d2-cabe-4775-bf67-0dac8d372e78` |
| 5195 | `TunicShort04_m03_A` | Burgher pourpoint | 1 | 1867 | `bd9c5511-4308-4b84-a783-7b2e91569e13` |
| 5196 | `TunicShort04_m04_A` | Burgher pourpoint | 1 | 1728 | `56df0912-36ce-4658-93fb-9cd48883ef9e` |
| 5197 | `TunicShort04_m05_A` | Burgher pourpoint | 1 | 1867 | `db3248c2-e092-4972-89cc-3b571e2a77b8` |
| 5198 | `TunicShort04_m06_A` | Burgher pourpoint | 1 | 3178 | `ca402eee-1f94-4c41-b86f-93a7bfde245b` |
| 5199 | `TunicShort04_m07_A` | Courtier's pourpoint. | 0.9 | 2299 | `d78f5c50-c466-4854-9834-8d84d816ca2c` |
| 5200 | `TunicShort04_m08_A` | Burgher pourpoint | 1 | 2349 | `e424a9e0-505a-4e7c-bca2-a1425cf034bf` |
| 5201 | `TunicShort04_m09_A` | Burgher pourpoint | 1 | 1867 | `1750360e-1bfe-4798-bd45-1d490542252a` |
| 5202 | `TunicShort04_m10_A` | Burgher pourpoint | 1 | 1867 | `a2ebabda-34f0-4907-b368-965075bef0a4` |
| 5203 | `TunicShort04_mMurderer` | Burgher pourpoint | 1 | 1867 | `6e0625ba-c5f4-49b7-b93d-0620b2a5c436` |
| 5204 | `TunicShort05_m01_D` | Leather apron | 1 | 349 | `7b327a11-7007-419d-80b0-e885085bf9b5` |
| 5205 | `TunicShort05_m02_D` | Leather apron | 1 | 349 | `cf820f8e-129d-4469-87b9-8aa473699337` |
| 5206 | `TunicShort05_m03_D` | Leather apron | 1 | 417 | `39686da5-f819-4f2b-aa3f-058c983d2022` |
| 5207 | `TunicShort05_m04_D` | Leather apron | 1 | 349 | `4de2cb9a-a467-4d59-a7ca-677c1f595f54` |
| 5208 | `TunicShort05_m05_D` | Leather apron | 1 | 349 | `66d52880-55e1-4a68-9d05-6dabc80f18ea` |
| 5209 | `TunicShort05_m06_D` | Leather apron | 1 | 349 | `cdfe2ba9-39ca-43bf-9988-6dc81cbfb86b` |
| 5210 | `TunicShort05_m07_D` | Leather apron | 1 | 349 | `91376e3d-05b4-4d1a-aaad-fa2f59443c35` |
| 5211 | `TunicShort05_m08_D` | Leather apron | 1 | 417 | `9164ba4d-cccb-4889-b4f6-a73e924a9bcc` |
| 5212 | `TunicShort05_m09_D` | Leather apron | 1 | 349 | `003c862e-e1a9-480b-80b9-be6a2ccf055f` |
| 5213 | `TunicShort05_m10_D` | Leather apron | 1 | 349 | `6aea3320-1597-49ac-9bf1-85d239d05f96` |
| 5214 | `TunicShort05_mButcher01_D` | Short butcher apron | 1 | 349 | `d4e82e6a-32e9-44de-ba7e-d7875cfc11ab` |
| 5215 | `TunicShort05_mButcher02_D` | Short butcher apron | 1 | 349 | `cef106e6-89c9-4f27-b913-b97271bafab5` |
| 5216 | `TunicShort05_mButcher03_D` | Short butcher apron | 1 | 349 | `134e57ae-b932-4bb3-9bd8-77adc66935e0` |
| 5217 | `TunicShort05_mButcher_D` | Short butcher apron | 1 | 349 | `1769a429-c600-464a-bd73-2aee8f54a1e9` |
| 5218 | `TunicShort05_mFather` | Leather apron | 1 | 349 | `2222f4c3-9ec6-4624-82c7-50a27499abaa` |
| 5219 | `TunicShort05_mFather_cutscene` | Leather apron | 1 | 349 | `cf3b62b6-9d79-455d-9b8c-b41f83c6ccdc` |
| 5220 | `TunicShort05_mHenrysYoungFather` | Leather apron | 1 | 349 | `7f669262-0467-40c0-9239-0190e06d285d` |
| 5221 | `TunicShort05_mPros` | Henry's blacksmith apron | 0 | 0 | `0718e3f1-8e31-4a79-b9d1-e245f8dd09e5` |
| 5222 | `TunicShort06_m01_D` | Innkeeper's shirt | 1 | 417 | `ab53ab2a-acd7-433c-ac56-b8f45e66cd70` |
| 5223 | `TunicShort06_m02_D` | Innkeeper's shirt | 1 | 349 | `e7c20f1a-7b0f-43e2-90c6-cc4ec3d652b8` |
| 5224 | `TunicShort06_m03_D` | Innkeeper's shirt | 1 | 451 | `6d0db311-9bef-435c-adcd-b83c7c485709` |
| 5225 | `TunicShort06_m04_D` | Innkeeper's shirt | 1 | 451 | `d5fc17c9-bb48-49b6-b39c-21c78b40f27a` |
| 5226 | `TunicShort06_m05_D` | Innkeeper's shirt | 1 | 451 | `d968fbfe-75d2-4079-a1d0-b11c803a130b` |
| 5227 | `TunicShort06_m06_D` | Innkeeper's shirt | 1 | 349 | `45af22b4-22aa-49ee-bacb-a282c6ff605f` |
| 5228 | `TunicShort06_m07_D` | Innkeeper's shirt | 1 | 349 | `bc3ec574-b017-4cdb-87a8-48596d3158fc` |
| 5229 | `TunicShort06_m07_NoSpoon_D` | Innkeeper's shirt | 1 | 349 | `cfeaaa61-1c6a-4f25-aaa7-b05ef2d28959` |
| 5230 | `TunicShort06_m08_D` | Innkeeper's shirt | 1 | 349 | `c0c7e7fd-b65c-4d0f-89c3-d17527876b80` |
| 5231 | `TunicShort06_m09_D` | Innkeeper's shirt | 1 | 349 | `efaeece1-d328-4b6f-8eb5-17802b9c20d2` |
| 5232 | `TunicShort06_m10_D` | Innkeeper's shirt | 1 | 349 | `78ca2b08-e64c-42d0-b546-f59193e965b5` |
| 5233 | `TunicShort07_m01_E` | Beggar's shirt | 1 | 162 | `4095a5c2-cdc0-4c86-8627-0c2646f75c3e` |
| 5234 | `TunicShort07_m02_E` | Beggar's shirt | 1 | 162 | `dc390132-667c-4baa-aba2-51cb2f8ce2a4` |
| 5235 | `TunicShort07_m03_E` | Beggar's shirt | 1 | 162 | `eef2cf33-45c1-4bdf-b63e-d8f0f4cb311f` |
| 5236 | `TunicShort07_m04_E` | Beggar's shirt | 1 | 162 | `4213ef1d-1a8a-4a7b-b89c-4c996679baed` |
| 5237 | `TunicShort07_m05_E` | Beggar's shirt | 1 | 197 | `71504cc0-3e40-4d15-a0b4-e5f127f4f8a2` |
| 5238 | `TunicShort07_m06_E` | Beggar's shirt | 1 | 253 | `bf9ca822-1326-4d31-ae41-026866554d5e` |
| 5239 | `TunicShort08_m01_C` | Embroidered shirt | 1 | 746 | `1b405c7e-5c38-48f2-b1c2-9f7c30f0891d` |
| 5240 | `TunicShort08_m02_C` | Embroidered shirt | 1 | 622 | `295d5bcb-3871-486c-b635-905eab850ce2` |
| 5241 | `TunicShort08_m03_C` | Embroidered shirt | 1 | 809 | `b60f3df8-6de0-4fa1-96ba-b6877ada65f8` |
| 5242 | `TunicShort08_m04_C` | Embroidered shirt | 1 | 622 | `8e5cbba2-340d-4ba5-a2f7-e18254fb173b` |
| 5243 | `TunicShort08_m05_C` | Embroidered shirt | 1 | 809 | `9ff660b7-3ef4-4cd6-b61d-7e9e33185d69` |
| 5244 | `TunicShort08_m06_C` | Embroidered shirt | 1 | 534 | `f734d3db-4092-4f2e-b4d6-135474f772e3` |
| 5245 | `TunicShort08_m07_C` | Embroidered shirt | 1 | 690 | `48c3ebc8-8719-4c38-8e04-1669cd5d848b` |
| 5246 | `TunicShort08_m08_C` | Embroidered shirt | 1 | 534 | `bb34c74a-dfec-4f9a-95b8-e66b2ede3a2c` |
| 5247 | `TunicShort08_m09_C` | Thief's tunic | 0.9 | 1617 | `368bafe6-5f94-4ef7-a759-3293e3ee21c9` |
| 5248 | `TunicShort08_m10_C` | Embroidered shirt | 1 | 534 | `2c7922c6-1182-4297-9712-8ef7a93403ff` |
| 5249 | `TunicShort08_m11_C` | Embroidered shirt | 1 | 690 | `9f01b6d5-a9ea-4c14-9c14-4ee7857ec9c0` |
| 5250 | `TunicShort_placeholder` | A suspicious bag | 2 | 0 | `40068e97-e2d0-15a3-3cfe-71c574b221aa` |
| 5251 | `TunicShortLegate_m01` | Legate's tunic | 1 | 3178 | `bd3f772d-ece1-4923-bbfd-666b867f30c0` |
| 5252 | `TunicShortLegate_m01_NoHat` | Legate's tunic | 1 | 3178 | `b10e85e2-e266-42f4-9b0a-31d617d36416` |
| 5282 | `vezniNaTroskch_godwinsRing` | Godwin's ring | 0 | 1820 | `f4887f82-0080-49b5-be04-8a8ac68e0fa8` |
| 5287 | `Waffenrock01_m01_C` | Hemmed waffenrock | 2 | 1849 | `904cb53e-3a8d-42fc-9624-a4084399d586` |
| 5288 | `Waffenrock01_m02_C` | Hemmed waffenrock | 2 | 1849 | `e7b044a7-858c-4fa1-b617-d61306e116f1` |
| 5289 | `Waffenrock01_m03_C` | Hemmed waffenrock | 2 | 1849 | `dcccaff3-d2f3-48f3-a9bd-1889477e36dd` |
| 5290 | `Waffenrock01_mBergov_C` | Hemmed waffenrock | 2 | 1849 | `43eab5d6-dc99-494e-90fe-48f8c91b01d3` |
| 5291 | `Waffenrock01_mCimburk_C` | Hemmed waffenrock | 2 | 1849 | `e08aa4b5-8375-447b-8558-a8b93f816b5d` |
| 5292 | `Waffenrock01_mKrizovnik01_C` | Crusaders of the Red Star waffenrock | 2 | 1711 | `f42e9dab-1c40-4578-9701-2e2aa3c72904` |
| 5293 | `Waffenrock01_mKrizovnik02_C` | Crusaders of the Red Star waffenrock | 2 | 1711 | `e78cd3a9-327f-4cd1-a051-1c9a6bf975f6` |
| 5294 | `Waffenrock01_mKrizovnik03_C` | Crusaders of the Red Star waffenrock | 2 | 1711 | `4f383f63-1eeb-40ec-a6d3-b0323a1f6e41` |
| 5295 | `Waffenrock01_mMagyar01_C` | Hemmed waffenrock | 2 | 1849 | `36d5a502-c280-40a7-bfbe-cf5dbdb69404` |
| 5296 | `Waffenrock01_mMagyar_C` | Hemmed waffenrock | 2 | 1849 | `014e4e12-5574-4756-8460-2c5078a3285c` |
| 5297 | `Waffenrock01_mNebak_C` | Hemmed waffenrock | 2 | 1711 | `b4026f8d-b440-4bb9-9149-0226220ee684` |
| 5298 | `Waffenrock01_mPisek_C` | Hemmed waffenrock | 2 | 1849 | `25759613-1d4b-4d67-a051-6330e75b4a65` |
| 5299 | `Waffenrock01_mPolner` | House of Polner waffenrock | 2 | 1849 | `e83016ef-4633-412d-a7c5-b109f4ad19dc` |
| 5300 | `Waffenrock01_mPrague01_C` | Praguers' hemmed waffenrock | 2 | 1849 | `be3eeab6-af41-4a17-8b9a-576325cde54f` |
| 5301 | `Waffenrock01_mPrague02_C` | Praguers' hemmed waffenrock | 2 | 1849 | `2c375955-b00d-434b-8e0e-03e3d8c180e1` |
| 5302 | `Waffenrock01_mRuthart_C` | Hemmed waffenrock | 2 | 1849 | `e3726279-f4f5-41ae-9208-0aa869f7f03b` |
| 5303 | `Waffenrock01_mSemin_C` | Hemmed waffenrock | 2 | 1849 | `51cbaef8-c34f-4879-a382-97d64829ac1f` |
| 5304 | `Waffenrock01_mTeuton` | Teutonic lay brother's waffenrock | 2 | 1788 | `acaebec9-eb15-40c0-869d-4abbbf43107f` |
| 5305 | `Waffenrock01_mTwitch` | Warhorse waffenrock | 2 | 2458 | `660a39ee-f440-4dd4-a412-4b89d1bad7f5` |
| 5306 | `Waffenrock01_mZavis` | Waffenrock of the Lords of Garbow | 2 | 2433 | `863f6da3-f947-4079-98b3-8a3eb584e4f2` |
| 5307 | `Waffenrock02_m01_D` | Simple waffenrock | 2 | 1250 | `101b033e-ce62-48ea-846a-8c38b3ef5f6c` |
| 5308 | `Waffenrock02_m02_D` | Simple waffenrock | 2 | 1250 | `99c4dd5a-8bea-4b7f-82d4-81d236ccd3b4` |
| 5309 | `Waffenrock02_m03_D` | Simple waffenrock | 2 | 1250 | `277954c4-8019-418e-b1c2-4557fe12f98b` |
| 5310 | `Waffenrock02_m04_D` | Simple waffenrock | 2 | 1250 | `5c0210fe-af18-49cd-b7b7-cfff7e1472f4` |
| 5311 | `Waffenrock02_m05_D` | Simple waffenrock | 2 | 1250 | `aa042467-0d9a-4764-adf6-250c64566654` |
| 5312 | `Waffenrock02_mBergov_D` | Simple waffenrock | 2 | 1250 | `26d4b32b-0a62-478a-918d-981505497e7c` |
| 5313 | `Waffenrock02_mKuttenberg01_D` | Simple waffenrock | 2 | 1250 | `343b563d-95f0-4ec2-9247-ebbde648d7ec` |
| 5314 | `Waffenrock02_mKuttenberg02_D` | Simple waffenrock | 2 | 1250 | `2bac4905-4946-4a17-b728-8f059b588eb6` |
| 5315 | `Waffenrock02_mKuttenberg03_D` | Simple waffenrock | 2 | 1250 | `4cbd42bc-9953-4c98-a778-f310ad909d72` |
| 5316 | `Waffenrock02_mKuttenberg_D` | Simple waffenrock | 2 | 1250 | `c8a799c5-3fda-45d0-9bde-2cbf92d83914` |
| 5317 | `Waffenrock02_mNebak_D` | Simple waffenrock | 2 | 1158 | `915216ab-26d1-44c2-9d97-a06db6c20b5a` |
| 5318 | `Waffenrock02_mRuthart01_D` | Simple waffenrock | 2 | 1250 | `68dda40c-cd13-4f23-bd55-02b4ec98d241` |
| 5319 | `Waffenrock02_mRuthart_D` | Simple waffenrock | 2 | 1250 | `d8013078-fe3c-4ffa-acab-93249eaced7f` |
| 5320 | `Waffenrock02_mSemin_D` | Simple waffenrock | 2 | 1250 | `0ee3986e-258d-4283-8e60-c17cafe97827` |
| 5321 | `Waffenrock03_m01_A` | Fastened waffenrock | 2 | 3100 | `1ed07dd2-9bb4-4754-85af-db7a1b93ebce` |
| 5322 | `Waffenrock03_m02_A` | Fastened waffenrock | 2 | 3352 | `4223fd8e-e88e-47c9-a9f8-886e1086e281` |
| 5323 | `Waffenrock03_m03_A` | Fastened waffenrock | 2 | 3352 | `10d15447-8f9b-462f-9cb5-8ffad0d9cadd` |
| 5324 | `Waffenrock03_m04_A` | Fastened waffenrock | 2 | 3352 | `65361263-0cfa-4bb2-a793-2a0f5294bbf8` |
| 5325 | `Waffenrock03_mKuttenberg01_A` | Fastened waffenrock | 2 | 3352 | `a0c2cd23-a88f-40c0-86bc-47dbab2d45c2` |
| 5326 | `Waffenrock03_mKuttenberg02_A` | Fastened waffenrock | 2 | 3352 | `e775725e-9293-43f2-8369-35ce0244534f` |
| 5327 | `Waffenrock03_mKuttenberg03_A` | Fastened waffenrock | 2 | 3352 | `3387f048-d68f-4d03-a97b-29c1c6f6f35f` |
| 5328 | `Waffenrock03_mKuttenberg_A` | Fastened waffenrock | 2 | 3352 | `ad0604da-da64-4d19-8364-e4cf1d297797` |
| 5329 | `Waffenrock03_mLeipa_A` | Fastened waffenrock | 2 | 3352 | `9040190f-884b-4a42-bc34-cd68564a0af9` |
| 5330 | `Waffenrock03_mPrague_A` | Praguers' waffenrock with buttons | 2 | 3352 | `738ca996-5bb8-4719-ad97-c941c3759ccc` |
| 5331 | `Waffenrock04_m01_A` | Ornate waffenrock | 2 | 3352 | `d913a614-fa08-452e-85f8-b6bcfd510529` |
| 5332 | `Waffenrock04_m02_A` | Ornate waffenrock | 2 | 3352 | `b7a53d8a-8c77-4db0-b6af-62a98542c914` |
| 5333 | `Waffenrock04_m03_A` | Ornate waffenrock | 2 | 3352 | `8f1ba3e0-aece-4a2b-be7e-bbc80374f9c7` |
| 5334 | `Waffenrock04_m04_A` | Ornate waffenrock | 2 | 3352 | `9932076d-2a57-4da6-933b-2cd01a886418` |
| 5335 | `Waffenrock04_m05_A` | Ornate waffenrock | 2 | 3352 | `efd50449-d7ba-4e99-a9a2-8b8b2e55a136` |
| 5336 | `Waffenrock04_mBergov_A` | Ornate waffenrock | 2 | 3352 | `ea748545-72c5-4b3d-99f7-8a4431e2f3ae` |
| 5337 | `Waffenrock04_mPapal_A` | Ornate waffenrock | 2 | 3100 | `4ab7a21b-087d-4af2-8fc3-383df9a61eb5` |
| 5338 | `Waffenrock04_mTeuton` | Halved Teutonic waffenrock | 2 | 3642 | `8101f9f5-c8ba-4567-ae02-bb8c2b13e38b` |
| 5339 | `Waffenrock08_m01_B` | Riding waffenrock | 2 | 2448 | `e354d9b0-1532-427e-bfbb-806e8b0e8260` |
| 5340 | `Waffenrock08_m02_B` | Riding waffenrock | 2 | 2448 | `368cd5b0-fa57-444f-9e3d-6675ce6787e7` |
| 5341 | `Waffenrock08_m03_B` | Riding waffenrock | 2 | 2264 | `504c76da-d9e4-4a75-b333-dfd9b358923d` |
| 5342 | `Waffenrock08_m04_B` | Riding waffenrock | 2 | 2448 | `412c3109-9030-4d83-ba93-22292e296162` |
| 5343 | `Waffenrock08_m05_B` | Riding waffenrock | 2 | 1899 | `cc0c46b1-830f-46cb-aeb9-38d18ff06ab4` |
| 5344 | `Waffenrock08_m06_B` | Riding waffenrock | 2 | 2448 | `3b87b900-7849-4230-8312-9342cf9815a1` |
| 5345 | `Waffenrock08_m07_B` | Riding waffenrock | 2 | 2448 | `9aeacf98-e160-4270-b1c8-09e60eb6e611` |
| 5346 | `Waffenrock08_m08_B` | Riding waffenrock | 2 | 2448 | `173db335-8991-46fc-b7a1-7eeaaaf34c96` |
| 5347 | `Waffenrock08_m09_B` | Riding waffenrock | 2 | 2448 | `6fe85d68-4169-4b37-9b1c-6b5ce2f759a8` |
| 5348 | `Waffenrock08_m10_B` | Riding waffenrock | 2 | 1899 | `cfdd03e9-0929-40f7-8753-704002eb567e` |
| 5349 | `Waffenrock08_m11_D` | Riding waffenrock | 2 | 1250 | `b02480ea-8bd5-479c-a7ec-5363857bf849` |
| 5350 | `Waffenrock08_m12_B` | Riding waffenrock | 2 | 2448 | `8831967e-dfc6-4442-b01b-b45222fbf830` |
| 5351 | `Waffenrock08_m13_B` | Riding waffenrock | 2 | 2448 | `b052625a-7525-4295-9ba6-bbe82233c82f` |
| 5352 | `Waffenrock08_m14_B` | Riding waffenrock | 2 | 2448 | `d3fe00d4-ebd2-4ad8-ba5d-f6f34adebc12` |
| 5353 | `Waffenrock08_m15_B` | Riding waffenrock | 2 | 1899 | `fc1184c5-751f-40b1-973c-f8094e2353a9` |
| 5354 | `Waffenrock08_mBergov_B` | Riding waffenrock | 2 | 2448 | `26a248aa-1b24-429a-a368-032f8ac0d73c` |
| 5355 | `Waffenrock08_mkhTournament_01_B` | Riding waffenrock | 2 | 1223 | `646a7c60-e4eb-4fd7-bba9-fde9d682b2cd` |
| 5356 | `Waffenrock08_mkhTournament_02_B` | Riding waffenrock | 2 | 1223 | `8c9b425c-c8a9-49b1-b828-220b2cb47518` |
| 5357 | `Waffenrock08_mkhTournament_03_B` | Riding waffenrock | 2 | 1223 | `fefb708a-289c-4153-a989-6559478f4350` |
| 5358 | `Waffenrock08_mkhTournament_04_B` | Riding waffenrock | 2 | 1223 | `f51b2f0e-0e1c-4390-a303-759104d2da08` |
| 5359 | `Waffenrock08_mkhTournament_05_B_Henry` | Tournament waffenrock | 2 | 1223 | `dc69cb5f-1900-46db-a287-8012e6750fff` |
| 5360 | `Waffenrock08_mkhTournament_06_B` | Riding waffenrock | 2 | 1132 | `e7a0bb76-58a4-4508-94d4-fc34f0bd4232` |
| 5361 | `Waffenrock08_mkhTournament_07_B` | Riding waffenrock | 2 | 1223 | `13f1ca12-2e81-48ad-9122-cc090e9028fe` |
| 5362 | `Waffenrock08_mKrizovnik01_B` | Crusaders of the Red Star waffenrock | 2 | 2264 | `675ce22d-2906-4d60-ab0d-e4e5a0b4be53` |
| 5363 | `Waffenrock08_mKrizovnik02_B` | Crusaders of the Red Star waffenrock | 2 | 2264 | `226c2c4d-84b0-4288-84ba-36ef360febfc` |
| 5364 | `Waffenrock08_mKuttenberg01_B` | Riding waffenrock | 2 | 2448 | `bf1579cc-d92e-4cf8-8f66-b62c61df01c7` |
| 5365 | `Waffenrock08_mKuttenberg02_B` | Riding waffenrock | 2 | 2448 | `dfe3552d-2d83-40c3-b5fe-66ff1b3f5ebd` |
| 5366 | `Waffenrock08_mKuttenberg03_B` | Riding waffenrock | 2 | 2448 | `48484637-1a8e-487d-afed-8eb7e1573190` |
| 5367 | `Waffenrock08_mKuttenberg_B` | Riding waffenrock | 2 | 2448 | `557160b7-8b24-448b-85b4-c7f296cedbae` |
| 5368 | `Waffenrock08_mPapal_B` | Riding waffenrock | 2 | 2264 | `6c990432-ff7a-407e-b782-a671b8ab9db8` |
| 5369 | `Waffenrock08_mPisek_B` | Riding waffenrock | 2 | 2448 | `012dee46-cfc3-4632-81ef-075c0bdaf0d4` |
| 5370 | `Waffenrock08_mPrague_B` | Praguers' riding waffenrock | 2 | 2448 | `346e30e4-12c5-4321-8791-b007bd6b66bc` |
| 5371 | `Waffenrock08_mSemin_B` | Riding waffenrock | 2 | 2448 | `5afaf2f0-983a-42dd-9071-8e53e4af174c` |
| 5372 | `Waffenrock09_m01_B` | Knight's waffenrock | 2 | 2448 | `986c4a80-eff0-4198-9958-aff51b2303f3` |
| 5373 | `Waffenrock09_m02_B` | Knight's waffenrock | 2 | 2448 | `f24c1f54-6dad-49b2-957f-532b918dba33` |
| 5374 | `Waffenrock09_m03_B` | Knight's waffenrock | 2 | 2448 | `acd2c546-8ae3-4497-b4de-4ada14eaf452` |
| 5375 | `Waffenrock09_m04_B` | Knight's waffenrock | 2 | 2448 | `607e172c-6af5-49bd-8adc-4d4297d0b371` |
| 5376 | `Waffenrock09_m05_B` | Knight's waffenrock | 2 | 2448 | `59179a10-d699-4bf7-87f3-924aabf31063` |
| 5377 | `Waffenrock09_m06_B` | Knight's waffenrock | 2 | 2448 | `edc46dd2-383a-4c94-b1d9-b3d450e73e51` |
| 5378 | `Waffenrock09_mBergov_B` | Knight's waffenrock | 2 | 2448 | `780cca43-280a-4b59-ba08-03b636931b98` |
| 5379 | `Waffenrock09_mDesert_B` | Knight's waffenrock | 2 | 2418 | `463828ca-28cf-42c4-81c7-635208dc08b4` |
| 5380 | `Waffenrock09_mKuttenberg01_B` | Knight's waffenrock | 2 | 2448 | `cbf60764-576b-4102-b0d1-d196e1b87fd6` |
| 5381 | `Waffenrock09_mKuttenberg02_B` | Knight's waffenrock | 2 | 2448 | `359700c7-14ec-413d-924d-b0a682ecb22b` |
| 5382 | `Waffenrock09_mKuttenberg03_B` | Knight's waffenrock | 2 | 2448 | `cb3e9e80-7a1e-4021-8dc9-46defbdcd069` |
| 5383 | `Waffenrock09_mKuttenberg04_B` | Knight's waffenrock | 2 | 2448 | `88c42663-ca9b-4fea-8f62-84488ba8cb1d` |
| 5384 | `Waffenrock09_mKuttenberg05_B` | Knight's waffenrock | 2 | 2448 | `dd0d1adc-8bb0-4352-b9c9-6b46eac72533` |
| 5385 | `Waffenrock09_mKuttenberg_B` | Knight's waffenrock | 2 | 2448 | `09c8c27c-db50-4bdf-80a5-f107402bbba0` |
| 5386 | `Waffenrock09_mLeipa_B` | Knight's waffenrock | 2 | 2448 | `184a4f59-cb07-41c8-8423-68014a0411b3` |
| 5387 | `Waffenrock09_mNebak01_B` | Knight's waffenrock | 2 | 2264 | `3d0589c0-7949-468d-a781-4b373a9c0d74` |
| 5388 | `Waffenrock09_mNebak_B` | Knight's waffenrock | 2 | 2264 | `07bb9f44-91f8-46fb-bed2-33bc8cd6a605` |
| 5389 | `Waffenrock09_mPisek_B` | Knight's waffenrock | 2 | 2448 | `f6cc59be-d9af-419f-b9f0-66440c1d79ae` |
| 5390 | `Waffenrock09_mPros` | Waffenrock of Henry's Forge | 2 | 2448 | `ec2f4940-8422-4d2b-a325-1858afc70595` |
| 5391 | `Waffenrock09_mSemin_B` | Knight's waffenrock | 2 | 2448 | `34f8334d-d438-4d50-807e-659ab42901a8` |
| 5392 | `Waffenrock09_mTeuton` | Teutonic waffenrock | 2 | 2629 | `ba959e39-e720-489e-baf4-0609ce58d586` |
| 5393 | `Waffenrock09_mVavak_B` | Knight's waffenrock | 2 | 2448 | `9a1bb464-4ec1-4c34-a071-ffcd9000404c` |
| 5394 | `WaffenrockScaring_m01` | Lord of Hell's garb | 2 | 3642 | `fc092685-1787-44bc-a83a-64099095443d` |
| 5395 | `WaffenrockSleeveless_placeholder` | A suspicious bag | 4.5 | 757 | `483d2eab-9723-27b2-7b85-3e7333b3be82` |
| 5396 | `WaffenrockSleevesFolded_placeholder` | A suspicious bag | 2 | 3830 | `488a0ea3-a5c7-af0d-d6bb-8cc7eb77fa9a` |
| 5397 | `WaffenrockSleevesLong_placeholder` | A suspicious bag | 0.5 | 370 | `464ec461-a974-f7da-3b10-d34f66882faa` |
| 5398 | `WaffenrockSleevesShort_placeholder1` | A suspicious bag | 2.9 | 132 | `4363c07c-d91d-7a01-97da-e8794bfcb4aa` |
| 5401 | `WarChanfron01_m01` | Dragon chanfron | 9 | 12650 | `77f4d779-aeea-4937-a36c-74d17eb2cb15` |
| 5402 | `WarChanfron01_m02` | Dragon chanfron | 9 | 12650 | `c195f864-5154-4df2-ac14-b552f9be8dc6` |
| 5403 | `WarChanfron01_m03` | Dragon chanfron | 9 | 12650 | `15fbc2fb-af46-4765-9ffd-0ed63f596b3b` |
| 5404 | `WarChanfron01_m04` | Dragon chanfron | 9 | 12650 | `e6e2e301-8df2-41ba-b55d-935118da72f4` |
| 5405 | `WarChanfron01_m05` | Dragon chanfron | 9 | 12650 | `e6cc44a4-d5c3-4dfc-8198-d0a902f5d6bd` |
| 5406 | `WarChanfron01_m06` | Dragon chanfron | 9 | 12650 | `df55ebd0-b61c-4a82-88c6-0c20a2335e0c` |
| 5407 | `WarChanfron01_m07` | Dragon chanfron | 9 | 12650 | `f9cbfaff-21fb-48a8-b10d-d97585b10201` |
| 5408 | `WarChanfron01_m08` | Dragon chanfron | 9 | 12650 | `fbeadf50-89c1-476c-bc32-96b3249a59ef` |
| 5409 | `WarChanfron01_m09` | Dragon chanfron | 9 | 12650 | `3d70fc92-440d-4177-85e1-6c702d185059` |
| 5410 | `WarChanfron01_m10` | Dragon chanfron | 9 | 12650 | `5b7fd800-e9a2-48a7-97d1-3afd561dea39` |
| 5411 | `WarChanfron02_m01` | Milanese chanfron | 6 | 3500 | `2a119cb9-20a9-466a-982b-645b6fc733ac` |
| 5412 | `WarChanfron02_m02` | Milanese chanfron | 6 | 3500 | `d8738c2c-9a40-4393-a2a8-01e3ae5f3b3a` |
| 5413 | `WarChanfron02_m03` | Milanese chanfron | 6 | 3500 | `891e6272-8792-435c-ad17-0f0d04fc4ede` |
| 5414 | `WarChanfron02_m04` | Milanese chanfron | 6 | 3500 | `fe4c4894-b916-4d35-b403-2280dac4975c` |
| 5415 | `WarChanfron02_m05` | Milanese chanfron | 6 | 3500 | `93c91306-67dd-446a-8d3d-67de866d97df` |
| 5416 | `WarChanfron02_m06` | Milanese chanfron | 6 | 3500 | `db7e8637-31de-4287-ad28-ee779ff4c25d` |
| 5417 | `WarChanfron02_m07` | Milanese chanfron | 6 | 3500 | `b2350448-fdc8-4ac3-84dc-263a1a0fc64c` |
| 5418 | `WarChanfron02_m08` | Milanese chanfron | 6 | 3500 | `fff81d9e-65b0-49a9-a41d-48d67bd3fbd0` |
| 5419 | `WarChanfron02_m09` | Milanese chanfron | 6 | 3500 | `b0102119-cab9-4d52-b473-f99a938ad083` |
| 5420 | `WarChanfron02_m10` | Milanese chanfron | 6 | 3500 | `b6f33840-7bfe-4ce8-aa6c-5151207682fd` |
| 5421 | `WarChanfron03_m01` | Tyrolian chanfron | 7.8 | 8000 | `cc619b0e-2c49-4b2f-9029-163301396b79` |
| 5422 | `WarChanfron03_m02` | Tyrolian chanfron | 7.8 | 8000 | `1144ac54-351f-44d2-a713-a525f5d1fd19` |
| 5423 | `WarChanfron03_m03` | Tyrolian chanfron | 7.8 | 8000 | `637a1bcc-a03a-4733-98b0-df7be1ef6d18` |
| 5424 | `WarChanfron03_m04` | Tyrolian chanfron | 7.8 | 8000 | `29f86d3a-4bf2-4c0f-b177-94fa7027b23c` |
| 5425 | `WarChanfron03_m05` | Tyrolian chanfron | 7.8 | 8000 | `ddba3782-b343-4bf1-9142-225b49e2c976` |
| 5426 | `WarChanfron03_m06` | Tyrolian chanfron | 7.8 | 8000 | `4f638b4b-adb2-4782-b3de-0bb93ddf8429` |
| 5427 | `WarChanfron03_m07` | Tyrolian chanfron | 7.8 | 8000 | `69aa0f16-b6ef-4cd8-affc-a6c5e1a20331` |
| 5428 | `WarChanfron03_m08` | Tyrolian chanfron | 7.8 | 8000 | `881032cf-cd77-4b76-b8de-d3cfac5a21fe` |
| 5429 | `WarChanfron03_m09` | Tyrolian chanfron | 7.8 | 8000 | `fc9ea950-6d10-4353-9197-ea2a437fdca0` |
| 5430 | `WarChanfron03_m10` | Tyrolian chanfron | 7.8 | 8000 | `a7863748-175b-4ff5-bcc1-77a914fe1068` |
| 5431 | `WarChanfron03_mMessenger` | Tyrolian chanfron | 7.8 | 8000 | `32432cd2-9f55-4107-984a-091755410155` |
| 5432 | `WarChanfron04_mPros` | Unicorn chanfron | 9 | 12650 | `7d394b2f-ff88-4f95-8bb1-c593c6305500` |
| 5449 | `WarSaddle01_m01` | Hungarian saddle | 16.8 | 10000 | `5643a2b2-7400-44a9-8022-2f30f094e75b` |
| 5450 | `WarSaddle01_m02` | Hungarian saddle | 16.8 | 10000 | `9443c076-6645-45c7-8b4e-551853339f52` |
| 5451 | `WarSaddle01_m03` | Hungarian saddle | 16.8 | 10000 | `5fdac6a0-470b-4020-9b13-d94f90a969a5` |
| 5452 | `WarSaddle01_m04` | Hungarian saddle | 16.8 | 10000 | `ecaf3259-5425-4006-9b0f-e758bd3de3b3` |
| 5453 | `WarSaddle01_m05` | Hungarian saddle | 16.8 | 10000 | `e8549d6b-d220-4e00-b513-a5231441ad71` |
| 5454 | `WarSaddle01_m06` | Hungarian saddle | 16.8 | 10000 | `527ae1dd-fd0c-4c6a-8ff3-5cc4ce2ca401` |
| 5455 | `WarSaddle01_m07` | Hungarian saddle | 16.8 | 10000 | `96d902a0-3368-4505-a989-a040593910c0` |
| 5456 | `WarSaddle01_m08` | Hungarian saddle | 16.8 | 10000 | `fa7be428-e2f9-46dd-bfd3-f3191e025455` |
| 5457 | `WarSaddle01_m09` | Hungarian saddle | 16.8 | 10000 | `65525bbe-86c4-4d36-8869-f4cdb309532f` |
| 5458 | `WarSaddle01_m10` | Hungarian saddle | 16.8 | 10000 | `7d0c6354-eb5e-47a8-bd88-f5800cdef639` |
| 5459 | `WarSaddle01_m11` | Hungarian saddle | 16.8 | 10000 | `95144a64-4cbd-4166-baec-d5f02cef5285` |
| 5460 | `WarSaddle01_m12` | Hungarian saddle | 16.8 | 10000 | `0094cf41-f12f-498e-ac87-9c6206263c70` |
| 5461 | `WarSaddle01_m13` | Hungarian saddle | 16.8 | 10000 | `976e5898-8d71-4d28-88a9-4c056fb7f776` |
| 5462 | `WarSaddle01_m14` | Hungarian saddle | 16.8 | 10000 | `c99cce7d-c007-4402-bfde-4b6a17fff4e3` |
| 5463 | `WarSaddle02_m01` | Transylvanian knight's saddle | 19.2 | 14000 | `57c34487-7433-4d5a-92d8-fe680bbd5a86` |
| 5464 | `WarSaddle02_m02` | Transylvanian knight's saddle | 19.2 | 14000 | `52774f52-cd99-4783-a864-a19aa3dca586` |
| 5465 | `WarSaddle02_m03` | Transylvanian knight's saddle | 19.2 | 14000 | `5201189d-794d-4c2b-8bcb-7a9a0c861b5d` |
| 5466 | `WarSaddle02_m04` | Transylvanian knight's saddle | 19.2 | 14000 | `5b832791-6195-4b8f-895b-8ad85f7fa5b9` |
| 5467 | `WarSaddle02_m05` | Transylvanian knight's saddle | 19.2 | 14000 | `0f8c83fe-3516-42cc-9034-32a8d072132f` |
| 5468 | `WarSaddle02_m06` | Transylvanian knight's saddle | 19.2 | 14000 | `9b80d61a-b073-42ea-9ec1-57d255b8e90b` |
| 5469 | `WarSaddle02_m07` | Transylvanian knight's saddle | 19.2 | 14000 | `2426bf31-8534-4d37-9b5f-447cd0a0eb63` |
| 5470 | `WarSaddle02_m08` | Transylvanian knight's saddle | 19.2 | 14000 | `8b1bf03d-f100-4432-b91e-95de8ba06aec` |
| 5471 | `WarSaddle02_m09` | Transylvanian knight's saddle | 19.2 | 14000 | `dddee287-f803-4e89-bb42-02c06d668f1a` |
| 5472 | `WarSaddle02_m10` | Transylvanian knight's saddle | 19.2 | 14000 | `807a742a-8c89-422c-b0cc-64f8210558dd` |
| 5473 | `WarSaddle02_m11` | Transylvanian knight's saddle | 19.2 | 14000 | `4d5634b0-bd29-4432-89f5-93929b2ffc86` |
| 5474 | `WarSaddle02_m12` | Transylvanian knight's saddle | 19.2 | 14000 | `b50334bd-3e7f-46a5-af8d-61373569fabd` |
| 5475 | `WarSaddle02_m13` | Transylvanian knight's saddle | 19.2 | 14000 | `79c7e1fd-bfcc-4c26-b3eb-fb4f9be42ab8` |
| 5476 | `WarSaddle02_m14` | Transylvanian knight's saddle | 19.2 | 14000 | `7b0ddc96-1ac8-45c3-9f06-fca440c2fde6` |
| 5477 | `WarSaddle03_m01` | Cracowian saddle | 22.8 | 23000 | `9be0331e-e07d-4055-9c12-d16c91b80f37` |
| 5478 | `WarSaddle03_m02` | Cracowian saddle | 22.8 | 23000 | `7dfc1c15-6452-4cf6-9d41-2ca7fb8a8252` |
| 5479 | `WarSaddle03_m03` | Cracowian saddle | 22.8 | 23000 | `fb253378-030c-465e-83bf-8af0bbd9e00c` |
| 5480 | `WarSaddle03_m04` | Cracowian saddle | 22.8 | 23000 | `ca526ec9-d923-4cf3-a1cb-ced43bdc2f72` |
| 5481 | `WarSaddle03_m05` | Cracowian saddle | 22.8 | 23000 | `13b7e805-3c51-4c0e-93f2-de54d2e46e5d` |
| 5482 | `WarSaddle03_m06` | Cracowian saddle | 22.8 | 23000 | `7d61ceeb-5230-46c5-a610-8b7ec0d7b091` |
| 5483 | `WarSaddle03_m07` | Cracowian saddle | 22.8 | 23000 | `e9bba790-bae7-4b97-a683-8fc8c14e7ad1` |
| 5484 | `WarSaddle03_m08` | Cracowian saddle | 22.8 | 23000 | `4146da70-95fe-4776-9ce5-6bc54ebaa566` |
| 5485 | `WarSaddle03_m09` | Cracowian saddle | 22.8 | 23000 | `b5869d5e-86d6-4648-9eca-abd536fbae7a` |
| 5486 | `WarSaddle03_m10` | Cracowian saddle | 22.8 | 23000 | `52015519-f75a-494e-8487-327169c844de` |
| 5487 | `WarSaddle03_m11` | Cracowian saddle | 22.8 | 23000 | `c949589a-3cdb-4eb6-9504-37add6cddb81` |
| 5488 | `WarSaddle03_m12` | Cracowian saddle | 22.8 | 23000 | `7b885bcf-a60e-4722-baed-1601d6fafaf6` |
| 5489 | `WarSaddle03_m13` | Cracowian saddle | 22.8 | 23000 | `29935052-4849-447f-938e-3b84348cd6fe` |
| 5490 | `WarSaddle03_m14` | Cracowian saddle | 22.8 | 23000 | `77d53928-9c9f-44a0-9f60-a50d4751b78d` |
| 5491 | `WarSaddle03_m15` | Cracowian saddle | 22.8 | 23000 | `741b60fa-d7e2-44f4-86bf-925c3d12be9d` |
| 5533 | `Wreath01_m01` | Round cap | 5 | 0 | `58d205c0-3efd-421d-8f97-e377045ef34e` |
| 5534 | `WreathTwitch_m01` | Alluring wreath | 0.5 | 82 | `fc60850a-a266-421c-be69-6839787f56cd` |
| 5535 | `YokeDouble01Left` | A suspicious bag | 0 | 2276 | `467f8539-39b0-475d-97d9-126f3036a3b2` |
| 5536 | `YokeDouble01Right` | A suspicious bag | 1 | 262 | `a880782f-37f7-4047-8ce7-37992109154c` |
| 5537 | `YokeSingle01` | A suspicious bag | 0.5 | 150 | `0958776d-8528-4480-b0e3-df127362e0c1` |
| 5538 | `YokeUniversal01` | A suspicious bag | 5.2 | 0 | `25423384-b6c9-45ff-a915-d8514e4629b1` |
| 5561 | `zbranePanaSemina_sukGambeson` | Gnarly's jupon | 11 | 1324 | `a36cd28f-4f1e-407b-8769-4f69c4be3eef` |
| 5585 | `ztracenaCest_jezeksArms` | Jezhek's plate pauldrons | 5 | 40751 | `7b6a90fc-06f4-4618-8900-c0693c29d540` |
| 5586 | `ztracenaCest_jezeksCaparison` | Lords of Holohlavy caparison | 14.4 | 5175 | `a5427b6d-f30d-4090-af39-50e793693800` |
| 5587 | `ztracenaCest_jezeksCuirass` | Jezhek's Brigandine | 13.4 | 36236 | `d9f33173-7f4c-4c75-a871-43d52fc0e35a` |
| 5588 | `ztracenaCest_jezeksGauntlets` | Jezhek's gloves | 3.4 | 41950 | `c6654980-703d-4580-86ee-069011c52f80` |
| 5590 | `ztracenaCest_jezeksLegs` | Jezhek's plate chausses | 12.4 | 46920 | `2cf06381-7692-4f3c-b917-e98dd3b5f8e3` |
| 5591 | `ztracenaCest_jezeksSpurs` | Jezhek's spurs | 0.5 | 3360 | `5575d3ec-e42a-438b-aca1-93f08d48bd43` |
| 5597 | `ztratyANalezy_helmet` | Lost helmet | 6.5 | 11634 | `0f716757-c281-4b58-af60-c6afc6750717` |
| 5598 | `ztratyANalezy_hose` | Lost hose | 0.5 | 180 | `d5d764ec-3345-4bf1-b749-8229570c2519` |
| 5601 | `ztratyANalezy_shoes` | Drunkard's shoes | 1 | 170 | `e59bb198-e5fd-484a-bb07-a1a07d29b1f1` |
| 5602 | `ztratyANalezy_strawHat` | Windfall straw hat | 0.5 | 120 | `0f04e727-f40b-402d-9ad6-356b588fe626` |
| 5603 | `ztratyANalezy_tunic` | Drunkard's tunic | 1 | 240 | `ef40d3ee-401f-47b3-83a5-439939f96bfe` |
| 5604 | `ztratyANalezy_wreath` | Lost wreath | 4.5 | 448 | `cbb609a1-ed6b-46d4-a12b-bbbfa3b86ee6` |
# Items: Crafting materials
> The 52 item classes of the game's CraftingMaterial table: id, name, English name, weight, price and class GUID.
The game's **`CraftingMaterial`** rows - 52 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 732 | `bsmt_acidumChloridum` | Acidum chloridum | 0.18 | 150 | `085247ce-bc20-4ea7-b257-dd6cfd48fe19` |
| 733 | `bsmt_copper` | Copper | 1 | 270 | `8b7515e1-21fb-4c18-b3da-86fabb5025bd` |
| 734 | `bsmt_emailPowder` | Enamel powder | 0.25 | 80 | `d451f251-bc76-461c-9576-3a0c90bfada6` |
| 735 | `bsmt_guardSimple` | Ordinary sword guard | 0.1 | 60 | `d01f5606-5bba-42c1-9a48-b065e7a92ad7` |
| 736 | `bsmt_guardSpecial` | Horned sword guard | 0.1 | 75 | `6bfe50b1-dafb-4bf7-a1d9-1f61feb3ac53` |
| 737 | `bsmt_guardStraight` | Straight sword guard | 0.1 | 60 | `bc09cb07-fb9d-45be-8f55-d42b999c6341` |
| 738 | `bsmt_guardStrong` | Reinforced sword guard | 0.1 | 75 | `1c933935-d4b3-4884-8228-a4cde0c3a96d` |
| 739 | `bsmt_hardware` | Fastening material | 0.25 | 15 | `4a6269c1-5c01-473d-ad69-e0a0c41643e7` |
| 740 | `bsmt_ironBad` | Scrap metal | 1 | 25 | `94d8f5f1-20a7-4840-98ad-1d198d381389` |
| 741 | `bsmt_ironGood` | Iron | 1 | 48 | `92aa6120-028e-48ee-8ed1-1c5f91afaa26` |
| 742 | `bsmt_jaspis` | Jasper | 0.55 | 450 | `e0db7ff2-cde0-455f-9af8-ce4f39055196` |
| 743 | `bsmt_pommelCoin` | Coin sword pommel | 0.1 | 40 | `1fe0e850-e07d-45f0-ade0-26f030a63da4` |
| 744 | `bsmt_pommelDecorated` | Decorated sword pommel | 0.1 | 380 | `af9bcfd0-6cb5-4944-bd8f-a53d2253f51e` |
| 745 | `bsmt_pommelEight` | Eight-sided sword pommel | 0.1 | 95 | `4f7a7d02-b8cb-4bcc-9b3e-edc1992ee580` |
| 746 | `bsmt_pommelPear` | Pear sword pommel | 0.1 | 85 | `9023c10e-025c-4580-9b08-b0919e9f7346` |
| 747 | `bsmt_redGold` | Coloured gold | 0.25 | 550 | `7f4780ff-2cb8-44a5-8326-4f140fcfa19d` |
| 748 | `bsmt_sharkSkin` | Dogfish skin | 0.3 | 750 | `ef677feb-6f77-4dbd-8ece-01f9762bcbc9` |
| 749 | `bsmt_steelBad` | Steel | 1 | 50 | `54f297f8-62c0-41b5-9ab4-892c7475fc6a` |
| 750 | `bsmt_steelGood` | Toledo steel | 1 | 350 | `4a4da84c-f12a-4bc8-94dc-a7d8d76788ea` |
| 751 | `bsmt_steelNormal` | Frankfurt steel | 1 | 200 | `3c1c0ae2-731e-40c1-a917-024fb3f000da` |
| 752 | `bsmt_steelSpecial` | Sheet steel | 1.2 | 420 | `3ffad7e8-b20f-4038-adbd-f648ec14e7af` |
| 753 | `bsmt_syrianAsfalt` | Rock Pitch | 0.25 | 200 | `30c447bb-2ea0-4577-8045-a0020ceb87a9` |
| 754 | `bsmt_tinkal` | Tincal | 0.25 | 220 | `613dd45e-a7e3-4ebb-b638-5d4c544c1798` |
| 755 | `bsmt_woodExotic` | Exotic wood | 1 | 430 | `87a568f2-79f7-415f-a690-9a04c4585455` |
| 1713 | `dlc2_brokenIronRod` | Broken escapement crankshaft | 0 | 10 | `7584e83a-4329-4fcb-94a6-eb3c9af2390c` |
| 2914 | `kovaniAsiDoVezi_commemorativeCoin` | Commemorative coin | 0 | 42 | `05f2b2cc-fd48-496e-ab0c-45160910dfde` |
| 2915 | `kovaniAsiDoVezi_foundHorseshoe` | Found horseshoe | 0 | 42 | `3f5426ab-1364-46f9-9b3c-c84e1654a441` |
| 2916 | `kovaniAsiDoVezi_holyNail` | Holy nail | 0 | 42 | `ddbdf313-f3be-47b5-9f6e-20c1124c69d2` |
| 2938 | `kovaniPoklad_ruinedAxe` | Broken axe | 0 | 42 | `9a042027-bf77-450b-8a73-530b130362bd` |
| 2942 | `kovaniSymbolSermirny_brokenGuildSword` | Broken guild longsword | 0 | 42 | `c8831b16-f218-4d77-93ab-8f2402508677` |
| 2947 | `kovaniVajdovaKletba_carbonWater` | Charcoal water | 0 | 42 | `ec24c6c7-f5bd-4d27-aeef-9a5676686ff8` |
| 2966 | `kovarskeZakazky_magdalenaBrokenAxe` | Magdalena's broken axe | 0 | 42 | `630691ae-f0d0-4207-9bde-395ea4f374cc` |
| 3358 | `maliruvLek_freshwaterPearl` | Freshwater pearl | 0.1 | 1500 | `ae9e9291-fbe1-4e02-93be-9d3b2b6d6155` |
| 3359 | `maliruvLek_mandrakeRoot` | Mandrake root | 0.2 | 180 | `ad0827e8-137d-4ad2-bdc2-a4546ff61479` |
| 3925 | `poustevnik_brokenSwordAmbroz` | Ambrose's broken sword | 0 | 42 | `88c08905-fb68-46e2-813e-4176d12cc493` |
| 4817 | `special_attire` | Antler shards | 0.6 | 120 | `3db25e6e-dfe2-4b06-a079-80e6064073c4` |
| 4818 | `special_bezoar` | Bezoar | 0.1 | 300 | `c76db6a9-9f8c-487a-bb0b-48b16b47b75f` |
| 4819 | `special_bilin` | Gall | 0.1 | 70 | `38ea59b9-ead9-4fb5-a62a-2051abd844a2` |
| 4820 | `special_charcoal` | Charcoal | 0.2 | 6 | `f879ac63-2ce2-4114-83a2-89643c1ed102` |
| 4821 | `special_charcoalImproved` | Leached coal | 0.2 | 250 | `55be7c8b-7ef1-4e45-820d-d04a2497f016` |
| 4822 | `special_cobweb` | Cobweb | 0.1 | 0 | `33392df2-2b85-4875-998b-c313de495f57` |
| 4823 | `special_cowSkin` | Cow skin | 0.6 | 200 | `e5ac7c40-263d-4fba-8c00-343e9b112aef` |
| 4824 | `special_deerSkin` | Deer skin | 0.6 | 420 | `a1dda25f-3a35-4376-b198-4e5173c742a8` |
| 4832 | `special_mushroomAmanita` | Amanita muscaria | 0.1 | 13 | `abb6cc5a-3592-406f-82ab-edfb73e219be` |
| 4833 | `special_mushroomCave` | Cave mushroom | 0.1 | 30 | `a40e513f-045e-421c-99c9-c10dae3d9fe1` |
| 4834 | `special_olibanum` | Frankincense | 0.1 | 125 | `347e61a6-d36e-4d1e-99ce-98c8ecbeee73` |
| 4835 | `special_pigSkin` | Pig skin | 0.6 | 150 | `493563fc-0d46-4ee7-a947-85d6c4063003` |
| 4836 | `special_saltpeter` | Saltpetre | 0.1 | 72 | `8cf956d4-39d6-4e9d-9010-95f8f2772ad9` |
| 4837 | `special_sulfur` | Sulphur | 0.1 | 85 | `0513eeae-05a8-4ca7-8719-443cb0d906d5` |
| 4838 | `special_teethBoar` | Boar's tusk | 0.1 | 200 | `a4f0f4c8-dc3f-4cb2-be89-f0f56fbb09fa` |
| 4992 | `test_blacksmith_hilt` | A suspicious bag | 1 | 150 | `b141676e-4173-4f9d-8cff-c610ca66d68e` |
| 4994 | `test_blacksmith_iron` | A suspicious bag | 2 | 30 | `0d7f31ff-feed-49ef-8029-16f5976d26c7` |
# Items: Dice badges
> The 36 item classes of the game's DiceBadge table: id, name, English name, weight, price and class GUID.
The game's **`DiceBadge`** rows - 36 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 78 | `AntibustDiceBadgeGold` | Gold Resurrection badge | 0 | 3400 | `b26e6c86-2970-4106-a25b-9e4ffa181979` |
| 79 | `AntibustDiceBadgePlumb` | Tin Resurrection badge | 0 | 1500 | `859204c7-683e-4238-97d6-dafcd7aec3ed` |
| 80 | `AntiBustDiceBadgeSilver` | Silver Resurrection badge | 0 | 5000 | `3acd1712-9ab9-44f1-a0c9-275e89f1b2c3` |
| 194 | `BalatroBadgeGold` | Gold Balatro's badge | 0 | 1500 | `493e9946-4ec1-40ca-bde2-07fa5fa40307` |
| 195 | `BalatroBadgePlumb` | Tin Balatro's badge | 0 | 1500 | `dd9d4349-9713-4a79-960c-859e60ed2e13` |
| 196 | `BalatroBadgeSilver` | Silver Balatro's badge | 0 | 1500 | `48fd950c-294c-439c-96f3-2d6baf88ceb6` |
| 456 | `BirdKingBadge` | Bird King's badge | 0 | 4000 | `b7e10a4a-08f8-4582-b71e-b562c72fe8da` |
| 1779 | `DoubleTakeDiceBadge` | Silver Doppelganger badge | 0 | 1900 | `a16e6c86-2970-4106-a25b-9f4ffa181982` |
| 1780 | `DoubleTakeDiceBadgeGold` | Gold Doppelganger badge | 0 | 3400 | `1ee30641-d703-4556-80d9-db9ece7cbfd3` |
| 1781 | `DoubleTakeDicebadgePlumb` | Tin Doppelganger badge | 0 | 1800 | `a16e6c86-2970-4106-a25b-9b4ffa181972` |
| 1844 | `ExtraDiceBadgeGold` | Gold Might badge | 0 | 3900 | `6d2453f5-e251-4604-ae1e-863322604399` |
| 1845 | `ExtraDiceBadgePlumb` | Tin Might badge | 0 | 1500 | `6b6575d6-a553-43a3-9ad1-5ccc900e23ad` |
| 1846 | `ExtraDicebadgeSilver` | Silver Might badge | 0 | 2300 | `a16e6c86-2970-4106-a25b-9b4ffa181977` |
| 1847 | `ExtraValuebadgeGold` | Gold Emperor's badge | 0 | 3900 | `24da7902-d6be-4410-b774-e8907fe71714` |
| 2186 | `FormationsDiceBadgeGold` | Priest's Advantage badge | 0 | 4000 | `d9d807a4-58d1-4504-a904-7c2c8d15c092` |
| 2187 | `FormationsDiceBadgePlumb` | Carpenter's Advantage badge | 0 | 1500 | `f953cb01-8f55-4075-a16a-f1e3a4001a9e` |
| 2188 | `FormationsDiceBadgeSilver` | Executioner's Advantage badge | 0 | 2500 | `a16e6c86-2970-4106-a25b-9e4ffa181972` |
| 2454 | `HeadStartDiceBadgeGold` | Gold Headstart badge | 0 | 2900 | `b9d08c7e-94cf-48ea-a82e-6abdf8c48b33` |
| 2455 | `HeadStartDiceBadgePlumb` | Tin Headstart badge | 0 | 500 | `a16e6c86-2970-4106-a25b-9f4ffa181972` |
| 2456 | `HeadStartDiceBadgeSilver` | Silver Headstart badge | 0 | 2000 | `34a822bc-21b5-4b7f-9088-be794b94d4e3` |
| 3372 | `MatrimoniumBadge` | Gold Wedding badge | 0 | 5000 | `bb8ecc03-acc5-4ae6-8459-163fb3f8af39` |
| 3393 | `MultiplierDiceBadgeGold` | Gold Warlord badge | 0 | 3200 | `a16e6c86-2970-4106-a25b-9f4ffa181983` |
| 3394 | `MultiplierDiceBadgePlumb` | Tin Warlord badge | 0 | 1100 | `f16e6c86-2970-4106-a25b-9f4ffa181983` |
| 3395 | `MultiplierDiceBadgeSilver` | Silver Warlord badge | 0 | 2600 | `140fae91-d3dd-44e7-b51f-7b335644631c` |
| 3609 | `NullDiceBadgeGold` | Gold Defence badge | 0 | 3100 | `b26e6c86-2970-4106-a25b-9e4ffa181972` |
| 3610 | `NullDiceBadgePlumb` | Tin Defence badge | 0 | 800 | `b16e6c86-2970-4106-a25b-9e4ffa181972` |
| 3611 | `NullDiceBadgeSilver` | Silver Defence badge | 0 | 2000 | `f654fdda-783a-4460-8c66-a6d2b5927820` |
| 4150 | `RerollDicebadgeGold` | Gold Fortune badge | 0 | 3900 | `d55221a0-e40c-11ec-8fea-0242ac120002` |
| 4151 | `RerollDiceBadgePlumb` | Tin Fortune badge | 0 | 2700 | `3b1384f8-36bf-453b-8f17-66fb360a72f9` |
| 4152 | `RerollDiceBadgeSilver` | Silver Fortune badge | 0 | 2300 | `8a88ac39-471b-4088-8826-5a47adf6c16c` |
| 4153 | `RerollPipsbadgeGold` | Gold Swap-out badge | 0 | 3800 | `6692bde3-cd11-48e6-a796-06e6cda4a690` |
| 4154 | `RerollPipsBadgeSilver` | Silver Swap-out badge | 0 | 2100 | `0e292c1d-5d8b-4030-9b47-9dfc0779b095` |
| 4249 | `SetDiceDiceBadgeGold` | Gold Transmutation badge | 0 | 4200 | `f16e6c86-2970-4106-a21c-9f4ffa181983` |
| 4250 | `SetDiceDiceBadgePlumb` | Tin Transmutation badge | 0 | 1500 | `a0a9d335-44c5-4664-af92-558cf97d8283` |
| 4251 | `SetDiceDiceBadgeSilver` | Silver Transmutation badge | 0 | 2500 | `57ddd40b-3fbd-4bb3-8556-0f9ee5247f40` |
| 5576 | `ziskejOdznacek_tycheGoldBadge` | Gold Tyche badge | 0 | 4000 | `44cd24ab-28c5-4835-bd45-3bd87c49a89f` |
# Items: Dice
> The 45 item classes of the game's Die table: id, name, English name, weight, price and class GUID.
The game's **`Die`** rows - 45 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 1670 | `die_Antiocha` | Saint Antiochus' die | 0.1 | 790 | `329d2697-b6d2-452d-9ba9-09649a607740` |
| 1671 | `die_aranka ` | Aranka's die | 0.1 | 340 | `6a479d81-e642-40b3-92ad-0e43793f8c66` |
| 1672 | `die_basic` | Uncommon die | 0.1 | 1 | `dce71bd0-4397-4d00-8a01-1e734a8255a6` |
| 1673 | `die_Ci` | Ci die | 0.1 | 1120 | `6f0c9c31-474f-4254-9dd6-2ab54fb87060` |
| 1674 | `die_e` | Fer die | 0.1 | 1120 | `b43b8e5b-4891-48ce-a39f-143956862c96` |
| 1675 | `die_Gamblerova_bad` | Lousy gambler's die | 0.1 | 160 | `8ee58bb4-d928-4caf-9246-9a4706299543` |
| 1676 | `die_Gamblerova_good` | Cautious cheater's die | 0.1 | 470 | `23e4412b-10fe-49eb-aba0-734a121cef67` |
| 1677 | `die_Kolacova` | Pie die | 0.1 | 310 | `ba357fbc-ba9b-46d1-a743-b31842cd9fd4` |
| 1678 | `die_Kralova` | King's die | 0.1 | 910 | `5a9e23d3-e8dc-4eb7-9805-3bd2fa6d8351` |
| 1679 | `die_Lu` | Lu die | 0.1 | 1120 | `75a0739e-fa75-4f99-be68-e1c3ba30d57e` |
| 1680 | `die_Matematikova` | Mathematician's die | 0.1 | 300 | `11834cfd-bd67-41d8-8fe7-503f5076fa1d` |
| 1681 | `die_sarlatan` | St. Stephen's die | 0.1 | 3330 | `b8c8b160-9c66-4484-ae36-e775b39e4191` |
| 1682 | `die_Tengri` | Tengri’s die | 0.1 | 1 | `6bfa4927-3af4-4871-8ecb-b3b2bf13cecb` |
| 1683 | `die_Vozkova` | Wagoner's die | 0.1 | 230 | `1c1c88ca-61dd-4b64-965a-fd1e9a840364` |
| 1684 | `dieAdversity` | Unlucky die | 0.1 | 140 | `5ca4ea9d-a556-4051-a90e-ad645eb16b80` |
| 1685 | `dieBalanced` | Shrinking die | 0.1 | 150 | `aa0b6bc8-e7f6-4777-b931-1ae81d7ef8da` |
| 1686 | `dieBalatro` | Balatro's die | 0.1 | 1600 | `a671d0f9-f52e-48e9-a5cf-d51c8765f89d` |
| 1687 | `dieBlue` | Painted die | 0.1 | 650 | `fd2e7345-5584-49d1-a0f9-e69c51d2bdf0` |
| 1688 | `dieCursed` | Monk's die | 0.1 | 1600 | `c4f01ba9-3b75-47e6-81b8-f4da7f58a416` |
| 1689 | `dieDevil` | Devil's head die | 0.1 | 1600 | `9a9d9c0d-2c94-475d-ab72-75b8ced9ac05` |
| 1690 | `dieEven` | Even die | 0.1 | 660 | `3844bfed-e66b-4e97-bea4-4bf84d90ae82` |
| 1691 | `dieFavourable` | Favourable die | 0.1 | 450 | `bd819743-3e32-474e-8333-bebe92b16e98` |
| 1692 | `dieHolyTrinity` | Holy Trinity die | 0.1 | 450 | `4ede7cfe-e698-4917-a092-a01d8ac3646f` |
| 1693 | `dieKingdomCome` | Heavenly Kingdom die | 0.1 | 1500 | `8895b262-ddfb-4392-a784-eee616798c96` |
| 1694 | `dieLucky` | Lucky die | 0.1 | 600 | `1bd8d5d2-f57e-48c8-8f82-df7ae1ea90d3` |
| 1695 | `dieLuckyQuest` | Lucky die | 0.1 | 600 | `bdcd8605-9632-4792-b5bf-539eb4bf2e9d` |
| 1696 | `dieNormal` | Ordinary die | 0.1 | 10 | `65ccc0cd-de18-4305-9d64-42bb3c6d8d30` |
| 1697 | `dieOdd` | Odd die | 0.1 | 500 | `4c465f33-a20e-4428-b2f5-09cfc6c4f6d7` |
| 1698 | `dieSkull` | Hugo's die | 0.1 | 1000 | `1b1345f6-75c0-4477-b6d7-b9d73ec9d9f0` |
| 1699 | `dieStripping` | Strip die | 0.1 | 670 | `4306e2d9-f09b-444a-b05d-79c55449ef46` |
| 1700 | `dieTeeth_a` | Molar die | 0.1 | 200 | `dccf7f80-e965-4666-957c-dbf975381fff` |
| 1701 | `dieTeeth_b` | Premolar die | 0.1 | 50 | `55cc9e0d-63b4-491f-a74c-098654f58e61` |
| 1702 | `dieTeeth_c` | Wisdom tooth die | 0.1 | 50 | `3a6e12fe-a494-4a34-85a9-ebdf4f1d3a14` |
| 1703 | `dieUnbalanced` | Unbalanced die | 0.1 | 100 | `06d3757e-2882-4d75-99f9-1008a4e9d2d1` |
| 1704 | `dieUnlucky` | Die of misfortune | 0.1 | 110 | `b41171bf-9332-44ce-96fa-7e64d6e5e92a` |
| 3352 | `malir_die_b` | Painter's die B | 0.1 | 240 | `d9207a2d-9c94-4669-816f-a83186367392` |
| 3353 | `malir_die_g` | Painter's die G | 0.1 | 240 | `62bb62c7-8200-4cda-967e-02ee22c95caa` |
| 3354 | `malir_die_r` | Painter's die R | 0.1 | 240 | `1c3a6424-dfcf-4d34-b33f-d22b055d944b` |
| 3947 | `prepadeni_dieBarn` | Weighted die | 0.1 | 700 | `f8e3162a-dff1-4099-a60f-05be4e40f7ca` |
| 3965 | `problemovejParchant_pearlDice` | Mother-of-pearl die | 0.1 | 1200 | `86b7cd9f-2d1e-4e0d-8267-c5850a71d877` |
| 5543 | `zachranaPtacka_die_klobas` | Greasy die | 0.1 | 150 | `93e67a15-6545-46d3-8820-87fd690e1f0d` |
| 5544 | `zachranaPtacka_die_mud` | Grimy die | 0.1 | 230 | `8ab8d048-2ca7-4bb4-a0d4-963555750bc9` |
| 5545 | `zachranaPtacka_die_sad_sergeant` | Sad Greaser's die | 0.1 | 450 | `1f610871-6df4-4c86-a5a2-4df8dc6500df` |
| 5546 | `zachranaPtacka_die_trojak` | Trinity die | 0.1 | 650 | `85e24c29-d5b7-4792-89e4-19350e3e14ac` |
| 5572 | `zikmunduvTabor_grozavGotchaDie` | Grozav's lucky die | 0.1 | 250 | `c57c2cb4-5d16-4fbe-a55c-db20dd740efe` |
# Items: Documents
> The 403 item classes of the game's Document table: id, name, English name, weight, price and class GUID.
The game's **`Document`** rows - 403 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 66 | `andelStrazny_oresmus_book` | Livre du ciel et du monde | 0 | 1450 | `bc3716ff-a5e0-41ea-a07f-e81baa026b82` |
| 67 | `andelStrazny_riddles` | Strange little verse I | 0.1 | 100 | `d86a0245-efa2-4232-96bc-825b52a8f40c` |
| 68 | `andelStrazny_riddles_2` | Strange little verse II | 0.1 | 100 | `91242efc-c004-438b-a083-9a2b1db9153e` |
| 69 | `andelStrazny_riddles_3` | Strange little verse III | 0.1 | 100 | `e09796f9-0e02-49f4-baff-a01edd0f44e8` |
| 70 | `andelStrazny_riddles_4` | Strange little verse IV | 0.1 | 100 | `b2844271-4457-4987-a69c-fc4df87166a8` |
| 71 | `andelStrazny_riddles_5` | Strange little verse V | 0.1 | 100 | `ebadd3c9-462f-456a-a6b9-dd6ebc8607a8` |
| 72 | `andelStrazny_underground_map` | Map of Kuttenberg underground | 0.1 | 100 | `ff1994fb-a737-4e68-9dc4-7f1ca47a9168` |
| 135 | `artefakt_BavorAccountingLogs` | Account Records from the Sedletz Monastery | 1 | 500 | `ebcfa7d7-ab59-49a7-ae85-ef5ddb6ea88f` |
| 136 | `artefakt_BavorCoatofArmsDrawing` | Boleslav Bavor's coat of arms sketch | 0 | 50 | `2932390c-2601-452e-aa0b-f70334eee3a2` |
| 138 | `artefakt_BavorTravelBook` | Travelogue of Boleslav Bavor | 1 | 3000 | `98507396-08cb-424a-a8a6-6a643d77dd3f` |
| 1540 | `common_horseRegistryExcerpt` | Excerpt from the horse registry | 0.1 | 50 | `add56f71-8c58-4248-9120-1d310697bec6` |
| 1558 | `crime_letterOfRecognition` | Letter of admiration | 0.1 | 500 | `6e7c50cc-0334-4a13-a079-89549ec3262f` |
| 1667 | `dezerteri_listinaPrazanu` | Prague letter to King Sigismund | 0 | 100 | `1d6621e0-f9a8-4dc7-969e-20fb00d90408` |
| 1705 | `dlc1_letter_oburkhardovi` | Beware of Burkhard! | 0.1 | 100 | `6275874d-c4ee-443d-b0fe-ffc53bcaebeb` |
| 1706 | `dlc2_armourerPlan01` | Sketch for armourer I | 0.1 | 3550 | `62b0c4a6-8c91-4523-a039-98411845c759` |
| 1707 | `dlc2_armourerPlan02` | Sketch for armourer II | 0.1 | 3450 | `1f84d678-a147-4b1d-9750-c217fba59711` |
| 1708 | `dlc2_armourerPlan03` | Sketch for armourer III | 0.1 | 3100 | `21db63aa-bf6a-424f-aa19-b8b00ddc8d35` |
| 1709 | `dlc2_armourerPlan04` | Sketch for armourer IV | 0.1 | 2950 | `f54b604b-cdd6-45f5-a626-f2e2a71b941e` |
| 1710 | `dlc2_armourerPlan05` | Sketch for armourer V | 0.1 | 3250 | `86b87a55-b599-4817-ba2f-fb67b83aa277` |
| 1711 | `dlc2_baladaZhadru_HadrarContract` | Ragman's royal letter of safe conduct | 0 | 58 | `fd1c3f46-16e7-41d8-bf23-d491e1318daa` |
| 1712 | `dlc2_baladaZhadru_HadrarLetter` | Ragman's Letter from the Papermaker | 0 | 62 | `dadebf09-0606-4b63-8346-2cd2dee6ca91` |
| 1720 | `dlc2_denouncementBrada` | Report on the bandit Brada | 0.1 | 20 | `7c60bb44-f97c-499a-9049-f4508b7a1a6e` |
| 1721 | `dlc2_foundryManPlan01` | Sketch for caster I | 0.1 | 2850 | `cfc63de5-c213-4e1a-96d5-8b08daae5bec` |
| 1722 | `dlc2_foundryManPlan02` | Sketch for caster II | 0.1 | 3150 | `c31086bd-6253-42aa-868d-0781f499ef7d` |
| 1723 | `dlc2_foundryManPlan03` | Sketch for caster III | 0.1 | 3260 | `7d039854-e422-4e38-84bf-f3b28dec07ba` |
| 1724 | `dlc2_guildLoreBook_statutaKovarska` | Statutes of the Blacksmiths’ Guild | 1.2 | 2850 | `8c952a75-38d2-479e-bff7-4628298f8909` |
| 1725 | `dlc2_hrisniLide_correctDocument` | Latin document | 0 | 12 | `35d4f8c4-3232-4139-851b-a793c8388c50` |
| 1726 | `dlc2_hrisniLide_correctDocument_nonQuest` | Latin document | 0 | 14 | `4b471a8f-4a39-4986-ac55-e18cd706cff4` |
| 1727 | `dlc2_hrisniLide_hadrarDocument` | False will | 0 | 18 | `0058b894-9e48-4c25-b053-98f1e6b8119a` |
| 1728 | `dlc2_hrisniLide_hadrarDocument_nonQuest` | False will | 0 | 22 | `970e2d42-5711-4f91-bc51-b60ec0b99d90` |
| 1729 | `dlc2_hrisniLide_incorrectDocument` | Latin document | 0 | 24 | `6d9ddb91-ace2-40bd-8284-f29689b5fe15` |
| 1730 | `dlc2_hrisniLide_incorrectDocument_nonQuest` | Latin document | 0 | 18 | `ffcae8d0-edc7-4353-98d0-65c7d2d0da1b` |
| 1731 | `dlc2_hrisniLide_latinDictionary` | Latin vocabulary | 1 | 3580 | `ffa1c4c4-83cc-44ea-9f22-b4c81512429b` |
| 1732 | `dlc2_koniasLetter` | Message from Koniash | 0.1 | 48 | `f507a353-9ce5-45bb-9325-6ebeff125bb7` |
| 1738 | `dlc2_mrtvyNemluvi_anonymLetter` | Solomon | 0.1 | 45 | `19b28390-d4c3-4bc3-b46f-44677a39265b` |
| 1739 | `dlc2_mrtvyNemluvi_mapStash` | Storage Yard Plan | 0.1 | 35 | `47c8bf72-4579-4ca0-8b90-f642145476a7` |
| 1741 | `dlc2_posledniBereVse_letterHradecky` | Letter of the Lord of the Rose | 0.1 | 90 | `2b117e9f-5f9a-4926-a4fa-91e004516d7a` |
| 1763 | `dlc2cernokneznik_bookSecretText` | Planets and their Metals | 0 | 2150 | `55a1f416-7842-49f2-ad78-51cf70dd54cf` |
| 1764 | `dlc2cernokneznik_letterCipher` | Strange riddle | 0 | 40 | `7f3b0cb0-5140-4a3e-b957-f23560382035` |
| 1768 | `dlc3_lorebook_raciKucharka` | Crayfish, the poor man's salmon | 0.1 | 0 | `bbc1d396-7b83-4260-9102-83a40a08d3b9` |
| 1778 | `dopis_od_aulitzovy_zeny` | Letter from von Aulitz's wife | 0.1 | 50 | `3d3022c9-09d3-44ca-b647-d20e8c786b59` |
| 2174 | `fairyStory_HouseOfRuthard` | The Ruthard Coat of Arms | 1 | 1150 | `e1afae05-60d6-4494-9b4d-0f4bd5a90527` |
| 2175 | `falesnaPosadka_safeConduct` | Military writ | 0 | 100 | `e6a3993e-7f82-42b2-a329-59ed2fa3ed3d` |
| 2430 | `hadkaKonaru_archeryTracks` | Diagrams of mounted archery tracks | 0.1 | 50 | `459b1484-7758-4bde-a326-4ebd17493c60` |
| 2817 | `hunting_map_suchdol` | Poacher's map | 0.1 | 50 | `b2418856-aa99-4d02-8c51-1261556b7b15` |
| 2831 | `ius_regale_montanorum_I_kcd2` | Ius regale montanorum I | 1 | 1500 | `93bf5ba8-4202-4400-bb5d-d68eab7f803b` |
| 2832 | `ius_regale_montanorum_II_kcd2` | Ius regale montanorum II | 1 | 1500 | `025ff2da-4a97-4217-bbe5-762c06c9f09a` |
| 2896 | `klasterniTajemstvi_havelAccounts` | Innkeeper Havel's ledgers | 0 | 250 | `178b3de9-24dd-403d-a1dc-354a7b77c494` |
| 2900 | `klasterniTajemstvi_wineEncyclopedia` | Sir Bushek's vintner wisdom | 1 | 1200 | `cc07e392-08be-4bd1-a0f7-078c461ee5f5` |
| 2906 | `kocovnickaCest_safeConduct` | Voivode's letter of safe conduct | 0 | 50 | `382f2c19-517f-42c9-8570-268ba0bbbef0` |
| 2931 | `kovaniNaKovarne_forgottenContract` | Forgotten contract | 0.1 | 50 | `1d9f4366-e6c4-494c-898f-399b792a5a4c` |
| 2968 | `kralovskeStribro_ironworksRegister` | Grund smeltery ledgers | 0 | 100 | `b8708875-1d55-4369-9858-9b6e2dd3f957` |
| 2969 | `kralovskeStribro_kristiansSafeConduct` | Christian's safe conduct | 0 | 100 | `fffab57b-ccb8-452b-ab1d-5bb259c334cd` |
| 2970 | `kralovskeStribro_letterForBures` | Letter for Buresh | 0 | 50 | `3a827797-78b5-4261-aa0a-a4616b8bfafd` |
| 2971 | `kralovskeStribro_letterFromVavak` | Letter from Vavak | 0 | 100 | `4bacfae1-06e9-482a-be59-3d98ebf7410a` |
| 2972 | `kralovskeStribro_mapToSecretMint` | Map to the secret mint | 0 | 100 | `b0af19a6-8dd2-4306-9fec-90cea54935de` |
| 2974 | `kralovskeStribro_miningRegister` | Horschan mines account ledger | 0 | 50 | `432de2b5-9717-4165-9088-ebbc1083b1ad` |
| 2977 | `kralovskeStribro_mintRegister` | Secret mint ledgers | 0 | 100 | `f3a2d58c-9a6d-44a7-a05a-a70c9fc471a4` |
| 2979 | `kralovskeStribro_safeConduct` | Buresh's safe conduct | 0 | 100 | `791fb136-8c52-4575-9c8a-a938bd24f9b9` |
| 2988 | `kucharskaKniha_millersRecipe` | Miller's recipe | 0 | 50 | `4704a6ba-02e5-4e45-8ac8-5fab7c6b3d83` |
| 2992 | `kuttenberg_underground_map` | Miners' Underground Map | 0.1 | 50 | `8c4dec01-9ab1-4049-afb0-22617e4aef59` |
| 2996 | `kuttenbergLoreBook_knihaPopravci` | Kuttenberg execution book | 1 | 160 | `a6ae026c-f27b-48d0-9b36-80e44b51e2f2` |
| 2997 | `kuttenbergLoreBook_knihaPrisezna` | Kuttenberg oath book | 1 | 240 | `0fde39dd-83c7-430b-8955-5eb32ca83a41` |
| 2998 | `kuttenbergLoreBook_knihaSoudni` | Kuttenberg court book | 1 | 230 | `8dd041d8-a2a6-4a89-8683-adaf243fc0d3` |
| 2999 | `kuttenbergLoreBook_knihaTrhova` | Kuttenberg market book | 1 | 170 | `32202dc5-3da2-4348-899a-745ad1b018e1` |
| 3139 | `letter_BergovRychtarTroskovice` | Decree of Bailiff Thrush | 0.1 | 20 | `d76c35d5-3fa4-4e54-b021-42522e492698` |
| 3140 | `letter_glejtMarkvartForSilver` | Decree of Markvart von Aulitz | 0.1 | 20 | `8ccaf2e3-7fa5-427a-86b4-3718b1400d45` |
| 3141 | `letter_hiddenLetterTrosky` | Letter to unknown servant | 0.1 | 100 | `3e0d0c80-1476-41a4-a414-562e96b19452` |
| 3142 | `letter_huntsmanRenes` | Gamekeeper's letter | 0.1 | 100 | `08a31823-a5c6-43f9-9b4b-27b8230a352f` |
| 3143 | `letter_jobsToWenceslaus` | Letter for King Wenceslas | 0.1 | 100 | `a133f7dd-1910-414e-b186-0ce4585a378a` |
| 3144 | `letter_jostThomas_I` | Letter from Bishop Thomas I. | 0.1 | 30 | `d639b0bb-3acf-43f8-ac16-64f26f30c4ce` |
| 3145 | `letter_jostThomas_II` | Letter from Bishop Thomas II | 0.1 | 30 | `f17833c1-9d04-4ba7-814c-ae72d8f658da` |
| 3146 | `letter_jostThomas_III` | Letter from Bishop Thomas III. | 0.1 | 30 | `b7a63686-09e7-425f-b998-10eab19e02cb` |
| 3147 | `letter_petrarcaToAnna` | Letter for Anna of Schweidnitz | 0.1 | 100 | `5310b1cb-be0b-4f21-b141-75d22f9825b0` |
| 3148 | `letter_sigismundToWenceslaus` | Sigismund's letter to Wenceslas | 0.1 | 100 | `ead19383-3e4b-4040-8ed7-f559403028c4` |
| 3150 | `listovniTajemstvi_letterToTestHenry` | Kvyetoslav's love poem | 0.1 | 100 | `7d2bac32-2999-491a-88c7-9c9394838061` |
| 3228 | `lorebook_anthologyOfLovePoems` | Selection of amorous poetry | 1 | 1050 | `ebe950f2-7336-48db-a1d5-c61a4ca1b23a` |
| 3229 | `lorebook_antidotarium` | Antidotarium Nicolai | 1 | 3000 | `87815147-c076-42d0-b642-058e603f5b95` |
| 3230 | `loreBook_Argonautica` | Argonautica | 1 | 1050 | `4db8cca1-984d-4680-855c-8e429bac8b22` |
| 3231 | `lorebook_atalanta` | Atalanta, maiden to men equal | 1 | 1450 | `7f34e014-4a60-46e6-9d60-5cbe691b9101` |
| 3232 | `lorebook_boethius` | De consolatione philosophiae | 1 | 2950 | `43510510-fc73-4d7a-8e52-ad0248e34e02` |
| 3233 | `lorebook_bookOfPrayers` | Prayer to Saint Wenceslas | 1 | 1000 | `f473094b-f47d-4dbb-b4c6-d32816d0ce90` |
| 3234 | `lorebook_breviariumMinor` | Breviarium Minorum | 1 | 1450 | `84408a4e-1255-4977-ab47-6173d7938574` |
| 3235 | `lorebook_breviariumRomanum` | Breviarium Romanum | 1 | 1800 | `830da116-3885-48c0-b080-cef6481be0ca` |
| 3236 | `lorebook_canzoniere` | Canzoniere | 1 | 2000 | `4088957e-d7f7-4cd9-aff9-996745340a35` |
| 3237 | `lorebook_fleaAndWartRemedy` | Against Fleas and Warts | 1 | 1350 | `c93d6795-ed9a-429a-9680-32afc0676938` |
| 3238 | `lorebook_foxAndJug` | Fable of the Fox and the Pitcher | 1 | 1200 | `480838e2-d760-4d4b-856f-178b9f1acca7` |
| 3239 | `lorebook_grimoirSecretZero` | Treatise on Nought | 1 | 2450 | `95a93516-8a38-43ac-8b36-8d70406efa87` |
| 3240 | `lorebook_groomAndApprentice` | The Groom and the Apprentice | 1 | 1150 | `cc09837c-c2d7-4270-869a-6a9583c5bef8` |
| 3241 | `loreBook_Historia_Troiana` | Historia Troiana | 1 | 850 | `b5cae211-fe96-44ec-99c2-4105f14aecf6` |
| 3242 | `lorebook_karelTestament` | Last Will of Charles IV | 1 | 2000 | `bdec0fe4-bd2e-4cf9-a706-195ca200d280` |
| 3243 | `lorebook_kingdomOfBohemia` | The Kingdom of Bohemia | 1 | 1350 | `09d8e88a-32f7-435c-800f-ac9dfe07da7a` |
| 3244 | `lorebook_legendaAurea` | Legenda Aurea | 1 | 6000 | `5d0b8b04-a8ba-4127-a847-73b70e1009e4` |
| 3245 | `lorebook_legendOfChristianus` | Excerpt from the Legend of Christianus | 1 | 1200 | `406fd171-acc1-4289-bf8d-cfc4b1ee54fe` |
| 3246 | `lorebook_legendOfSaintDorothy` | About Saint Dorothy | 1 | 1350 | `e7129bb8-d5d4-46d6-afe1-d78d2ad9c458` |
| 3247 | `loreBook_magicalPicatrix` | Picatrix | 1 | 2650 | `876c3d2c-003a-4a7d-87d8-c1ccc9caa964` |
| 3248 | `loreBook_magicalSeferRaziel` | Liber Razielis Archangeli | 1 | 2400 | `fa75f226-f8b1-46a7-aef8-b069bd10d436` |
| 3249 | `lorebook_mandevilla` | Travelogue of the so-called Mandeville | 1 | 1900 | `709d5796-fbc0-49a5-9fce-2f8e5e6a7fc2` |
| 3250 | `lorebook_maryMotherOfAlchemy` | Mary the Jewess, Mother of Alchemy | 1 | 1800 | `791f83ac-d633-474e-b76a-1e566da1f7e3` |
| 3251 | `lorebook_meadBrewing` | How Good Mead is Brewed | 1 | 1100 | `1cc43615-171a-4954-acaf-305e8fa5a2a0` |
| 3252 | `loreBook_Metamorphoses` | Metamorphoses IV | 1 | 1100 | `c00aeaee-2c23-46e3-93fd-338d28710afc` |
| 3253 | `lorebook_monasticRuleOfSaintBenedict` | Monastic Rule of Saint Benedict I | 1 | 1100 | `12f62ab4-1b4e-4c76-8293-73bbb227b027` |
| 3254 | `lorebook_monasticRuleOfSaintBenedict2` | Monastic Rule of Saint Benedict II | 1 | 1350 | `306e8746-088f-456a-9454-f43df58bb618` |
| 3255 | `lorebook_onAdamites` | On the Adamites or Naked Worshippers | 1 | 1050 | `1414462b-7ede-4d6d-ad85-8772c26f969f` |
| 3256 | `lorebook_onCharlesIV` | Charles IV | 1 | 1500 | `a4bbfe01-e327-4063-87a0-3a64692641e7` |
| 3257 | `lorebook_onCumans` | On the Cumans | 1 | 1450 | `15756be8-18d6-41e0-9338-c5039d1d0548` |
| 3258 | `lorebook_onElectors` | On the Prince Electors | 1 | 1200 | `33f044a1-c7b1-497d-adbb-b514cb440fc5` |
| 3259 | `lorebook_onEvilMorals` | Evil Morals in Bohemia | 1 | 1200 | `eab20b8a-c767-40ad-9748-e84fb8701f65` |
| 3260 | `lorebook_onLibuseAndPremysl` | On Libusse and Premysl | 1 | 1250 | `74885c5c-e489-45c2-bb69-6011092396b3` |
| 3261 | `lorebook_onLombardyCampaign` | The Czech Campaign to Lombardy I | 1 | 1350 | `3e38f85f-a229-4a55-8b45-6ce9bb1d98d8` |
| 3262 | `lorebook_onLombardyCampaign2` | The Czech Campaign to Lombardy II | 1 | 1500 | `22664905-f9bc-4ef4-a0e1-7b72c25d5ec5` |
| 3263 | `lorebook_onMaidensWar` | The Maidens' War I | 1 | 1200 | `e8bb48b6-c363-4227-9d71-4f26e0dc0370` |
| 3264 | `lorebook_onMaidensWar2` | The Maidens' War II | 1 | 1500 | `c95a4acf-136c-4ce5-88d1-e9599aef64f6` |
| 3265 | `lorebook_onMargraviateWars` | On the Margraviate Wars | 1 | 1350 | `f4f0b57b-e475-4b6a-89fb-2b56b9ba84a2` |
| 3266 | `lorebook_onMelusine` | The Tale of Melusine I | 1 | 1200 | `70f059e4-6e15-4b6b-b2a2-40b94482d2d4` |
| 3267 | `lorebook_onMelusine2` | The Tale of Melusine II | 1 | 1250 | `215aeeff-b139-4bcd-bd1e-21dc6e90958b` |
| 3268 | `lorebook_onNewCouncil` | The New Council by Smil Flashka | 1 | 1500 | `5f78a252-2323-4236-874f-08c0092913d3` |
| 3269 | `lorebook_onOldFatherCzech` | On Old Father Czech | 1 | 1000 | `6328b5e5-3747-42a0-9d4d-c6e91f3c26ff` |
| 3270 | `lorebook_onPapalSchism` | The Papal Schism | 1 | 1400 | `f6fd203c-6983-481b-882f-f03836743086` |
| 3271 | `lorebook_onPrague` | On Prague | 1 | 1250 | `9475fa39-7ce3-4253-9953-fe03c753d8fd` |
| 3272 | `lorebook_onSaintAdalbert` | On Saint Adalbert | 1 | 1300 | `805ba438-34c7-4ef5-8699-d7a61721b1c4` |
| 3273 | `lorebook_onSaintProcopius` | St. Procopius and the monastery | 1 | 1350 | `d00b8aa6-d846-4dfd-8a58-96f7dcd9289e` |
| 3274 | `lorebook_onSaintWenceslaus` | On St. Wenceslas | 1 | 1400 | `f5b07d39-d597-4168-91d4-358be9f9be1e` |
| 3275 | `lorebook_onSiegeOfPrague` | The Peculiar Siege of Prague | 1 | 1250 | `3426fb05-4786-493b-a64e-6c976aaa5321` |
| 3276 | `lorebook_onSigismund` | King Sigismund of Hungary | 1 | 1350 | `d99f40d0-1417-4fa4-b905-32dc3f281b92` |
| 3277 | `lorebook_onSimony` | On Simony | 1 | 1150 | `56fb7288-7e6f-4f32-a0b2-75e2fa47295f` |
| 3278 | `lorebook_onTournaments` | On Tournaments | 1 | 1350 | `f115511c-a787-4c5b-808e-3c389b7add2f` |
| 3279 | `lorebook_onWenceslasIV` | Wenceslas IV | 1 | 1000 | `573023a0-3e7f-400e-a43c-d3e16b4c72ab` |
| 3280 | `lorebook_onWickedBlacksmiths` | Ye Wicked Blacksmiths | 1 | 1150 | `7c6ed87e-5c87-4550-9aec-6a4c2e1e5980` |
| 3281 | `lorebook_onWilgefortis` | On Saint Wilgefortis | 1 | 1300 | `1461d29c-a474-4645-bf53-32f3c1fe3113` |
| 3282 | `lorebook_pangurban` | The Cat and the Poet | 1 | 1700 | `89db88bd-c49c-4e32-925c-d6d5724b1f31` |
| 3283 | `lorebook_plektruda` | Plectrude | 1 | 1600 | `6e9d99b8-42e7-4b84-809c-60fccf9824f9` |
| 3284 | `lorebook_psalmiPenitentiales` | Psalmi penitentiales | 1 | 1700 | `ba71635a-78c8-416f-b130-57fdd7045f3b` |
| 3285 | `lorebook_queensCourtManuscript` | Königshof Manuscript | 1 | 1700 | `dc184975-c52d-49d8-bd9e-e8c59bff499b` |
| 3286 | `lorebook_songOfMerryPoor` | Song of the Merry Poor | 1 | 1100 | `83c76770-b0a4-4885-9d38-427f5b70b99d` |
| 3287 | `loreBook_threeCrusaderKings` | Three Crusader Kings | 1 | 2020 | `5214393d-b6ea-4a04-a1cf-38dc37deaa6c` |
| 3288 | `lorebook_tomyris` | Tomyris, Queen of the Massagetae | 1 | 1800 | `cc17fac7-07ec-4ce5-b1bb-ed2c35ab0772` |
| 3289 | `lorebook_vypujcnik` | Loan Book | 2 | 100 | `2dc1f8d7-eb45-44ba-80c7-b1e8e157719a` |
| 3290 | `lovNaBanditu_rareBook` | Rare book from Sedletz | 0 | 3500 | `02f819cf-58ce-435b-86ce-d18c988b7e40` |
| 3299 | `m44a_dopisprozikmunda` | Lost Charter for King Sigismund | 0 | 50 | `1b76a3a7-6e3f-4d52-a060-be34de3ac516` |
| 3300 | `M44aZvlastniZprava` | Strange message | 0 | 100 | `c3fd5305-4103-4f76-b708-d0fcfd3f197c` |
| 3366 | `map_bruncvik_01` | Brunswick's map I | 0.1 | 100 | `0f04ab4e-2b33-489d-8c4b-3f21a28c544b` |
| 3367 | `map_bruncvik_02` | Brunswick's map II | 0.1 | 100 | `50838533-edc2-4be9-bb35-36c27559368a` |
| 3368 | `map_bruncvik_03` | Brunswick's map III | 0.1 | 100 | `d857eb43-206d-4a2d-bccf-10418f78ba6c` |
| 3369 | `map_bruncvik_04` | Brunswick's map IV | 0.1 | 100 | `5fe3931b-0b18-46b3-9053-eecaf5aa3c27` |
| 3370 | `map_u49_mapakpokladu` | Krizhan's treasure map | 0 | 50 | `4f636944-e9d3-4bae-85b8-165b5a049486` |
| 3371 | `map_u49_mapakpokladu_bandit` | Bandit's treasure map | 0 | 50 | `0b54dfe4-7c6b-41bd-b6f5-6f079c98a14d` |
| 3380 | `mlynaruvUcen_book` | Lightbringer's secret | 0 | 1500 | `6f82c02b-bc46-4155-a289-514ce0193e73` |
| 3384 | `mlynaruvUcen_trismegistosSupply` | Offer of Hermes Trismegistus | 0 | 100 | `cad9538f-c4ee-4693-9ff4-3ddea1f27e5b` |
| 3400 | `nakaza_dirtyPageFromCrypt` | Filthy parchment from the crypt | 0 | 50 | `b590ff7d-c3c5-4095-8be6-50d8588a7fc4` |
| 3402 | `nakaza_mapOfCrypt` | Crypt map | 0 | 50 | `cb10e1c5-d8b7-4244-b1ba-57884b26f66e` |
| 3403 | `nakaza_ParfumeBook` | The Book of fragrant oils | 1 | 50 | `a6093a40-5eac-4176-a1a4-ad1b986474f6` |
| 3409 | `nalezeniDelnici_letterFromTorwart` | Letter from Torwart | 0 | 0 | `aeccb56b-2298-4d75-b8f2-59280a39bd0e` |
| 3416 | `naTroskach_zapiskyFelcara` | Physician's journal | 1 | 100 | `973e5a44-e096-4bed-97eb-52b5e432d20d` |
| 3417 | `navstevaLekare_lordPisekCredentials` | Letter of introduction from Lord Pisek | 0 | 100 | `a2670130-89ce-48d6-a54d-9a9973b3a57f` |
| 3418 | `navstevaLekare_pleaForHelp` | Request for help | 0 | 100 | `6700297e-757f-44f1-a640-c61e5e6ad583` |
| 3438 | `nemcuvPoklad_mapStashLoot_1` | Footpad's hideout map | 0.1 | 80 | `3236e899-8d8f-43e6-8bf7-e5124e06a212` |
| 3439 | `nemcuvPoklad_mapStashLoot_2` | Old hideout map | 0.1 | 50 | `0d28fa2c-c50f-4adf-ae13-aa919091eeba` |
| 3442 | `nemocnaDevecka_ruzennaZahradka` | The Rose Garden | 1 | 2000 | `c121053a-c239-43ab-aba7-6833951bc0cc` |
| 3687 | `papezskyLegat_vavakLetter` | Scribbled letter | 0.1 | 100 | `d306d3d9-ec05-49fd-aeda-05501299aab2` |
| 3754 | `poi_duelOstrostrelcu_skillbook_bow` | Book on the nobility of the bow | 1 | 1500 | `125d09b0-5b1f-4408-a5c7-0a56d0394f11` |
| 3755 | `poi_duelOstrostrelcu_skillbook_crossbow` | A treatise on the beauty of the crossbow | 1 | 1500 | `a103d73c-c15a-4bd7-bd4b-57c3431dc643` |
| 3760 | `Poi_indianaJonesPoem` | A peculiar poem | 0.1 | 500 | `22374f7d-8506-48ce-9830-400044342e2b` |
| 3761 | `poi_kostlivecVMocalech_map` | Map of the Zhelejov marshes | 0.1 | 100 | `956af166-1412-49ed-a678-14000c200f3b` |
| 3763 | `poi_MapkaZlodeje_map` | Caught thief's map | 0.1 | 50 | `a76e4c3b-a427-4afd-a27a-d4206f5c769c` |
| 3767 | `poi_mnichovaSchovka_map` | Map from chest by Sedletz | 0.1 | 0 | `2ef04e80-e773-4120-b44a-7ff0715a97bb` |
| 3768 | `poi_nedostavenaChalupa_huntingSpotsMap` | Map of game near Slatego | 0.1 | 100 | `f91c4738-fec3-4b1d-b70e-08d792119931` |
| 3778 | `poi_podseminstiDrevorubci_map` | Lower Semine woodcutters' map | 0.1 | 0 | `f4623b5a-e9eb-453e-b196-9ff789b1a9a0` |
| 3782 | `poi_rajskaZahrada_gardeningBook` | Basics of Gardening | 1 | 1500 | `64d00084-c300-4e2c-85ce-eb9a4e81e064` |
| 3785 | `poi_skryseSPitim_map` | Map hidden at Vostatek | 0.1 | 0 | `b646ea7d-3ba6-4f2c-8784-b736402b95bb` |
| 3788 | `poi_tachovskyVodopad_philosophyBasics` | Basics of Philosophy | 1 | 1750 | `4100b239-1aaa-4d02-bb5e-1bff01948ace` |
| 3789 | `poi_thiefsWarning` | Scratched message | 0.1 | 100 | `2be495ad-92ed-44d0-8839-8df4ad0fa931` |
| 3790 | `poi_tretiKrizovatkaVPodzemi_smugglersMap` | Smugglers's map | 0.1 | 100 | `00ec7e8d-4d4a-4365-97fe-5323d02bff49` |
| 3792 | `poi_troskovickyHrbitov_map` | Map left by the deceased | 0.1 | 100 | `fdee7fe7-2dd0-4ae1-8a50-e25ca7aa3a68` |
| 3800 | `poi_vodnik_treasureMap` | Drowner's map | 0.1 | 50 | `8ea0ebbc-fd34-49f2-a5e9-b1369e220d1c` |
| 3804 | `poi_vyplavenyPoklad_map` | Vidlak bandit's map | 0.1 | 50 | `84286824-882c-48a0-b261-e5ccea6929f6` |
| 3926 | `poustevnik_edictOrderAmbroz` | Seneschal Ambrose's decree | 0.1 | 50 | `0f977322-6788-4453-9b81-b3f473a119b7` |
| 3927 | `poustevnik_konradDiary` | Diary of Knight Konrad | 0 | 100 | `d7c4ede5-9146-49ad-9bde-ba2cd631b808` |
| 3930 | `poustevnik_oldOrderPaperAmbroz` | Chronicle of the Knights of the Cross | 1 | 50 | `a465f1df-a15c-443a-859d-6007a0879c47` |
| 3931 | `poustevnik_oldPaperFireAmbroz` | Old letter about the Order's commandery fire | 0.1 | 50 | `3a4ff1af-07dc-44db-a3ed-f5a7a0e1aa23` |
| 3932 | `poustevnik_oldPaperInquisitionAmbroz` | Old notes on the fire investigation | 0.1 | 50 | `a54ab5ef-d4a2-4929-9045-1a1efde935c5` |
| 3940 | `pracharna_finishedBook` | On Composition of Explosives | 1 | 2500 | `5f07ce3c-96a6-49cb-a2bd-0a43ec5325a2` |
| 3941 | `pracharna_loveLetter` | Love letter for Regina | 0 | 100 | `78f07bb7-990d-4c5f-8020-db8ba62ade02` |
| 3942 | `pracharna_rentedBooksNotice` | Scribe's message | 0.1 | 50 | `412d7d1e-a940-4298-b1d4-5c336a2c5911` |
| 3945 | `predaniVChramu_wenceslasMedicalRecord` | Wenceslas' medical record | 0 | 0 | `c3d98469-efb4-49e2-b705-2e15d272ce5f` |
| 4034 | `puvodNemoci_finishedDecameronTranslation` | The Decameron | 1 | 9947 | `7e6360c3-dbc6-48ec-935a-12e593d18af0` |
| 4035 | `puvodNemoci_funnyJoke` | Marked scrap | 0 | 0 | `56128611-d4a0-4798-957c-3618cb479cfe` |
| 4043 | `puvodNemoci_petrParler` | The Writings of Peter Parler | 1 | 5700 | `e3ea1873-d97d-4cf7-882a-335a90916621` |
| 4044 | `puvodNemoci_planOfBasement` | Old cellar plans | 1 | 0 | `f6297b59-375c-4bd7-93ab-7213bae4ec69` |
| 4045 | `puvodNemoci_unfinishedDecameronTranslation` | The Decameron | 1 | 42 | `049c87f9-1b35-4290-9698-dcaed03f1224` |
| 4074 | `recipe_absintiumPotion` | Recipe for Artemisia potion | 0.1 | 1750 | `477821f4-91c4-45d6-95b2-3382e0d7350d` |
| 4075 | `recipe_aesopPotion` | Recipe for Aesop potion | 0.1 | 1550 | `604529f5-ba8b-46e8-8210-2683d67d6dbb` |
| 4076 | `recipe_antidotePotion` | Recipe for Digestive potion | 0.1 | 1750 | `c5718b58-0082-412d-ae93-2ef6cf46ecd7` |
| 4077 | `recipe_antiPlaguePotion` | Recipe for St. Roch's potion | 0.1 | 2100 | `d71f031c-096c-4468-9a3a-b498278f14cc` |
| 4078 | `recipe_axebattle01` | Sketch - Bearded axe | 0.1 | 1400 | `922ed4f3-f1f1-4a1b-b5c3-127ea624fcfc` |
| 4079 | `recipe_axebattle02` | Sketch - Broad axe | 0.1 | 2600 | `e5833356-b1bf-44cb-90d0-7c4c82c4b7f2` |
| 4080 | `recipe_axebattle03` | Sketch - Horseman's pick | 0.1 | 4100 | `3cb71922-2eb2-42cd-8be0-c98831a36756` |
| 4081 | `recipe_axebattle04` | Sketch - Knight's axe | 0.1 | 4500 | `561852ff-75ff-4690-b820-69a83552ec8b` |
| 4082 | `recipe_axeCalvaria` | Sketch - Calvaria axe | 0.1 | 2600 | `dcaf8616-5605-4c32-9882-150d73e895e0` |
| 4083 | `recipe_axecuman` | Sketch - Cuman fokos | 0.1 | 2300 | `b4568e30-c126-46cb-bbe6-5336b4a7ddca` |
| 4084 | `recipe_axefancy` | Sketch - Executioner's axe | 0.1 | 3300 | `ff2e6856-f5b7-45dd-9690-bb0fea117fa3` |
| 4085 | `recipe_axework01` | Sketch - Work axe | 0.1 | 500 | `1e3c6cd2-623c-439a-a53f-f3d3f6cc29ac` |
| 4086 | `recipe_axework02` | Sketch - Carpenter's axe | 0.1 | 900 | `13782e2d-2a40-4e5d-9384-5abf5111d565` |
| 4087 | `recipe_banePotion` | Recipe for Bane poison | 0.1 | 2050 | `a955dc3d-1327-40d2-a9ea-bb2d06f576ec` |
| 4088 | `recipe_bardPotion` | Recipe for Fox potion | 0.1 | 2000 | `5eb14c68-d99c-4a11-a260-51cbf2a9d2a2` |
| 4089 | `recipe_bowmansBrewPotion` | Bowman's brew recipe | 0.1 | 1600 | `2cd02a0f-d7e3-44c3-ac8f-7b6da6ac3f37` |
| 4090 | `recipe_chamomileDecoction` | Recipe for Chamomile decoction | 0.1 | 1100 | `153ff47b-7b60-4582-b5fb-b373ecdf36bc` |
| 4091 | `recipe_embrocationPotion` | Recipe for Embrocation | 0.1 | 1350 | `deb7aff1-5fee-4341-8703-d9de7f7cce2f` |
| 4092 | `recipe_energyPotion` | Cockerel recipe | 0.1 | 1450 | `b3ee8c6a-9f16-45aa-88cb-6d0a4698d96b` |
| 4093 | `recipe_fevertonicPotion` | Recipe for Fever tonic | 0.1 | 1250 | `d0952501-4e64-406c-bfdb-6768fa82ccfd` |
| 4094 | `recipe_hairodogPotion` | Recipe for Hair o' the Dog | 0.1 | 1450 | `9f540535-0255-4049-aaee-9a0cbc15fc24` |
| 4095 | `recipe_healthSmallPotion` | Recipe for Marigold decoction | 0.1 | 1250 | `325afbbb-3f0c-4d79-a990-0a3124a44907` |
| 4096 | `recipe_hoochPotion` | Moonshine recipe | 0.1 | 1050 | `20fa3692-2e69-4562-8949-48fcf81fc813` |
| 4097 | `recipe_horseshoe` | Sketch - Farmer's horseshoes | 0.1 | 300 | `2b8826d8-2676-41af-81c6-d21c7ccc4a8b` |
| 4098 | `recipe_horseshoeMilitary` | Sketch - Knight's horseshoes | 0.1 | 400 | `b3ade582-af56-4712-ba4c-26febff6a983` |
| 4099 | `recipe_horseshoeNoble` | Sketch - Nobleman's horseshoes | 0.1 | 600 | `75dddb4a-a5b6-4bca-898a-00768065b79a` |
| 4100 | `recipe_horseshoeNomad` | Sketch - Lovarian horseshoes | 0.1 | 700 | `c02d7faa-dc9c-4beb-bc15-451dec51968f` |
| 4101 | `recipe_horseshoeRacing` | Sketch - Racing horseshoes | 0.1 | 800 | `00ca0662-0569-4b69-8ff3-b9e396c49298` |
| 4102 | `recipe_huntingSwordBasic` | Sketch - Hunting sword | 0.1 | 700 | `7bb1fdb5-a8f0-44a8-a4da-db674cbc66ed` |
| 4103 | `recipe_huntingswordfalchion` | Sketch - Falchion | 0.1 | 1200 | `15a4fe3a-fdbc-458b-b145-fb027e2656bc` |
| 4104 | `recipe_huntingswordmussle` | Sketch - Shell hunting sword | 0.1 | 1300 | `a931e179-4291-42b7-acb2-9d3bc0914f56` |
| 4105 | `recipe_huntingswordsashka` | Sketch - Cuman shashka | 0.1 | 1000 | `df4ad865-dfad-4217-9e97-b77a8eb32197` |
| 4106 | `recipe_huntingswordsword` | Sketch - Noble's hunting sword | 0.1 | 1500 | `3ea25acd-bcaf-4074-9472-1142976c9970` |
| 4107 | `recipe_longswordbroad` | Sketch - Broad longsword | 0.1 | 5900 | `da5e25c5-1f58-47e4-9426-d4f6668fbbde` |
| 4108 | `recipe_longswordcommon` | Sketch - Common longsword | 0.1 | 3000 | `6eeda739-9694-4183-a6b1-154d0e828b98` |
| 4109 | `recipe_longswordduel` | Sketch - Duelling longsword | 0.1 | 7400 | `5580357c-15cc-4d93-b464-cd796ca2c97a` |
| 4110 | `recipe_longSwordLilium` | Sketch - Lingua belli longsword | 0.1 | 7300 | `3f587259-5eec-4092-a189-2b94030572f0` |
| 4111 | `recipe_longswordold` | Sketch - Knight's longsword | 0.1 | 1400 | `ceac4830-e786-4a03-bdd5-d68e83d19867` |
| 4112 | `recipe_longswordsturdy` | Sketch - Battle longsword | 0.1 | 5100 | `5044ce04-d7da-40fb-8f88-d038cbecb900` |
| 4113 | `recipe_morovyOblek_aetherOil` | Recipe for Essential oil | 0 | 5780 | `55127dd1-c08f-4d88-9ca3-8c93870ebef8` |
| 4114 | `recipe_nighthawkPotion` | Recipe for Nighthawk potion | 0.1 | 1600 | `32ad55e4-fb31-406c-a8d0-706872ba206e` |
| 4115 | `recipe_painkillerPotion` | Recipe for Painkiller brew | 0.1 | 1120 | `b224ffbd-7e36-44f3-9cff-07966a6c8287` |
| 4116 | `recipe_paralysisPotion` | Recipe for Dollmaker poison | 0.1 | 1650 | `e281d7f6-afd9-46c5-8f73-8f1b7290437b` |
| 4117 | `recipe_perfumeLongWeak` | Recipe for Mintha perfume | 0.1 | 1850 | `1d04fc79-0a9d-4dac-b052-d2af9377c18d` |
| 4118 | `recipe_perfumeShortStrong` | Recipe for Lion perfume | 0.1 | 1250 | `0531cc2d-29c2-42e6-a706-013e464de93f` |
| 4119 | `recipe_polearmBruncvik` | Sketch - Brunswick's poleaxe | 0.1 | 4350 | `d66614fb-e2bf-430e-b7c3-e445b7c94a2d` |
| 4120 | `recipe_respecPotion` | Recipe for Lethean Water | 0.1 | 1650 | `7c621760-e296-4069-9303-14c05f1745ba` |
| 4121 | `recipe_sabrecommon` | Sketch - Common sabre | 0.1 | 2200 | `2b300a91-25bc-4bb0-95e9-7b4c1ac70ab3` |
| 4122 | `recipe_sabreLionHead` | Sketch - Kilij, Lion's roar | 0.1 | 5400 | `c8162233-a50a-4ce3-a0d5-5941ade94763` |
| 4123 | `recipe_sabrenoble` | Sketch - Ataman's sabre | 0.1 | 4500 | `726f19bb-1e66-49c2-8a7a-1526c8e11f3c` |
| 4124 | `recipe_savePotion` | Recipe for Saviour Schnapps | 0.1 | 1120 | `f65708b5-f7bb-4ee0-adc3-bddc426976f5` |
| 4125 | `recipe_shortswordbasilard` | Sketch - Basilard | 0.1 | 5000 | `78a2ec95-1821-429d-9228-8550784545d6` |
| 4126 | `recipe_shortswordbroad` | Sketch - Broad sword | 0.1 | 4300 | `2391e383-2138-42ec-a458-a11410878ad8` |
| 4127 | `recipe_shortswordceremony` | Sketch - Noble's sword | 0.1 | 5600 | `75356aa3-08ea-430a-8989-f8a2bb31746f` |
| 4128 | `recipe_shortswordcleaver` | Sketch - Homemade hunting sword | 0.1 | 700 | `ae0a6322-078b-46bf-b699-0ed4f3403094` |
| 4129 | `recipe_shortswordcommon` | Sketch - Military sword | 0.1 | 1500 | `cb206043-63a6-4418-9454-aab4bef9aa19` |
| 4130 | `recipe_shortswordheavy` | Sketch - Knight's sword | 0.1 | 6400 | `dda4c09e-c94f-402a-a660-e87b07f83b6b` |
| 4131 | `recipe_shortSwordStGeorge` | Sketch - St. George's sword | 0.1 | 5800 | `fa089f8f-7576-4043-91e6-6a4883f43915` |
| 4132 | `recipe_shotBall` | Recipe for Lead shot gunpowder | 0.1 | 1850 | `5e161a0d-ed7c-409a-aaa9-180c596ba03c` |
| 4133 | `recipe_shotScatter` | Recipe for Scattershot gunpowder | 0.1 | 1750 | `a5eedab1-4c1e-4704-a26e-393b9fcd123c` |
| 4134 | `recipe_sleepPotion` | Recipe for Lullaby potion | 0.1 | 1000 | `67b39af3-6074-4acc-8b28-f11ce62faeff` |
| 4135 | `recipe_sneakPotion` | Recipe for Quickfinger potion | 0.1 | 1300 | `e96ac6a4-f494-4b70-9270-7d2f967c59b6` |
| 4136 | `recipe_soap` | Recipe for Soap | 0.1 | 1150 | `aa1e5987-0b18-41a0-ad20-ec08d9e248c0` |
| 4137 | `recipe_staminaPotion` | Recipe for Buck's Blood | 0.1 | 1650 | `6039016f-464c-486e-8bb7-f4fe160dbe88` |
| 4138 | `recipe_vitalityPotion` | Aqua Vitalis recipe | 0.1 | 1850 | `5538d184-00b8-4604-a68d-9eabbef1f591` |
| 4139 | `recipesbook_alchemy` | A book by the Wysoka parish priest. | 1 | 42 | `d45d8a3f-1292-4310-9b39-8f811f0ea5f6` |
| 4140 | `reciple_antiInflammatoryPotion` | Recipe for Anti-inflammatory potion | 0.1 | 1900 | `fbb4fce3-0b4b-4d9e-bd28-e1283075802c` |
| 4169 | `rodinnaChlouba_noteOfHand` | Debt Note | 0.1 | 0 | `986352df-f20d-4308-a7cf-24a5ad628edf` |
| 4183 | `rozinaKniha_cleverParson` | Rosa's manuscript | 0 | 420 | `d18223bd-b69a-4aec-a6d3-28c2fc123c9e` |
| 4184 | `rozinaKniha_clumsySeamstress` | Rosa's manuscript | 0 | 420 | `fdf956c4-d349-471b-bdbc-9f3163ee2245` |
| 4185 | `rozinaKniha_eloquentDame` | Rosa's manuscript | 0 | 420 | `17574afd-5169-4f9a-9401-e1e50bc596c2` |
| 4186 | `rozinaKniha_girlWithGoldenHair` | Rosa's manuscript | 0 | 420 | `adaae999-4b93-490c-bac2-a8fd8c76b94b` |
| 4187 | `rozinaKniha_huntsmanAndBeauty` | Rosa's manuscript | 0 | 420 | `49b43a5c-3010-445b-bc93-412225a8911b` |
| 4188 | `rozinaKniha_miserlyTownsman` | Rosa's manuscript | 0 | 420 | `3dd388f6-6e77-433a-ab12-a4b2dd5d5df3` |
| 4189 | `rozinaKniha_miserWhoRoseFromTheDead` | Rosa's manuscript | 0 | 420 | `61290f6a-0630-4b68-8172-133c20dbb69c` |
| 4190 | `rozinaKniha_oneleggedHeron` | Rosa's manuscript | 0 | 420 | `7822a4bf-5937-4ea3-aafc-ddd6774711a2` |
| 4191 | `rozinaKniha_remarriedWidower` | Rosa's manuscript | 0 | 420 | `97cb515b-b6da-45a8-a650-463be38288ef` |
| 4230 | `sedmStatecnychDva_borutsMap` | Bohuta's map | 0.1 | 50 | `6f8f9e73-188e-4237-8d9b-10467f97b882` |
| 4700 | `skillbook_agility_I_kcd2` | Towards Flexibility of the Body I | 1 | 1500 | `b5e8c86f-a5a9-4e8d-a883-3efad5e492fa` |
| 4701 | `skillbook_agility_II_kcd2` | Towards Flexibility of the Body II | 1 | 2000 | `626184dc-8280-49b1-9721-791c3824f4ed` |
| 4702 | `skillbook_agility_III_kcd2` | Towards Flexibility of the Body III | 1 | 2500 | `db793b9a-37e8-44ca-b788-c9633f3286f2` |
| 4703 | `skillbook_agility_IV_kcd2` | Towards Flexibility of the Body IV | 1 | 3000 | `bbf1e179-d66e-4cdc-b899-54d98d1d991f` |
| 4704 | `skillbook_alchemy_I_kcd2` | On the Composition of Alchemy I | 1 | 1500 | `a6daa5f3-1731-4147-9e49-cafbe0595adc` |
| 4705 | `skillbook_alchemy_II_kcd2` | On the Composition of Alchemy II | 1 | 2000 | `fea86fd0-adeb-45e1-b21e-2948db98887f` |
| 4706 | `skillbook_alchemy_III_kcd2` | On the Composition of Alchemy III | 1 | 2500 | `fac619a6-889b-453e-a45a-938e5abcfe64` |
| 4707 | `skillbook_alchemy_IV_kcd2` | On the Composition of Alchemy IV | 1 | 3000 | `2442800d-0712-402d-a54e-37f817adda44` |
| 4708 | `skillbook_alchemy_IX` | Physica Hildegardis Bingensis IV | 1 | 4000 | `341a69f4-81b3-4bf5-ac5c-a47bfb7a3170` |
| 4709 | `skillbook_alchemy_VI` | Physica Hildegardis Bingensis I | 1 | 1500 | `bbe34e56-f90e-4b22-b175-53bf2c005d50` |
| 4710 | `skillbook_alchemy_VII` | Physica Hildegardis Bingensis II | 1 | 2000 | `420c2613-4aad-4b3c-9891-ee49bbe005d5` |
| 4711 | `skillbook_alchemy_VIII` | Physica Hildegardis Bingensis III | 1 | 3000 | `fa177499-f907-4686-8dca-34dce58251a7` |
| 4712 | `skillbook_craftsmanship_I_kcd2` | Products of Skilled Hands I | 1 | 1500 | `e27df340-ede4-48ea-811c-1915c0f60dd5` |
| 4713 | `skillbook_craftsmanship_II_kcd2` | Products of Skilled Hands II | 1 | 2000 | `d400e551-0b48-426d-9167-0415498b9a03` |
| 4714 | `skillbook_craftsmanship_III_kcd2` | Products of Skilled Hands III | 1 | 2500 | `7c1bdbe2-b586-400e-98dc-4b7f81c247cc` |
| 4715 | `skillbook_craftsmanship_IV_kcd2` | Products of Skilled Hands IV | 1 | 3000 | `09cecf64-9b80-4a09-98c1-6bc08553d46a` |
| 4716 | `skillbook_drinking_I_kcd2` | Life in the Tavern I | 1 | 1500 | `f1040787-dddd-4b68-b176-69f1205bd3c4` |
| 4717 | `skillbook_drinking_II_kcd2` | Life in the Tavern II | 1 | 2000 | `9e072e05-5b7e-4cba-a8b4-397a4d8227fc` |
| 4718 | `skillbook_drinking_III_kcd2` | Life in the Tavern III | 1 | 2500 | `8d867250-efd7-4191-a975-c4c427dd0bcd` |
| 4719 | `skillbook_drinking_IV_kcd2` | Life in the Tavern IV | 1 | 3000 | `d9cb14d8-724e-4810-b4dd-74f12550ef8e` |
| 4720 | `Skillbook_drinkingUnarmed_III` | On the Strength of the Drunkard | 1 | 3000 | `da8f846f-8d34-4d8b-ae3e-0b73781300cb` |
| 4721 | `skillbook_heavyWeapons_lvl1_kcd2` | Skull Crushers I | 1 | 1500 | `d25b7a03-f4ba-4f26-9eb9-1f882011146c` |
| 4722 | `skillbook_heavyWeapons_lvl2_kcd2` | Skull Crushers II | 1 | 2000 | `2cd10021-c12f-4856-85f5-2699d6d8ea99` |
| 4723 | `skillbook_heavyWeapons_lvl3_kcd2` | Skull Crushers III | 1 | 2500 | `311536e2-4455-4cf9-ac97-b0d92715c157` |
| 4724 | `skillbook_heavyWeapons_lvl4_kcd2` | Skull Crushers IV | 1 | 3000 | `5589a34c-a5db-49b7-aa3c-528941d61389` |
| 4725 | `skillbook_horseriding_I_kcd2` | Life in the Saddle I | 1 | 1500 | `b4b6b682-9daa-40ba-b18a-1a486e4b8c78` |
| 4726 | `skillbook_horseriding_II_kcd2` | Life in the Saddle II | 1 | 2000 | `43935b1e-f547-4a2d-b286-73e03b462809` |
| 4727 | `skillbook_horseriding_III_kcd2` | Life in the Saddle III | 1 | 2500 | `5929a2dd-aa17-4e7a-a198-d1fa3ecc0b52` |
| 4728 | `skillbook_horseriding_IV_kcd2` | Life in the Saddle IV | 1 | 3000 | `1d3b4af6-a261-438d-a95f-b1617dc62015` |
| 4729 | `skillbook_horseriding_V` | Master Theodor’s Horse | 1 | 4000 | `0d66c41d-fa4e-420a-a174-7a4c259601b6` |
| 4730 | `skillbook_houndmaster_lvl1_kcd2` | Most Faithful Friend I | 1 | 1500 | `d462bff3-16ca-4ecb-8277-ecee08b6abe5` |
| 4731 | `skillbook_houndmaster_lvl2_kcd2` | Most Faithful Friend II | 1 | 2000 | `b66c8bf6-1ee5-463a-8a04-05402c78e1d6` |
| 4732 | `skillbook_houndmaster_lvl3_kcd2` | Most Faithful Friend III | 1 | 2500 | `e3ccd536-6566-4474-824b-6a87a7ac1c89` |
| 4733 | `skillbook_houndmaster_lvl4_kcd2` | Most Faithful Friend IV | 1 | 3000 | `aaeb7d08-bc5e-4cc5-8a6f-70ccff2640d4` |
| 4734 | `skillbook_houndmaster_V` | On the Obedience of Dogs and Monks | 1 | 4000 | `bdefb36a-fa30-49bf-8626-2da33d88854e` |
| 4735 | `skillbook_marksmanship_lvl1_kcd2` | Aim and Fire! I | 1 | 1500 | `c821bacc-7381-48bc-b496-2aaf89dd294d` |
| 4736 | `skillbook_marksmanship_lvl2_kcd2` | Aim and Fire! II | 1 | 2000 | `942286d1-bffb-4ce6-8988-c02f4e500dd7` |
| 4737 | `skillbook_marksmanship_lvl3_kcd2` | Aim and Fire! III | 1 | 2500 | `aa2446a0-dee9-4542-a677-16892ddf4657` |
| 4738 | `skillbook_marksmanship_lvl4_kcd2` | Aim and Fire! IV | 1 | 3000 | `52706f30-e046-4459-b822-e825cbc1d575` |
| 4739 | `skillbook_marksmanship_V` | The Legend of Ambrose the Archer | 1 | 4000 | `bedf3720-3e47-4027-a0f5-dd32463f39bd` |
| 4740 | `skillbook_scholarship_I_KCD2` | Master's Studies I | 1 | 1500 | `70282815-415c-4003-a752-8d9f8e3ab9c1` |
| 4741 | `skillbook_scholarship_II_KCD2` | Master's Studies II | 1 | 2000 | `34f0a15c-b01c-4297-bddb-1ed7576ab3d3` |
| 4742 | `skillbook_scholarship_III_KCD2` | Master's Studies III | 1 | 2500 | `6c2840dd-3251-4768-b86b-2802671dc728` |
| 4743 | `skillbook_scholarship_IV_KCD2` | Master's Studies IV | 1 | 3000 | `75864a5a-541a-4b68-8465-793f9082127a` |
| 4744 | `skillbook_scholarship_poi` | Fragments from the Bible | 1 | 1000 | `c04cae7d-8f60-497a-a6fd-266a2611bedd` |
| 4745 | `Skillbook_scholarship_V_kcd2` | On heraldry | 1 | 3000 | `5d166d53-1ff7-46bb-be1f-59d9ab3b6f35` |
| 4746 | `skillbook_scholarship_valdensky` | Teachings of Peter Waldo | 1 | 1500 | `0928e5d1-88ed-4adf-bf57-bc47a7ea5fd9` |
| 4747 | `skillbook_spear_I_kcd2` | Spearman Training I | 1 | 1500 | `44a1956d-a928-48f5-a8ce-0aa2fc15fcdf` |
| 4748 | `skillbook_spear_II_kcd2` | Spearman Training II | 1 | 2000 | `c1b3b436-d666-4ba6-be2c-358692e28fcb` |
| 4749 | `skillbook_spear_III_kcd2` | Spearman Training III | 1 | 2500 | `8f382638-29f3-458d-bc5c-265901364f97` |
| 4750 | `skillbook_spear_IV_kcd2` | Spearman Training IV | 1 | 3000 | `1e2a3a55-b1b8-43c6-9ad2-886da2808afa` |
| 4751 | `skillbook_spear_V` | The Spear of Longinus | 1 | 8000 | `67aa1f93-2935-4219-b094-d13e8ba7defe` |
| 4752 | `skillbook_speech_I_kcd2` | The Art of Demosthenes I | 1 | 1500 | `a7fbfc99-4c3a-43cc-b10d-af98dfb61ec5` |
| 4753 | `skillbook_speech_II_kcd2` | The Art of Demosthenes II | 1 | 2000 | `94086ac7-8252-4530-9e2b-b04119335be5` |
| 4754 | `skillbook_speech_III_kcd2` | The Art of Demosthenes III | 1 | 2500 | `164d4041-47b5-4e2b-bc7d-e5bacbc1bba6` |
| 4755 | `skillbook_speech_IV_kcd2` | The Art of Demosthenes IV | 1 | 3000 | `8af14bc9-54d2-4442-a3d9-6f8b688c2973` |
| 4756 | `skillbook_strength_I_kcd2` | The Strength of the Knight I | 1 | 1500 | `b034783f-9aac-4eeb-83dd-ac141eaf2a94` |
| 4757 | `skillbook_strength_II_kcd2` | The Strength of the Knight II | 1 | 2000 | `d5f84a58-3f43-4ec4-8b29-5407665c89be` |
| 4758 | `skillbook_strength_III_kcd2` | The Strength of the Knight III | 1 | 2500 | `54e55d9e-6841-4298-98de-efbb9b638eae` |
| 4759 | `skillbook_strength_IV_kcd2` | The Strength of the Knight IV | 1 | 3000 | `fa13dc4a-09d1-48ff-b48b-9d1dd2aac13a` |
| 4760 | `skillbook_survival_I_kcd2` | Woodsman's Journal I | 1 | 1500 | `7fb874dc-eb91-4d29-896d-b4acbf40bf53` |
| 4761 | `skillbook_survival_II_kcd2` | Woodsman's Journal II | 1 | 2000 | `8efaed15-badb-4979-a608-e4157a19a2e8` |
| 4762 | `skillbook_survival_III_kcd2` | Woodsman's Journal III | 1 | 2500 | `7768d70a-6a1c-41c8-a193-d0a9e463b6ad` |
| 4763 | `skillbook_survival_IV_kcd2` | Woodsman's Journal IV | 1 | 3000 | `e8495443-2de9-4f07-8501-eb8878bf167d` |
| 4764 | `skillbook_swords_lvl1_kcd2` | The Art of the Sword I | 1 | 1500 | `00cbcdca-e6ee-4fe6-bf87-2acd9f2b21aa` |
| 4765 | `skillbook_swords_lvl2_kcd2` | The Art of the Sword II | 1 | 2000 | `40d7047d-65c6-4e34-8ba0-ff8ca75d7f48` |
| 4766 | `skillbook_swords_lvl3_kcd2` | The Art of the Sword III | 1 | 2500 | `c3075901-96a6-4024-ae02-c33d2a7dd83d` |
| 4767 | `skillbook_swords_lvl4_kcd2` | The Art of the Sword IV | 1 | 3000 | `3d0538f2-85bd-4957-90e3-ebda66fbe67d` |
| 4768 | `skillbook_thievery_I_kcd2` | The Rule of St. Dismas I | 1 | 1500 | `33cc23d2-2f9d-4da8-a6c0-db130bbfe616` |
| 4769 | `skillbook_thievery_II_kcd2` | The Rule of St. Dismas II | 1 | 2000 | `286206e6-8565-4995-a72f-6006d364c430` |
| 4770 | `skillbook_thievery_III_kcd2` | The Rule of St. Dismas III | 1 | 2500 | `c48895d1-61bc-4ecb-9dd8-56afb87aab0c` |
| 4771 | `skillbook_thievery_IV_kcd2` | The Rule of St. Dismas IV | 1 | 3000 | `13fa1420-cf40-4909-b8fe-83c286d428b2` |
| 4772 | `skillbook_thievery_V` | Saint Sudivoy and the Miracle of the Purse | 1 | 4000 | `129abc88-3d46-418f-a60f-9f697b130928` |
| 4773 | `skillbook_unarmed_lvl1_kcd2` | Punches, Kicks and a Few Slaps I | 1 | 1500 | `913dd9b5-1596-413e-a1c6-0021929e16d0` |
| 4774 | `skillbook_unarmed_lvl2_kcd2` | Punches, Kicks and a Few Slaps II | 1 | 2000 | `8466a2fa-e47e-412a-b866-bb1478190da3` |
| 4775 | `skillbook_unarmed_lvl3_kcd2` | Punches, Kicks and a Few Slaps III | 1 | 2500 | `dc75a0a6-a464-4482-b6da-339210c0a32b` |
| 4776 | `skillbook_unarmed_lvl4_kcd2` | Punches, Kicks and a Few Slaps IV | 1 | 3000 | `34e26bcc-e179-4e10-8b7c-6b70dfbdb43f` |
| 4777 | `skillbook_unarmed_V` | Teachings of Brother Francis | 1 | 4000 | `cede7cd5-8950-475d-8b2f-8259869eb222` |
| 4778 | `skillbook_vitality_I_kcd2` | Marathon I | 1 | 1500 | `ae9a38a1-0f69-4b4d-8bda-7bc047055ebb` |
| 4779 | `skillbook_vitality_II_kcd2` | Marathon II | 1 | 2000 | `648c4232-67d9-4c18-81e2-f38084e864d9` |
| 4780 | `skillbook_vitality_III_kcd2` | Marathon III | 1 | 2500 | `545d28cf-e1a5-4f3e-9509-32eacc8fb0a0` |
| 4781 | `skillbook_vitality_IV_kcd2` | Marathon IV | 1 | 3000 | `10a66bf0-280e-4ca8-9ca5-f3316be0e2cc` |
| 4854 | `spravedlnost_book` | Wysoka priest's alchemy book | 0 | 2000 | `6ea234fe-a242-4f2c-bf17-fe9e07efcde7` |
| 4867 | `stareKosti_HostinaUmrlcu` | Feast of the Dead | 1 | 750 | `ac10b82d-d8f9-48c9-b5ec-7e00da593aff` |
| 4869 | `stareKosti_song_1` | Popular Flute Song | 0.1 | 100 | `da22991e-0280-4944-8ca2-76d83574f15b` |
| 4870 | `stareKosti_song_2` | Tragic Flute Song | 0.1 | 100 | `f4bd63b4-b0e1-4891-9d74-e8e81d604c7b` |
| 4871 | `stareKosti_song_3` | Bawdy Whistle Tune | 0.1 | 100 | `9fe8ee63-f75f-4362-a90d-3f1baa42b568` |
| 4872 | `staryMistr_hadanka` | Hynek's letter | 0 | 50 | `735b8e98-48df-44d7-ab02-05ccef87f35e` |
| 4874 | `staryMistr_symbols` | Thieves' notes | 0 | 100 | `078561a0-be69-4f3d-b616-fa68cac0937e` |
| 4875 | `staryMistr_symbols_unread` | Parchment with drawings | 0 | 100 | `1e36c17d-5e2b-4ed1-aa76-0817a4ae192c` |
| 4876 | `stealth_skillbook_lvl1_kcd2` | As Quiet as a Cat I | 1 | 1500 | `a1ce916e-52da-4b7e-89ce-1082f239ae2c` |
| 4877 | `stealth_skillbook_lvl2_kcd2` | As Quiet as a Cat II | 1 | 2000 | `b9e65ff9-eeeb-4d0e-8c6d-1df9809b21e7` |
| 4878 | `stealth_skillbook_lvl3_kcd2` | As Quiet as a Cat III | 1 | 2500 | `aa414af7-21c8-41eb-9aa4-ab2384831c76` |
| 4879 | `stealth_skillbook_lvl4_kcd2` | As Quiet as a Cat IV | 1 | 3000 | `937c40aa-a575-47b5-a9d2-69fcaa22d944` |
| 4893 | `strasidlo_seznamHrichu` | List of Bellissimo's sins | 0.1 | 10 | `eed24de5-7994-488a-9f96-e98aa5a59888` |
| 4894 | `strasidlo_smlouvaODilo` | Bellissimo's contract | 0.1 | 10 | `acbc8e3d-e32d-4a0a-ab2c-85032552f58f` |
| 4926 | `taboryUCesty_darkosTreasureMap` | Darko's map | 0.1 | 100 | `bafd2e04-be8e-4c44-96bc-6294dd42fcc5` |
| 4934 | `tarasMura_contract` | Knight's contract | 0 | 50 | `196aecc2-6598-4acc-ad28-09094c727dfc` |
| 4935 | `tarasMura_diary1` | Knight's notes I | 0.1 | 50 | `63416af1-a0aa-4d1d-943a-54633c8c96ad` |
| 4936 | `tarasMura_diary2` | Knight's notes II | 0.1 | 50 | `c80d3aaa-75fe-4d29-afd8-8e8106b38f4a` |
| 4937 | `tarasMura_diary3` | Knight's notes III | 0.1 | 50 | `2e9aa99c-f9f0-4128-8d8e-c82c4fd8c112` |
| 4938 | `tarasMura_diary4` | Knight's notes IV | 0.1 | 50 | `c46b3645-506d-431b-95a7-e5dc6a91f2a3` |
| 5078 | `traskavePoselstvi_gunpowderRecords` | Eldris's notes on gunpowder | 0 | 100 | `6554936b-c550-4ee6-9b8f-ca61872fe7da` |
| 5079 | `treasureHunter_map1` | Treasure map - First | 0.1 | 50 | `a8fe8e05-2024-44a3-8161-4b5fe3929ed9` |
| 5081 | `treasureHunter_map2` | Treasure map - Second | 0.1 | 50 | `a98fb543-fa1d-4baa-9018-e758bab89958` |
| 5083 | `treasureHunter_map3` | Treasure Map - Third | 0.1 | 100 | `166273f0-9301-4a5c-9708-f4f93959a747` |
| 5085 | `treasureHunter_map4` | Treasure Map - Fourth | 0.1 | 50 | `8991005c-98ac-4847-8e7e-9548a8c16e0b` |
| 5087 | `troskovice_chronicle` | Troskowitz Chronicle | 1 | 100 | `9b3cb525-6d94-4f44-9c74-bb1aff104212` |
| 5260 | `uchazec_oRemesleKovarskem` | On the blacksmith's craft | 0 | 120 | `81245a76-652f-4ac3-9759-3700bc5d59a5` |
| 5261 | `uchazec_planOrloje` | Old Machine Sketch | 0.1 | 10 | `a200498e-23e6-4bf1-9168-b37832880d6f` |
| 5267 | `utokNebakov_admirerLetterFlorian` | Florian's letter from an admirer | 0.1 | 100 | `ec764072-0d2a-4869-bd27-a3ebc209b5c7` |
| 5269 | `utokNebakov_letterBusekDub` | Nobleman's letter of the Captain Dub | 0.1 | 100 | `d48cc054-7138-484e-bb0f-3caa1cc24e44` |
| 5270 | `utokNebakov_letterHankoTurnov` | Vassal letter of the Turnau bailiff | 0.1 | 100 | `d6d968e7-cbbb-44c5-a267-e0a910569d0e` |
| 5271 | `utokNebakov_letterOtteKoch` | Vassal charter with von Bergow's seal | 0.1 | 100 | `cc5ac0b1-b171-4dda-9df3-a8c9ec686790` |
| 5272 | `utokNebakov_poetryProkopFlorian` | Copies of the poems of Margrave Prokop | 1 | 250 | `3eeff16e-c667-414e-a6a6-9c015cf4e44f` |
| 5273 | `utokNebakov_poetryVagabond_1` | Songs of the scoundrel's pupils | 1 | 1000 | `6db862f3-c954-4a98-88df-8d00c92227fd` |
| 5274 | `utokNebakov_undoneLetterFlorian` | Florian's unfinished letter | 0.1 | 50 | `1a276bac-af16-4349-87c3-edbb06b9779d` |
| 5275 | `vezniNaTroskach_bergovBook1` | My dream diary | 1 | 100 | `410eca70-a174-404b-8ed6-edcc2137206b` |
| 5279 | `vezniNaTroskach_scribeBook1` | A collection of somewhat bawdy poems | 1 | 50 | `466c01ab-e0e7-49b4-b27b-74111231fc74` |
| 5280 | `vezniNaTroskach_scribeBook2` | Effects of Grasses and Herbs | 1 | 100 | `2032aa14-9c43-4925-9f70-64a767da0104` |
| 5285 | `vlasskaTransmise_hollanderDiary` | Guildmaster Hollander’s Diary | 1 | 10 | `d386b60d-bd85-4b7b-93c4-e30aac2f8211` |
| 5502 | `wedding_contract_2` | Excerpt from wedding contract | 0.1 | 100 | `2921eada-ef5d-40b6-b3fa-ccae55933b30` |
| 5503 | `weddingBanquetList` | List for the feast | 0.1 | 50 | `84bd1572-adb9-493f-a4e1-998e93f35c24` |
| 5504 | `weddingContract` | Wedding contract | 0.1 | 100 | `d4a9d4e3-4b0b-48e4-afc4-5ed605ea1440` |
| 5553 | `zachranaPtacka_malesovExterior` | Maleshov fort map | 0.1 | 50 | `698912fd-ca7c-413d-8775-35c6700ee587` |
| 5554 | `zachranaPtacka_malesovInterior` | Map of Maleshov tower | 0.1 | 100 | `bd5a9f14-f64b-45b5-865e-35fe5106ae30` |
| 5555 | `zachranaPtacka_rozasBook` | Book of Anecdotes | 0 | 100 | `26e1eb20-cc30-4c79-9f7a-2759b328c42d` |
| 5557 | `zakopanyZitrek_mysteriousMap` | Mysterious map | 0 | 50 | `a8b789d7-558a-40d6-8ea2-a1304e880dac` |
| 5565 | `zbranePanaSemina_vasekMap` | Hired hand Ventza's map | 0.1 | 100 | `b9317950-5255-4129-ab66-a231108f1293` |
| 5566 | `zikmunduv_dopis` | Letter from Sigismund | 0.1 | 50 | `08bf183d-9090-4b59-bd37-65ccd23e9485` |
| 5567 | `zikmunduvTabor_albikPoisonBook` | The Book of Poison | 0 | 1500 | `fbc9c104-e20f-4372-b7aa-2d488c8ccee1` |
| 5570 | `zikmunduvTabor_cherthanIOU` | Lord Borumlaca's bond | 0 | 50 | `59700da5-0293-4239-a17b-48ca88a5c65e` |
| 5577 | `zizkaLetter_fromSokolNebakov_1` | Letter from an unknown noble | 0.1 | 50 | `44c97615-ab07-4c13-9545-78da299ebab0` |
| 5578 | `zizkaLetter_fromSokolNebakov_2` | Letter from Sokol of Lamberg | 0.1 | 50 | `838f1bb8-0f54-4f99-a460-2c0daf464a9e` |
| 5595 | `ztracenyTovarys_weightCalculation` | Weight schematics | 0.1 | 10 | `06b14f0e-72fc-4e2e-9b9c-408efb04b82a` |
# Items: Food and drink
> The 328 item classes of the game's Food table: id, name, English name, weight, price and class GUID.
The game's **`Food`** rows - 328 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 11 | `Alcohol1` | Mead | 1 | 80 | `856c0dc8-23fd-85a0-91f2-a4d42f96a946` |
| 12 | `Alcohol2` | Mead | 1 | 80 | `856c0dc8-23fd-85a0-91f2-a4d42f96a841` |
| 13 | `Alcohol5` | Mead | 1 | 80 | `856c0dc8-23fd-43a0-91f2-a4d42f96a946` |
| 14 | `Alcohol6` | Mead | 1 | 80 | `856c0dc8-23fd-95a0-91f2-a4d42f96a946` |
| 15 | `Alcohol7` | Mead | 1 | 80 | `856c0dc8-23fd-57a0-91f2-a4d42f96a946` |
| 16 | `Alcohol8` | Mead | 1 | 80 | `856c0dc8-23fd-23a0-91f2-a4d42f96a946` |
| 81 | `apple` | Apple | 0.3 | 8 | `2264f217-590e-4c0f-a4c6-f50c6532b9f6` |
| 82 | `apple_half_eaten` | Apple | 0.3 | 10 | `06787e37-2822-4180-9dda-6aa1a2d15707` |
| 83 | `apple_sedmTrpasliku` | Bitten apple | 0.3 | 4 | `d2ffc509-509f-4db0-81b6-ad5311231e10` |
| 84 | `apple_test` | A suspicious bag | 0.3 | 4 | `2264f217-590e-4c0f-a4c6-f50c6532b9ff` |
| 85 | `appleCooked` | Cooked apple | 0.3 | 24 | `295c54f8-76a3-42fa-8fe1-8f1ecb63576b` |
| 86 | `appleDried` | Dried apple | 0.1 | 10 | `02d9c556-6c40-4e5e-abab-48b2acc7287a` |
| 187 | `bacon` | Bacon | 0.4 | 58 | `154a8471-b753-4f84-ac5f-d989c8532d02` |
| 189 | `bacon_vlasak` | Bacon | 0.4 | 25 | `a30e5fae-634b-4a97-8a16-f06ad72a0b7f` |
| 190 | `bagel` | Bagel | 0.2 | 18 | `8dd487d6-de84-450e-9179-d68019395734` |
| 437 | `beef` | Beef | 0.6 | 54 | `81c21fdc-3d62-4d1f-854f-eb364db1bcff` |
| 438 | `beefCooked` | Cooked beef | 0.5 | 162 | `44593169-7482-4293-80bc-01c3144e4fa2` |
| 439 | `beefDried` | Dried beef | 0.4 | 90 | `b1de7a91-1644-4ad6-b186-a5b40764be7f` |
| 440 | `beefSmoked` | Smoked beef | 0.4 | 104 | `208362ca-1006-4821-8118-227e64143a3e` |
| 441 | `beefTenderloin` | Beef tenderloin | 0.6 | 117 | `661cee65-b667-46d4-9cf8-8bd3dafe5fdd` |
| 442 | `beefTenderloinCooked` | Cooked beef tenderloin | 0.5 | 350 | `363b64a7-9005-45f2-9bea-4b5330159fe5` |
| 443 | `beefTenderloinDried` | Dried beef tenderloin | 0.4 | 194 | `d69c08d2-3631-4301-9107-018696c775a5` |
| 444 | `beefTenderloinSmoked` | Smoked beef tenderloin | 0.4 | 268 | `1472bcff-e6c8-41f2-8fa4-658410464238` |
| 445 | `beer` | Beer | 1 | 14 | `52afd6fa-9377-457c-83a2-b5b39321a4dc` |
| 446 | `beerTroskovice` | Troskowitz beer | 1 | 18 | `5afcf991-f1ce-48f6-8188-71710835e538` |
| 447 | `beet` | Beet | 0.3 | 5 | `7899825d-ed6f-4f00-b698-649ba652cf6d` |
| 448 | `beetCooked` | Cooked beet | 0.3 | 16 | `55537a99-41ba-4497-925c-a543ced248e3` |
| 460 | `boarKidney` | Boar kidneys | 0.4 | 225 | `84fb8a3d-fa6d-4b01-a354-f0ac110a3536` |
| 461 | `boarKidneyCooked` | Cooked boar kidneys | 0.3 | 262 | `5f9951e9-2b3d-4bfb-aaa7-0b5cada6d116` |
| 462 | `boarMeat` | Boar meat | 0.8 | 70 | `ba4b74ad-f8f1-427e-905b-1bc8c27163e7` |
| 463 | `boarMeatCooked` | Cooked boar meat | 0.7 | 212 | `db357169-2012-4c12-b82b-d021cd4c8d9f` |
| 464 | `boarMeatDried` | Dried boar meat | 0.5 | 162 | `ff44440b-aeeb-409a-9830-4f29d7feabbf` |
| 465 | `boarMeatSmoked` | Smoked boar meat | 0.5 | 132 | `470cfa96-9bf4-41ee-9c74-cf2a1176ce45` |
| 466 | `boarRump` | Boar rump | 0.8 | 177 | `490b5820-b717-4750-bca4-ae5e26eb7368` |
| 467 | `boarRumpCooked` | Cooked boar rump | 0.7 | 380 | `20d7df96-9d99-4260-bb73-c5443aba5e63` |
| 468 | `boarRumpDried` | Dried boar rump | 0.5 | 218 | `a574386e-ea5d-4b94-a655-663b2381eded` |
| 469 | `boarRumpSmoked` | Smoked boar rump | 0.5 | 291 | `a8a2dd92-f182-4311-a9ee-a8a667c335c1` |
| 470 | `boarTenderloin` | Boar tenderloin | 0.8 | 138 | `78dca400-f504-42ff-a02b-700018f39993` |
| 471 | `boarTenderloinCooked` | Cooked boar tenderloin | 0.7 | 415 | `dede8ec9-3f0e-4c07-975f-320a7cc72452` |
| 472 | `boarTenderloinDried` | Dried boar tenderloin | 0.5 | 216 | `fc1ce409-2815-4b44-be8d-01097702ae0f` |
| 473 | `boarTenderloinSmoked` | Smoked boar tenderloin | 0.5 | 318 | `2c78ec3d-c7ea-4326-9f9c-5536ea67a626` |
| 475 | `boletus` | Boletus edulis | 0.2 | 4 | `4dab452b-7f35-4cd9-942f-f59fd14c83fe` |
| 476 | `boletusCooked` | Cooked boletus | 0.2 | 22 | `81358847-cc24-4036-aa0f-99f180cd4ecc` |
| 477 | `boletusDried` | Dried boletus | 0.1 | 14 | `ef881d5c-0490-402c-b39f-79daa80c0471` |
| 625 | `bread` | Bread | 0.6 | 54 | `86e4ff24-88db-4024-abe6-46545fa0fbd1` |
| 626 | `breadroll` | Bread roll | 0.2 | 19 | `ca873759-2d0d-4f2f-ba05-49b6c1872a9e` |
| 773 | `cabbage` | Cabbage | 1.4 | 16 | `8d6964b1-b645-4aa1-adcc-db22646f3722` |
| 774 | `cabbageCooked` | Cooked cabbage | 1.8 | 43 | `5585da96-12c9-478d-a1a2-d5f206d9fe72` |
| 1216 | `carrot` | Carrot | 0.3 | 6 | `b7ee311c-736b-4f7c-987b-8431ce3b5600` |
| 1217 | `carrotCooked` | Cooked carrot | 0.3 | 16 | `bc26419a-f9d5-40bb-98f0-05b6c527e85a` |
| 1228 | `cheeseCake` | Quark kolach | 0.2 | 22 | `2a2ac072-a7eb-42f5-8757-776c02647559` |
| 1229 | `cheeseQuarter` | Cheese | 0.6 | 73 | `b2f8f5e3-8e5e-4600-a4bb-be17e2d4a058` |
| 1230 | `cheeseQuarterDried` | Dried cheese | 0.4 | 108 | `9e06cfd7-6412-446c-99dc-e27c6bcef003` |
| 1231 | `cheeseQuarterSmoked` | Smoked cheese | 0.6 | 169 | `0712d873-29bd-4fdd-8966-79aefb82c829` |
| 1232 | `chicken` | Chicken | 0.6 | 29 | `18ff9093-2cc4-4ab3-9f34-7cb0dd7cd30a` |
| 1236 | `chickenCooked` | Cooked chicken | 0.6 | 89 | `4eed0a2b-1233-40b4-88f5-7f67de916b58` |
| 1237 | `chickenDried` | Dried chicken | 0.5 | 47 | `1d8ffd19-af12-4bd7-8afd-43b9b0348ade` |
| 1238 | `chickenSmoked` | Smoked chicken | 0.6 | 69 | `e1cc4970-df00-4fec-b831-976b753fd73f` |
| 1239 | `chickenThigh` | Roasted chicken leg | 0.6 | 41 | `76fd4ad3-84e2-444c-9822-b67c4adbc349` |
| 1544 | `cowKidney` | Beef kidneys | 0.4 | 177 | `3590f22a-3fcf-441a-9774-6c3f87f6d190` |
| 1545 | `cowKidneyCooked` | Cooked beef kidneys | 0.3 | 202 | `71940f4a-de33-4473-9006-c371f1a62ad5` |
| 1547 | `cowTongue` | Beef tongue | 1 | 233 | `5ff91d0f-e525-4b37-9256-d8fea8be1c8d` |
| 1548 | `cowTongueCooked` | Cooked beef tongue | 0.9 | 272 | `5c0981cd-1c99-4690-8e54-29dbfc315c1d` |
| 1549 | `cracklings` | Cracklings | 0.2 | 32 | `265f4d46-a993-464f-8f84-919569aa6818` |
| 1551 | `crayfish` | Crayfish | 0.7 | 97 | `2491e052-9676-4e69-a66c-123bc1006193` |
| 1552 | `crayfishBlue` | Blue crayfish | 0.8 | 100 | `8f882709-5192-4c95-bf1f-d44fb8ffd214` |
| 1553 | `crayfishBlueCooked` | Cooked blue crayfish | 0.8 | 326 | `26b67cb9-c283-49c3-ac2a-87a3ce38eb1f` |
| 1554 | `crayfishCooked` | Cooked crayfish | 0.7 | 198 | `72fc5bfd-fade-43f1-8edc-dd3880de59d8` |
| 1555 | `cream` | Cream | 0.8 | 84 | `0b4e244a-e3de-4502-afd0-fb7fe309629a` |
| 1644 | `curdCheese` | Curd cheese | 1 | 36 | `61cc4ee1-3066-4203-b331-0268c77ebb82` |
| 1650 | `deerFlank` | Deer ribs | 0.6 | 48 | `95328452-30e4-46b9-a90b-195c67708e52` |
| 1651 | `deerFlankCooked` | Cooked deer ribs | 0.5 | 143 | `2ffa5ff9-d5ed-44cb-b789-b62098383efd` |
| 1652 | `deerFlankDried` | Dried deer ribs | 0.3 | 59 | `1ad779b6-1156-48c5-b5ea-b377cbcbd5ad` |
| 1653 | `deerFlankSmoked` | Smoked deer ribs | 0.4 | 109 | `9cd4c555-9e0c-468e-8829-a62a93dda80c` |
| 1654 | `deerHeart` | Deer heart | 0.4 | 181 | `537ef442-be44-4e97-85a4-cc02344d8a5e` |
| 1655 | `deerHeartCooked` | Cooked deer heart | 0.3 | 262 | `5a3e8ba3-e413-4167-b5de-16471793f4ab` |
| 1656 | `deerMeat` | Deer meat | 0.6 | 78 | `a0a6a756-e204-4943-b215-543471b5cc39` |
| 1657 | `deerMeatCooked` | Cooked venison | 0.5 | 205 | `43e66d17-75e5-4832-a511-48c77b8d4cb3` |
| 1658 | `deerMeatDried` | Dried venison | 0.3 | 85 | `2a10687c-b9ed-430c-bf7d-644ece4fc1e5` |
| 1659 | `deerMeatDried_test` | A suspicious bag | 0.3 | 150 | `2a10687c-b9ed-430c-bf7d-644ece4fc1ef` |
| 1660 | `deerMeatSmoked` | Smoked venison | 0.4 | 157 | `4c5a74d8-92b1-4c78-bdef-6c19a762e062` |
| 1661 | `deerRump` | Deer rump | 0.6 | 98 | `14503d71-7b97-42a2-af4e-90dbc62b5fe7` |
| 1662 | `deerRumpCooked` | Cooked deer rump | 0.5 | 253 | `fbb641e5-a1a0-43ba-bfa8-c411bfa79f46` |
| 1663 | `deerRumpDried` | Dried deer rump | 0.3 | 116 | `991b9519-d017-42aa-96ab-8b7c9b805e10` |
| 1664 | `deerRumpSmoked` | Smoked deer rump | 0.4 | 194 | `667f27c6-9994-4517-b839-9c53a932c526` |
| 1767 | `dlc3_beer` | Monastery beer | 1 | 30 | `18920886-b5cf-45a6-86f9-eb92268f48bc` |
| 1769 | `dlc3_wineMonastic` | Sedletz monastery wine | 1 | 130 | `8f9a404d-3c13-4abb-91f7-7d111fe93782` |
| 1770 | `dlc3_wineSecret` | The Monastery Secret | 1 | 115 | `f6713b92-f35e-4b86-bd7a-02eeac968295` |
| 1771 | `dlc3_wineZdik` | Cellar wine | 1 | 27 | `f831eca7-ee22-4d69-b08e-ce701e09eb9e` |
| 1774 | `dogMeat` | Dog meat | 0.2 | 19 | `ff25cae9-7182-4d55-bbb0-0706404e5b69` |
| 1775 | `dogMeatCooked` | Cooked dog meat | 0.2 | 57 | `d7248e1e-64dd-4d38-8049-826eb2fb39d0` |
| 1776 | `dogMeatDried` | Dried dog meat | 0.1 | 27 | `07029524-8385-4926-8fee-035db316d770` |
| 1777 | `dogMeatSmoked` | Smoked dog meat | 0.1 | 43 | `a3483b1b-bef2-402e-906f-0c2fd4917f49` |
| 1787 | `driedCinnamonSpice` | Cinnamon | 0.1 | 510 | `b2840078-612e-49de-b236-6de80a380d70` |
| 1788 | `driedClovesSpice` | Clove | 0.1 | 460 | `46a665ee-279e-4cbe-90f0-cec851d86543` |
| 1789 | `driedNutmegSpice` | Nutmeg | 0.1 | 430 | `74a5b8e2-4cdf-4609-9460-105da3e98284` |
| 1790 | `driedPepperSpice` | Pepper | 0.1 | 480 | `49deb245-d231-4869-ae1e-6700b845426b` |
| 1791 | `driedSaffronSpice` | Saffron | 0.1 | 450 | `6adcc5b3-a614-464a-a828-d84c901aa0fe` |
| 1792 | `duck` | Roast duck | 1 | 121 | `c888acac-26ef-4f4a-be33-0b8bd82e7500` |
| 1836 | `egg` | Egg | 0.1 | 8 | `7ae2e77b-bdae-46cb-b6ac-f532cf225748` |
| 1838 | `eggHardboiled` | Hard boiled egg | 0.1 | 22 | `63d98446-f3c8-4407-8949-c246295b1496` |
| 1842 | `estragonSpice` | Mustard | 0.1 | 240 | `40a13121-6fb3-40f4-91f4-a275a3a2c67b` |
| 2307 | `garlic` | Garlic | 0 | 12 | `5dceabb5-aef0-4bf5-b401-acbc30a44e21` |
| 2308 | `garlicCooked` | Cooked garlic | 0.1 | 20 | `5f02ef0d-0551-44b1-902c-c96a8650d01d` |
| 2393 | `griddlecake` | Sweet pancake | 0.2 | 18 | `b3e363cf-8dde-4733-89a9-c468d5580d2e` |
| 2394 | `griddlecakeRomani` | MarikÄľa | 0.2 | 18 | `ab3fcd8d-874a-4710-b6ce-7f249b706fb6` |
| 2432 | `hadkaKonaru_kumis` | Kumis | 1 | 50 | `cd36244d-4785-4353-ab84-9ea4aea50b61` |
| 2458 | `henrysBitter` | Smith’s Red | 1 | 14 | `856c0dc8-23fd-85a0-91f2-a4d42f96a458` |
| 2459 | `henrysDark` | Black anvil | 1 | 14 | `856c0dc8-23fd-82a0-91f2-a4d42f96a946` |
| 2460 | `henrysLarger` | Henry's bread | 1 | 14 | `856c0dc8-23fd-85a0-91f2-a4d42f96a547` |
| 2502 | `herring` | Herring | 0.5 | 18 | `06be2a3d-4e05-4a78-85cd-33879cd669c9` |
| 2505 | `hladAZmar_loyalFriendSoup` | Man's best soup | 0.5 | 150 | `ed346ec4-7db7-4fdc-9cf5-c2a90f6afa3a` |
| 2506 | `hladAZmar_shoeSoup` | Shoe soup | 0.5 | 150 | `4240311f-d0ba-4d01-be4e-685cc75d1d4f` |
| 2507 | `hladAZmar_strayDogSoup` | Stray dog soup | 0.5 | 150 | `5c974431-58ce-4717-bd13-e457a83e8383` |
| 2508 | `hledaniLichtenstejna_marisCocktail` | Lousy Mary's concoction | 1 | 200 | `99f1aec0-1f14-4006-ac1d-5614b28c5ba4` |
| 2509 | `honey` | Honey | 0.8 | 87 | `7beb4bdc-6478-455c-8746-afb92c604be8` |
| 2510 | `hooch` | Moonshine | 1 | 37 | `2529e246-6f1b-4529-8d6b-64245207bae8` |
| 2664 | `horseMeat` | Horse meat | 0.8 | 37 | `3c78b620-ca94-11e1-9b23-0800200c9a66` |
| 2665 | `horseMeatCooked` | Boiled horse meat | 0.7 | 112 | `5459ce70-3c48-402f-9f59-98e2594328e8` |
| 2666 | `horseMeatDried` | Dried horse meat | 0.6 | 70 | `5690cb19-872c-4b84-a437-d40d96b0ee51` |
| 2667 | `horseMeatSmoked` | Smoked horse meat | 0.8 | 86 | `aaad7362-ec12-4e22-885c-075450001468` |
| 2669 | `horseradish` | Horseradish | 0.7 | 14 | `907a2cd5-2730-424e-bf11-ef1f2db8f7e1` |
| 2670 | `horseradishCooked` | Cooked horseradish | 0.4 | 40 | `e19d0a82-e5cc-49b2-b0a2-14b004cb4717` |
| 2810 | `hostinaProChude_sigismundsWine` | Sigismund's wine | 1 | 420 | `60fa1492-0a52-48b5-8134-787453cdbcd3` |
| 2833 | `jewishBread` | Jewish bread | 0.6 | 32 | `f93c9156-efa1-4712-bb48-3ce5d50962bb` |
| 2843 | `kettleFood_campmadeMash` | A suspicious bag | 0 | 0 | `ffa8c4dd-5d4b-4fbc-ac40-38b50536b454` |
| 2844 | `kettleFood_homemadeMash` | A suspicious bag | 0 | 0 | `ba16dff8-4c13-417e-bbeb-d5ab435be20d` |
| 2845 | `kettleFood_richmadeMash` | A suspicious bag | 0 | 0 | `0dc9d98b-c59c-495d-b8e4-316448719026` |
| 2846 | `kettleFood_wineBarrel` | A suspicious bag | 0 | 0 | `da94ed8b-5b3b-4e2f-8c85-34ea3d0090ea` |
| 2891 | `kielbasaSmoked` | Smoked sausage | 0.6 | 149 | `29a4f58e-6e00-4f9c-9273-1a76e0eccff0` |
| 2893 | `klasterniTajemstvi_casperWine` | Wine from Casper's Vineyards | 1 | 450 | `c4e0a19f-43d8-4b8a-aa83-25f919e69a8b` |
| 2894 | `klasterniTajemstvi_casperWine_bad` | Wine from Casper's vineyard | 1 | 15 | `f31650f8-cf73-4c97-85dc-2860c212b339` |
| 2895 | `klasterniTajemstvi_degustationWine` | Rose hip wine | 1 | 450 | `0b2fcda5-11d1-46c4-9336-67f433136fbf` |
| 2901 | `klasterniTajemstvi_wineSprout` | Wine seedlings | 0.5 | 0 | `2606aceb-9a94-4342-aa26-f6e6548a0be7` |
| 2986 | `kucharskaKniha_knownPotion` | Kuba's potion | 0.5 | 1 | `9872a67f-e235-4641-913a-737681f52870` |
| 2989 | `kucharskaKniha_suspiciousPotion` | Kuba's potion | 0.5 | 1 | `b13717cf-c4d0-4e79-9f56-cb0fecc26eaf` |
| 2990 | `kucharskaKniha_unknownPotion` | Kuba's potion | 0.5 | 1 | `3a6936e1-cb05-4c4c-b6f6-379322c13c93` |
| 2991 | `kumaniNaTrosecku_peculiarSpirits` | Odd moonshine | 0 | 420 | `a9ae4ee2-b096-423f-8ac7-c375acc17bec` |
| 2993 | `kuttenbergBacon` | Kuttenberg bacon | 0.4 | 248 | `cfe1c8ad-3788-45c3-8b89-7217c7529802` |
| 2994 | `kuttenbergBread` | Kuttenberg bread | 0.6 | 61 | `18694c4b-2c87-4e11-8790-5ffdc4df322e` |
| 2995 | `kuttenbergKielbasaSmoked` | Kuttenberg sausauge | 0.6 | 124 | `99ae492a-33aa-434c-96f5-c34ce2fd1a51` |
| 3000 | `lambMeat` | Mutton | 0.4 | 36 | `4d1d646c-ce45-434b-96ae-cfa27b86b4b6` |
| 3001 | `lambMeatCooked` | Cooked lamb | 0.3 | 108 | `3c056762-3e14-471a-8f0e-8d57919fb9c4` |
| 3002 | `lambMeatDried` | Dried mutton | 0.2 | 45 | `94f31361-094b-4f8a-ad6c-dbf357c98d74` |
| 3003 | `lambMeatSmoked` | Smoked mutton | 0.3 | 83 | `8a0bfe8a-ff7d-4059-bb6f-ae062fb00d9a` |
| 3004 | `lambStomach` | Sheep stomach | 0.4 | 173 | `5a3a64c0-d3ee-4be1-b070-543de4a678f1` |
| 3005 | `lambStomachCooked` | Cooked sheep stomach | 0.3 | 151 | `953b8e18-bf41-477a-91f3-8c261c684f45` |
| 3012 | `leek` | Leek | 0.5 | 1 | `3bebc0b5-dcf8-4449-b37a-a5a362995826` |
| 3135 | `lepiota` | Lepiota | 0.2 | 20 | `c27e73bd-05db-42c5-963e-09c42395160a` |
| 3136 | `lepiotaCooked` | Cooked lepiota | 0.2 | 12 | `239ea469-3237-48d8-af90-da7cdf4140dc` |
| 3137 | `lepiotaDried` | Dried lepiota | 0.1 | 6 | `f6ede291-0b47-4dab-85bf-c507ad0e90a7` |
| 3361 | `maliruvLek_potion` | Weak Mandrake decoction | 0.2 | 500 | `1aea33c8-aa6d-4767-9a23-e2d382c0bea8` |
| 3362 | `maliruvLek_potion_best` | Henry's Mandrake Decoction | 0.2 | 850 | `1c538b1d-6d99-49e1-9900-4c7280ba5ec2` |
| 3363 | `maliruvLek_potion_high` | Strong Mandrake Decoction | 0.2 | 700 | `476a9cb8-b8c7-4785-9edc-19644acbe11c` |
| 3364 | `maliruvLek_potion_medium` | Mandrake decoction | 0.2 | 600 | `c94f0258-3f29-4d71-b4e6-a7738541f58a` |
| 3373 | `mead` | Mead | 1 | 40 | `390c0dc8-23fd-42a0-91f2-a4d42f96a387` |
| 3378 | `milk` | Milk | 1 | 24 | `51555071-7c55-4da1-9b61-ee3c14fde18b` |
| 3615 | `onion` | Onion | 0.2 | 6 | `4a6fa310-067a-404d-9813-bd1761d1c70d` |
| 3616 | `onionCooked` | Cooked onion | 0.2 | 17 | `4088cfbd-c7cc-46ba-9e68-8db8815932e3` |
| 3692 | `parsnip` | Parsnip | 1 | 6 | `9373471a-28cd-4719-a343-4669dd501a0a` |
| 3695 | `peaches` | Peach | 0.25 | 6 | `2485a0f4-22b5-40d1-9025-b57345f08ce2` |
| 3696 | `pear` | Pear | 0.3 | 7 | `2eeb7bf7-f0ac-4c46-9468-97c2f76cb254` |
| 3697 | `pear_test` | A suspicious bag | 0.3 | 2 | `2eeb7bf7-f0ac-4c46-9468-97c2f76cb25f` |
| 3698 | `pearCooked` | Cooked pear | 0.3 | 19 | `f0c9f56f-cd0f-4973-bfb5-3cea3e756bcc` |
| 3699 | `pearDried` | Dried pear | 0.1 | 9 | `f2ee05db-430c-4505-8b39-ce658fb4bb74` |
| 3701 | `perch` | Perch | 0.8 | 30 | `9bf17d06-8f2c-4b00-af30-5571fc2bfb0a` |
| 3702 | `perchCooked` | Cooked perch | 0.7 | 91 | `6c6d9f9a-a6fe-48d2-a1df-e939301db3c7` |
| 3703 | `perchDried` | Dried perch | 0.6 | 57 | `082e5192-fff9-4637-aa64-e4785bfe34f8` |
| 3704 | `perchSmoked` | Smoked perch | 0.6 | 70 | `0251611c-74a0-43c9-9ac8-28a44bf1655d` |
| 3727 | `pigLiver` | Pork liver | 1 | 251 | `e9170235-1d45-465b-bdec-a5599605e15e` |
| 3728 | `pigLiverCooked` | Boiled pork liver | 0.8 | 282 | `4a3dc302-b035-44cc-a49b-9da912c28cc1` |
| 3729 | `pigMeat` | Pork | 0.5 | 45 | `4446bc26-efff-4117-b4f5-19ee9045847d` |
| 3730 | `pigMeatCooked` | Cooked pork | 0.4 | 135 | `373747b8-5225-41ba-b511-56526ff90a30` |
| 3731 | `pigMeatDried` | Dried pork | 0.3 | 68 | `ae1bbf2f-6bee-4e7d-82a0-5cd898ab8718` |
| 3732 | `pigMeatSmoked` | Smoked pork | 0.4 | 104 | `961d80db-9847-4c65-aa1e-3b2366d66068` |
| 3733 | `pigTenderloin` | Pork tenderloin | 0.5 | 90 | `8438f1a0-18c2-4a47-89c6-bf3f00bcae67` |
| 3734 | `pigTenderloinCooked` | Cooked pork tenderloin | 0.4 | 270 | `ce4f5692-581d-401a-8479-0c55658d77a8` |
| 3735 | `pigTenderloinDried` | Dried pork tenderloin | 0.3 | 135 | `74bc6c64-73f9-4128-bbc1-3da5894cc28a` |
| 3736 | `pigTenderloinSmoked` | Smoked pork tenderloin | 0.4 | 207 | `1d5c770a-4e82-4ec1-913a-ebdd9a05477b` |
| 3750 | `plums` | Plums | 0.25 | 6 | `2ac0499c-a18f-425f-ab8c-bc81eaa0142a` |
| 3757 | `poi_earthworm` | Earthworm | 0 | 10 | `fa79bacf-3838-4028-8f91-3e89712c0c64` |
| 3773 | `poi_opusteneOpatovice_mead` | Opatowitz mead | 1 | 900 | `e1cfd45b-f055-41ad-9393-2609cfd0d3b8` |
| 3780 | `poi_pokladPodTroskami_oldSpirit` | Ancient moonshine | 1 | 1000 | `01d468fe-0fe8-4bb3-9bcc-e8abcbb9e9a4` |
| 3793 | `poi_vinnySklep_specialWine_1` | Pinot Grigio 1401 | 1 | 560 | `125ce7ce-2289-4419-a8cc-a4675bfb83c1` |
| 3794 | `poi_vinnySklep_specialWine_2` | Flushing from the barrel | 1 | 210 | `8eee3594-8fe9-4eb0-8971-07bfe8643898` |
| 3795 | `poi_vinnySklep_specialWine_3` | Pinot Noir 1401 | 1 | 430 | `78c516d4-f64c-4d26-b59a-7a6a793632f4` |
| 3796 | `poi_vinnySklep_specialWine_4` | Prokop's first wine | 1 | 280 | `a0ab454f-2935-4744-8115-53aafe17d66b` |
| 3797 | `poi_vinnySklep_specialWine_5` | Vinegar from Loretz | 1 | 30 | `5eb8af37-0db9-43f9-b6fd-d3d428b8ef6b` |
| 3798 | `poi_vinnySklep_specialWine_6` | Sour slop from Loretz | 1 | 310 | `ebec6979-8181-491e-b28a-8252f9d782f5` |
| 3799 | `poi_vinnySklep_specialWine_7` | Pinot Noir 1402 | 1 | 840 | `aa3286d9-2f20-43e9-a492-ade194ef62f4` |
| 3810 | `poi_zlodejZeli_sauerkraut` | Pepa's Sauerkraut | 0 | 250 | `9dd42af6-e0e0-42e8-81e8-fff02f8d1579` |
| 3834 | `poppyseedCake` | Poppy seed kolach | 0.2 | 29 | `56271b31-57c1-443a-8d97-9524ee2a8240` |
| 3840 | `potion_aesop` | Weak Aesop | 0.2 | 350 | `73ff1fde-ec8b-41e9-95e3-b5938c715bf1` |
| 3841 | `potion_aesop_best` | Henry's Aesop | 0.2 | 700 | `68cc138a-67d8-4305-8140-aef772fb4d66` |
| 3842 | `potion_aesop_high` | Strong Aesop | 0.2 | 550 | `0bf30154-1954-427d-ab92-6fa0048b0e27` |
| 3843 | `potion_aesop_medium` | Aesop | 0.2 | 450 | `db3b9089-3985-44fb-a2f4-d662321b6d4a` |
| 3844 | `potion_antidote` | Weak Digestive potion | 0.2 | 200 | `8b713d0c-9a04-4354-a53f-ffd384057fa6` |
| 3845 | `potion_antidote_best` | Henry's Digestive potion | 0.2 | 500 | `e3023c6f-1293-49f1-8cd4-21cac3e3f604` |
| 3846 | `potion_antidote_high` | Strong Digestive potion | 0.2 | 350 | `5dd0afa5-3c76-475c-9775-6ed5c69132fd` |
| 3847 | `potion_antidote_medium` | Digestive potion | 0.2 | 250 | `2f566495-fbee-4b58-9abb-6a5287b2e681` |
| 3848 | `potion_antiIflammatoryPotion` | Weak Anti-inflammatory potion | 0.2 | 600 | `c217c479-fd02-43ea-9bbe-54f9924f6a9d` |
| 3849 | `potion_antiIflammatoryPotion_best` | Henry's Anti-inflammatory potion | 0.2 | 600 | `8bc5cf42-52c6-4c4f-8675-feb01cd346ac` |
| 3850 | `potion_antiIflammatoryPotion_high` | Strong Anti-inflammatory potion | 0.2 | 600 | `512e64c4-2fe7-45a1-bea3-378cc8798439` |
| 3851 | `potion_antiIflammatoryPotion_medium` | Anti-inflammatory potion | 0.2 | 600 | `f8bfc1f2-ee8d-4eac-b9bf-57ec73965afb` |
| 3852 | `potion_antiPlaguePotion` | Weak St. Roch's potion | 0.2 | 600 | `7cf06dab-e2f4-4802-a0ca-89a91ac3f41b` |
| 3853 | `potion_antiPlaguePotion_best` | Henry's St. Roch's potion | 0.2 | 600 | `fa19f14c-4a4c-4344-bf6a-2e8d42efc0b2` |
| 3854 | `potion_antiPlaguePotion_high` | Strong St. Roch's potion | 0.2 | 600 | `5f64b2c4-6018-42f2-bbd2-fa3b52dd4003` |
| 3855 | `potion_antiPlaguePotion_medium` | St. Roch's potion | 0.2 | 600 | `f8925676-2792-4d91-9970-84731ca278d2` |
| 3856 | `potion_aquaVitalis` | Weak Aqua Vitalis | 0.2 | 350 | `850d28d9-9d0a-4b2e-9feb-e6c48c5f1aad` |
| 3857 | `potion_aquaVitalis_best` | Henry's Aqua Vitalis | 0.2 | 700 | `dec304dc-47f4-4bb2-8e4c-1c0a30203b6e` |
| 3858 | `potion_aquaVitalis_high` | Strong Aqua Vitalis | 0.2 | 550 | `0da553ab-9df7-4ed4-92b8-a9c9e42566a5` |
| 3859 | `potion_aquaVitalis_medium` | Aqua Vitalis | 0.2 | 450 | `ade54ad7-c400-4b19-a3fe-d34bd1fc3b30` |
| 3860 | `potion_artemisia` | Weak Artemisia | 0.2 | 350 | `07016792-531f-4ef2-8c3c-ea7566326c04` |
| 3861 | `potion_artemisia_best` | Henry's Artemisia | 0.2 | 700 | `68853c50-8e91-4644-b914-3035715896cd` |
| 3862 | `potion_artemisia_high` | Strong Artemisia | 0.2 | 550 | `301cc8ff-f3f5-4c39-b27b-129bb58792d0` |
| 3863 | `potion_artemisia_medium` | Artemisia | 0.2 | 450 | `2a17517c-e5f3-4c9e-ad45-b9e4b171b452` |
| 3864 | `potion_bard` | Weak Fox | 0.2 | 350 | `34d9f446-e5a7-4af4-858a-e96473de814f` |
| 3865 | `potion_bard_best` | Henry's Fox | 0.2 | 700 | `ecd5ec75-6483-4376-a7ff-83be58847f11` |
| 3866 | `potion_bard_high` | Strong Fox | 0.2 | 550 | `2907cc32-ff8e-4a3c-b357-8fe434341874` |
| 3867 | `potion_bard_medium` | Fox | 0.2 | 450 | `4f60ae85-28a3-45c1-9040-e11ed56edc87` |
| 3868 | `potion_bowmanBrew` | Weak Bowman's brew | 0.2 | 350 | `3157d51d-7461-4fdc-9601-93bd5ed42156` |
| 3869 | `potion_bowmanBrew_best` | Henry's Bowman's brew | 0.2 | 700 | `f613838b-0a41-4dee-a1cf-41cb753b5eb6` |
| 3870 | `potion_bowmanBrew_high` | Strong Bowman's brew | 0.2 | 550 | `e843c734-f28f-4263-9033-f6f40fe65a85` |
| 3871 | `potion_bowmanBrew_medium` | Bowman's brew | 0.2 | 450 | `980ce52a-866c-4212-a80a-dfc6b53f5c40` |
| 3872 | `potion_chamomile_decoction` | Weak Chamomile decoction | 0.2 | 200 | `5060809f-feec-4c39-b7f4-1cea5e55ab70` |
| 3873 | `potion_chamomile_decoction_best` | Henry's Chamomile decoction | 0.2 | 500 | `12174dd5-16bb-4e3c-9a3e-f66d851994e9` |
| 3874 | `potion_chamomile_decoction_high` | Strong Chamomile decoction | 0.2 | 350 | `12c30ac1-f9fc-4b61-a337-b3eb98779ca6` |
| 3875 | `potion_chamomile_decoction_medium` | Chamomile decoction | 0.2 | 250 | `ca4bb7aa-12a9-45d5-a589-de2a2458fc4d` |
| 3876 | `potion_embrocation` | Weak Embrocation | 0.2 | 350 | `567fc1b1-1424-4784-9da8-5104e2e7354d` |
| 3877 | `potion_embrocation_best` | Henry's Embrocation | 0.2 | 700 | `9536b229-2454-48cd-83a2-2f6292e18044` |
| 3878 | `potion_embrocation_high` | Strong Embrocation | 0.2 | 550 | `0e6f3e1b-961a-447e-ba58-17901f70896f` |
| 3879 | `potion_embrocation_medium` | Embrocation | 0.2 | 450 | `5cd3c6f7-ddb8-4475-870d-895d604c1d98` |
| 3880 | `potion_fevertonic` | Fever tonic | 0.2 | 400 | `f57b55ad-b964-4555-b564-726ab821670e` |
| 3881 | `potion_generic` | Unknown potion | 0.2 | 2 | `006ec8d6-1ce1-4e90-8267-7c349812ddcd` |
| 3882 | `potion_hair_o_dog` | Weak Hair o' the Dog | 0.2 | 350 | `7a1e8447-4449-473b-aac9-63f7a324fa0b` |
| 3883 | `potion_hair_o_dog_best` | Henry's Hair o' the Dog | 0.2 | 700 | `18b29b5b-a1a2-4b51-9540-b156745d1bca` |
| 3884 | `potion_hair_o_dog_high` | Strong Hair o' the Dog | 0.2 | 550 | `6a4858db-2c3e-442d-8bcd-4c79d855e43a` |
| 3885 | `potion_hair_o_dog_medium` | Hair o' the Dog | 0.2 | 450 | `a3d9df4f-c502-473d-8010-9f1204e1b124` |
| 3887 | `potion_insomnia` | Weak Cockerel | 0.2 | 350 | `c40dc516-9886-4245-8a8b-2cbb16da918d` |
| 3888 | `potion_insomnia_best` | Henry's Cockerel | 0.2 | 700 | `6a3efa9e-700a-412a-88ee-721d34da98a8` |
| 3889 | `potion_insomnia_high` | Strong Cockerel | 0.2 | 550 | `16aad4a8-c992-4230-8175-f3ec4ef4d4f8` |
| 3890 | `potion_insomnia_medium` | Cockerel | 0.2 | 450 | `d4d378ef-0fb1-4030-880e-6b2fea8a394c` |
| 3891 | `potion_marigold` | Weak Marigold decoction | 0.2 | 300 | `b38c34b7-6016-4f64-9ba2-65e1ce31d4a1` |
| 3892 | `potion_marigold_best` | Henry's Marigold Decoction | 0.2 | 600 | `c7022225-70b4-4bde-afe0-1d42763a2ecd` |
| 3893 | `potion_marigold_high` | Strong Marigold Decoction | 0.2 | 500 | `b4e0af8c-3ed7-40ed-8537-7772489832c8` |
| 3894 | `potion_marigold_medium` | Marigold decoction | 0.2 | 400 | `761f9e84-e07b-4b4b-9425-7681898abccd` |
| 3895 | `potion_nighthawk` | Weak Nighthawk | 0.2 | 350 | `6b955a9b-d8de-492c-a53e-a052fab4ff0a` |
| 3896 | `potion_nighthawk_best` | Henry's Nighthawk | 0.2 | 700 | `0422b7ef-1554-4c9b-b7a0-037be091094f` |
| 3897 | `potion_nighthawk_high` | Strong Nighthawk | 0.2 | 550 | `555739da-ec53-49a0-a465-651e56ff1e96` |
| 3898 | `potion_nighthawk_medium` | Nighthawk | 0.2 | 450 | `122b7fbe-3ce3-4c4a-b692-cedfa355e7b6` |
| 3899 | `potion_padfoot` | Weak Quickfinger potion | 0.2 | 350 | `ab25a50a-7836-47a9-acb2-5fd93684b8c5` |
| 3900 | `potion_padfoot_best` | Henry's Quickfinger potion | 0.2 | 700 | `a881243c-ea11-4d4b-a7e4-0b2105c79e28` |
| 3901 | `potion_padfoot_high` | Strong Quickfinger potion | 0.2 | 550 | `cc2060b0-b588-4a54-9a73-293a8a4f2ff6` |
| 3902 | `potion_padfoot_medium` | Quickfinger potion | 0.2 | 450 | `e730436c-53f6-4041-bdd1-3f4826f15975` |
| 3903 | `potion_painkiller` | Weak Painkiller brew | 0.2 | 350 | `09834ed5-010e-438b-8ac0-cf60529ff383` |
| 3904 | `potion_painkiller_best` | Henry's Painkiller brew | 0.2 | 700 | `b6456b1c-ba84-4b3a-ba5b-47c388d3befb` |
| 3905 | `potion_painkiller_high` | Strong Painkiller brew | 0.2 | 550 | `10134a72-9c08-4bee-8352-208cdba64534` |
| 3906 | `potion_painkiller_medium` | Painkiller brew | 0.2 | 450 | `b53dc1c8-29c9-4002-878d-6b75fc10f217` |
| 3907 | `potion_respec` | Lethean Water | 0.2 | 900 | `601f9ff2-0413-40c9-b443-9695aafa71a5` |
| 3908 | `potion_saviourSchnapps` | Weak Saviour Schnapps | 0.2 | 250 | `928463d9-e21a-4f7c-b5d3-8378ed375cd1` |
| 3909 | `potion_saviourSchnapps_best` | Henry's Saviour Schnapps | 0.2 | 550 | `b7e25984-1dce-4129-b857-dd61821503c1` |
| 3910 | `potion_saviourSchnapps_high` | Strong Saviour Schnapps | 0.2 | 400 | `3d4a8904-98f1-464a-9b3e-d3926b835804` |
| 3911 | `potion_saviourSchnapps_medium` | Saviour Schnapps | 0.2 | 300 | `d273bcad-6b58-4eae-9d2a-800c40176cfd` |
| 3912 | `potion_stamina` | Weak Buck's Blood | 0.2 | 350 | `92c829ca-41f6-40a7-b8d9-aac5159c7a89` |
| 3913 | `potion_stamina_best` | Henry's Buck's Blood | 0.2 | 700 | `9ca97b1a-579b-44f2-8624-46d081b9001a` |
| 3914 | `potion_stamina_high` | Strong Buck's Blood | 0.2 | 550 | `c016f34b-be76-47c7-9f96-caec61afa238` |
| 3915 | `potion_stamina_medium` | Buck's Blood | 0.2 | 450 | `be58eb36-bd45-45d9-8a38-5bd07ceb4258` |
| 3916 | `potion_steakTartarePerkUnlocker` | Strange potion | 0.2 | 0 | `6806f7e5-3145-4f36-8269-3db5904d6978` |
| 3959 | `prepadeniVlasskehoDvora_juniperSchnapps` | Juniper schnapps | 0 | 250 | `d896e858-2a93-48bc-8c55-81eee57f82a6` |
| 3962 | `pretzel` | Pretzel | 0.1 | 12 | `c352d8ae-4021-4f9b-b49c-b1f087f2cd2c` |
| 4062 | `rabbitLiver` | Hare's Heart | 0.3 | 194 | `90bc395d-39ee-460a-a658-f434ed2df760` |
| 4063 | `rabbitLiverCooked` | Cooked hare heart | 0.3 | 227 | `5d87431e-03bd-4ae3-b73a-8ddb52a9af51` |
| 4064 | `rabbitMeat` | Hare meat | 0.2 | 22 | `6f1d0e9e-d532-4476-af7a-e24ea01da040` |
| 4065 | `rabbitMeatCooked` | Cooked hare meat | 0.2 | 37 | `d031224d-34c3-4f2b-98f7-d77789a309c2` |
| 4066 | `rabbitMeatDried` | Dried hare meat | 0.3 | 31 | `2f5a67c7-3298-44a9-bee4-106d42d3ce22` |
| 4067 | `rabbitMeatSmoked` | Smoked hare meat | 0.1 | 29 | `025f546b-7465-4070-a57d-e84852adc184` |
| 4167 | `roastedPeas` | Roasted peas | 0.2 | 12 | `27795e53-68b1-4d05-9b02-ae1815c8095b` |
| 4170 | `roeDeerLoin` | Roe deer loin | 0.8 | 35 | `45f9883e-73b1-429f-a127-34fbfd7084aa` |
| 4171 | `roeDeerLoinCooked` | Cooked roe deer loin | 0.8 | 104 | `8e9bbf5f-a334-4859-9e1b-8da270ddb4b5` |
| 4172 | `roeDeerLoinDried` | Dried roe deer loin | 0.5 | 54 | `a7f3105b-4529-4507-8968-1f0ed512af2f` |
| 4173 | `roeDeerLoinSmoked` | Smoked roe deer loin | 0.8 | 79 | `5e5514d7-e603-4634-b4d7-e1801010f398` |
| 4174 | `roeDeerMeat` | Roe deer meat | 0.5 | 43 | `1df1ee61-0b44-4efd-bfa4-37efbcd4be42` |
| 4175 | `roeDeerMeatCooked` | Cooked roe deer meat | 0.4 | 65 | `db66940d-09bc-4450-8df9-8268e52e4ac2` |
| 4176 | `roeDeerMeatDried` | Dried roe deer meat | 0.4 | 130 | `2140f040-4d49-4403-9137-5e1bf29dbe15` |
| 4177 | `roeDeerMeatSmoked` | Smoked venison | 0.5 | 149 | `10ee7741-d121-4d3a-b342-d72920d6d90e` |
| 4178 | `roeKidney` | Roe deer kidneys | 0.4 | 213 | `c6d9387a-30de-469a-a785-3220bf0426ba` |
| 4179 | `roeKidneyCooked` | Cooked roe deer kidneys | 0.3 | 186 | `68d9f225-030a-43c0-83b3-c4bc57568581` |
| 4214 | `salami` | Salami | 0.4 | 58 | `319a7fe7-1c5d-42fa-80cd-83126cb6eaff` |
| 4215 | `salamiDried` | Dried salami | 0.2 | 81 | `dc4dde5d-2196-41dd-8c5f-1ae94365fe23` |
| 4216 | `salamiSmoked` | Smoked salami | 0.3 | 132 | `19644921-6bb7-4342-be8d-dc235362d20b` |
| 4218 | `sauerkraut` | Sauerkraut | 0 | 17 | `220fd40a-3990-4a34-b6de-eb4a6451539b` |
| 4231 | `sedmStatecnychDva_hansSausage` | Janosh's sausage | 0.1 | 550 | `15674da0-110f-4a95-8adb-8e87696a16d8` |
| 4847 | `spirits` | Schnapps | 1 | 96 | `c64b7286-07b8-4bdf-afd0-359171d35249` |
| 4849 | `spizovaciOddil_freshMilk` | Fresh milk | 1 | 30 | `7d273b3b-b9dc-405c-a003-92c7b087a067` |
| 4895 | `svatba_broth` | Strong broth | 0.5 | 1 | `7a622750-5d38-4d8f-94e4-ed8c42dabe58` |
| 4900 | `svatba_pieceOfWatermelon` | Watermelon slice | 0.1 | 0 | `c191701b-3ad1-43ff-b4d1-4e56c9d95dda` |
| 4902 | `svatba_roastedPiglet` | Roasted piglet | 0.1 | 0 | `06759b71-0814-4dbe-8306-003f21d724f5` |
| 4903 | `svatba_toastBeer` | A suspicious bag | 0 | 0 | `c93e2332-2902-4d88-bdb1-cde721a77d9b` |
| 4906 | `svatba_wine` | Wine | 0.5 | 1 | `0cfe3456-8eee-4cf5-bbaf-b632e3879be7` |
| 4944 | `Test Potion: Invincible` | A suspicious bag | 0.5 | 1 | `27144e47-00aa-468e-a81b-49cb3b248b07` |
| 4945 | `Test Potion: Stamina Frenzy` | A suspicious bag | 0.5 | 0 | `ee4d5b06-0a7e-4073-969b-b11131e97fef` |
| 5021 | `test_inventory_apple` | A suspicious bag | 0.3 | 4 | `9aa61103-1bf1-ed91-5642-939c5307cf06` |
| 5088 | `trout` | Trout | 0.8 | 55 | `f2e16499-8a27-4acc-a4af-f29e00300507` |
| 5089 | `troutCooked` | Cooked trout | 0.7 | 163 | `6a324aa9-a566-406c-a3f8-6c416a00b399` |
| 5090 | `troutDried` | Dried trout | 0.6 | 99 | `4802fa80-37b4-4017-9ee2-7b48a83fe065` |
| 5091 | `troutSmoked` | Smoked trout | 0.6 | 125 | `8fdb519f-51a4-4531-a20e-732065dd1ede` |
| 5253 | `turnip` | Turnip | 0.25 | 5 | `ea84be32-b3fc-4dfa-8dab-7169bd9e441d` |
| 5399 | `walnutCake` | Walnut kolach | 0.2 | 30 | `38cafd4d-55a4-4121-bb3f-5b4815eaad03` |
| 5400 | `walnuts` | Walnuts | 0.2 | 41 | `9173874c-7494-42ee-8965-a0d12d673945` |
| 5493 | `water` | Drinking water | 1 | 1 | `0cb47176-06c5-42a9-8d70-969e917eb999` |
| 5497 | `watermelon` | Watermelon | 2.2 | 25 | `1c2da556-488b-4a86-b22a-c42acb299938` |
| 5498 | `wedding_beer1` | Jitschine beer | 1 | 30 | `86e325c8-9104-4e55-9c2c-8797f29ffc58` |
| 5499 | `wedding_beer2` | Turnau beer | 1 | 60 | `448d0ea2-c3b4-42ed-aadb-95bddecd206a` |
| 5500 | `wedding_beer3` | Aujezd beer | 1 | 40 | `a19f631a-cde3-49fa-97c8-8dc7ef8eab03` |
| 5501 | `wedding_beer4` | Wedding beer | 1 | 80 | `93595b3f-64b1-411b-bd7d-79518aff3e35` |
| 5506 | `wine` | Wine | 1 | 29 | `7c5126cd-b010-4484-8465-22a3d69fa0df` |
| 5508 | `wine_vlasak` | Wine | 1 | 40 | `5f4b1982-77c8-4d6a-a3b1-e3aa5ee499cc` |
| 5509 | `wineCharl` | Rose hip wine | 1 | 67 | `ca5a0aa3-e373-48ec-96e4-1c3b9907bac3` |
| 5510 | `wineCheap` | Cheap wine | 1 | 13 | `38df365c-a4bb-462b-80cc-eb92f16930fa` |
| 5511 | `wineGood` | Fine wine | 1 | 37 | `dea2883f-6bd9-4f6e-bae8-80322d428652` |
| 5514 | `wineLorec` | Wine from Loretz | 1 | 45 | `bc8759ad-fc9b-4577-88a4-2008dbda647f` |
| 5516 | `wolfHeart` | Wolf heart | 0.2 | 114 | `8ae96c33-8557-4410-8401-2c2e40d00e36` |
| 5517 | `wolfHeartCooked` | Cooked wolf heart | 0.2 | 262 | `41acaacc-6a6d-4520-968c-329ac41054ad` |
| 5518 | `wolfMeat` | Wolf meat | 0.2 | 52 | `fddaec6e-f86d-41fe-8d58-86a816cc9f91` |
| 5519 | `wolfMeatCooked` | Boiled wolf meat | 0.2 | 116 | `b3ea937c-5912-45ee-96c6-9331289407f0` |
| 5520 | `wolfMeatDried` | Dried wolf meat | 0.1 | 81 | `9eb8db52-658e-48e6-a146-7b6efa510ece` |
| 5521 | `wolfMeatSmoked` | Smoked wolf meat | 0.1 | 119 | `21fbb699-2f08-4d6d-aebd-442c2406e865` |
| 5596 | `ztratyANalezy_booze` | Meaningless moonshine | 0.5 | 110 | `573f381a-884a-4afd-b7f9-5d13342decbf` |
# Items: Helmets
> The 152 item classes of the game's Helmet table: id, name, English name, weight, price and class GUID.
The game's **`Helmet`** rows - 152 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 208 | `BascinetAlberich_m01` | Open bascinet | 5.2 | 16438 | `701e2d4b-e7bd-406c-b24b-297688ad969e` |
| 209 | `BascinetOpen01_m01_C2` | Open bascinet | 5.2 | 16438 | `b107b189-7eea-4eae-bc64-2a23bd650b14` |
| 210 | `BascinetOpen01_m02_C2` | Open bascinet | 5.2 | 16438 | `dfefcdf9-ee88-4ce1-be9e-d0a83fa981e7` |
| 211 | `BascinetOpen01_m03_C2` | Open bascinet | 5.2 | 16438 | `d3bc6b02-d678-4336-8d4a-6f4157fd1376` |
| 212 | `BascinetOpen02_m01_C1` | Bell-shaped bascinet | 5.2 | 12993 | `965274e3-4b6e-49de-b49e-778aafbe1762` |
| 213 | `BascinetOpen02_m02_C1` | Bell-shaped bascinet | 5.2 | 12993 | `fb7ebf36-7aea-410d-800e-2482193d0982` |
| 214 | `BascinetOpen02_m03_C1` | Bell-shaped bascinet | 5.2 | 12993 | `2b5bb6d2-f2f9-4c09-afdd-12f59ca8b5c8` |
| 215 | `BascinetOpen03_m01_C4` | Bascinet with bretèche | 5.5 | 36958 | `962a26c0-078e-430b-b806-c19fc52526da` |
| 216 | `BascinetOpen03_m02_C4` | Bascinet with bretèche | 5.5 | 36958 | `a0ff8ee9-9c48-4906-b25d-1ee2865f8c4e` |
| 217 | `BascinetOpen03_m03_C4` | Bascinet with bretèche | 5.5 | 36958 | `7dc23682-02cd-43d9-bcc8-e805489ae1a0` |
| 218 | `BascinetOpen03_mTwitch` | Warhorse bascinet | 5.3 | 21605 | `5eede8e8-686b-4587-85c2-a548d574aaa6` |
| 219 | `BascinetOpen06_m01_B3` | Crested Cuman helmet | 5.3 | 20615 | `3577a2f1-b901-4b73-b72c-3c35ff75c53a` |
| 220 | `BascinetOpen06_m02_B3` | Crested Cuman helmet | 5.3 | 20615 | `f627fe5b-6af9-4f1b-884e-6128686835b6` |
| 221 | `BascinetOpen06_m03_B3` | Crested Cuman helmet | 5.3 | 20362 | `5957228f-d819-4832-9bd6-e0b6f977c364` |
| 222 | `BascinetOpen06_m04_B3` | Crested Cuman helmet | 5.3 | 20362 | `d363ef34-16eb-4cc5-811d-d7cd4d8beac0` |
| 223 | `BascinetOpen06_m05_B3` | Crested Cuman helmet | 5.3 | 20362 | `0b354bb1-3741-4a78-8a73-0d668f273044` |
| 224 | `BascinetOpen06_m06_B3` | Crested Cuman helmet | 5.3 | 20615 | `eca620de-a1c1-47bc-b8bf-41f76dfd5f88` |
| 225 | `BascinetOpen06_m07_B3` | Crested Cuman helmet | 5.3 | 20362 | `1430e4db-40cd-4f0a-b99a-ad9b8d3d6c41` |
| 226 | `BascinetOpen06_m08_B3` | Crested Cuman helmet | 5.3 | 19854 | `8116d7f0-5115-4141-b1a7-499bdf88f8ff` |
| 227 | `BascinetOpen07_m01_C2` | Kyiv helmet | 5.3 | 15998 | `1783439d-8dbf-41d5-b075-7ccb09a18541` |
| 228 | `BascinetOpen07_m02_C2` | Kyiv helmet | 5.3 | 15998 | `d6d8987d-9ebf-4f9a-8e0b-a370ed89c6c5` |
| 229 | `BascinetOpen07_m03_C2` | Kyiv helmet | 5.3 | 15998 | `e48a7f0e-74fe-4ed5-8e7c-9d757b8b7ecc` |
| 230 | `BascinetOpen08_m01_B3` | Bascinet with aventail | 5.3 | 20592 | `8b2cb8f5-31e8-4ee3-b4bc-b50c06f7ff4c` |
| 231 | `BascinetOpen08_m02_B3` | Bascinet with aventail | 5.3 | 20592 | `5a4b0838-0aec-4d13-9f12-3e6a406b5305` |
| 232 | `BascinetOpen08_m03_B3` | Bascinet with aventail | 5.3 | 20592 | `bac734ab-52ff-447b-8307-f1256ad60987` |
| 233 | `BascinetOpen08_mDevil` | Bascinet with aventail | 2.7 | 11134 | `f3a35cc8-fcb8-4ded-b065-0488ff3b5f45` |
| 234 | `BascinetOpen08_mKomar` | Bascinet with aventail | 5.3 | 20592 | `afe31429-33dd-40d2-8550-71cbc55e67e2` |
| 235 | `BascinetOpen09_m01_B1` | Cuman bascinet | 5 | 9105 | `b6cdfe6c-0cab-4880-aece-3ab8ac68ac9c` |
| 236 | `BascinetOpen09_m02_B1` | Cuman bascinet | 5 | 9105 | `3b42d9a1-186b-4e40-b5c9-d5c20b566a76` |
| 237 | `BascinetOpen09_m03_B1` | Cuman bascinet | 5 | 9105 | `d5a61438-2747-4546-8b02-14771322e54d` |
| 238 | `BascinetOpen10_m01_D2` | Constantinople bascinet | 5.2 | 12870 | `2f21ce09-8b9b-487b-88fa-18d25620d44f` |
| 239 | `BascinetOpen10_m03_D2` | Constantinople bascinet | 5.2 | 12870 | `4326bea5-c4c2-4ea5-a7d7-6bc591a7009d` |
| 240 | `BascinetOpen_placeholder` | A suspicious bag | 2.7 | 31624 | `1651603e-511c-4607-88b8-f722b65b88a3` |
| 241 | `BascinetVisor01_m01_C3` | Saxon bascinet | 11.7 | 34855 | `b0b3babe-9c0a-4cb4-9f50-f4447a835ffa` |
| 242 | `BascinetVisor01_m01_C4_closed` | A suspicious bag | 5.2 | 227 | `2e90e073-e60a-4e81-9b00-19f9a0067d46` |
| 243 | `BascinetVisor01_m02_C3` | Saxon bascinet | 11.7 | 34855 | `9d8531f7-52af-42b6-a418-a85f02bc1b42` |
| 244 | `BascinetVisor01_m03_C3` | Saxon bascinet | 11.7 | 34855 | `e57cd5c1-c8db-4af7-ad98-79ee64dd7b5f` |
| 245 | `BascinetVisor01_m04_C3` | Saxon bascinet | 11.7 | 34855 | `2221b25c-a5a0-44ea-b96b-201781c1e7c4` |
| 246 | `BascinetVisor01_m05_C3` | Saxon bascinet | 11.7 | 34855 | `fb95090e-ab36-4e5e-9447-99653eaa4873` |
| 247 | `BascinetVisor02_m01_B3_closed` | A suspicious bag | 5.2 | 2185 | `0d09f3be-ff48-4bb6-bd89-53cc42b35592` |
| 248 | `BascinetVisor02_m01_D3` | Hounskull bascinet | 11.4 | 34733 | `49ac17ff-a290-4fb4-8ca6-0e3bed1ddbd7` |
| 249 | `BascinetVisor02_m02_D3` | Hounskull bascinet | 11.4 | 34733 | `2463ac9b-f30b-4cac-bfbc-d846b54c328e` |
| 250 | `BascinetVisor02_m03_D3` | Hounskull bascinet | 11.4 | 34733 | `d8c9ae5a-ac99-479b-9529-277814dd629f` |
| 251 | `BascinetVisor02_mNoVisor_B3` | Hounskull bascinet | 5.2 | 370 | `4f129653-55f8-4022-b6ea-02790dbdb963` |
| 252 | `BascinetVisor03_m01_A3_closed` | A suspicious bag | 5.2 | 624 | `ae890818-2010-4c34-9b54-7e830fc286f2` |
| 253 | `BascinetVisor03_m01_A4` | Nuremberg bascinet | 13.5 | 53135 | `219debf1-3e0a-4bad-b6bb-6bad5e334b8c` |
| 254 | `BascinetVisor03_m01_NoVisor` | Nuremberg bascinet | 5.2 | 2213 | `2b8775f0-2f60-46fa-879c-e0d5b1e00d01` |
| 255 | `BascinetVisor03_m02_A4` | Nuremberg bascinet | 13.5 | 53135 | `5f5431a4-d9a7-4e09-b304-f1fc7a0fb258` |
| 256 | `BascinetVisor03_m03_A4` | Nuremberg bascinet | 13.5 | 53135 | `61db00a4-24d0-4e19-a396-0e02513ef2f0` |
| 257 | `BascinetVisor03_m03_NoVisor` | Nuremberg bascinet | 1 | 9449 | `539c70cf-f5d9-4409-9431-b9c03bc7d3e4` |
| 258 | `BascinetVisor03_m04_A4` | Nuremberg bascinet | 13.5 | 53135 | `d4165bed-4c5b-4ffa-87d8-b325bd739f6e` |
| 259 | `BascinetVisor03_mErik` | Nuremberg bascinet | 13.5 | 53975 | `35624bd9-9d1b-4123-8950-e758d4e3696f` |
| 260 | `BascinetVisor03_mErik__closed` | A suspicious bag | 2 | 2018 | `23c73a7a-6797-4545-8a0a-73468ed51d62` |
| 261 | `BascinetVisor03_mOderin_A3` | Nuremberg bascinet | 13.5 | 53975 | `e3ea9c63-6b63-4eab-9e0f-80b9ec856fd4` |
| 262 | `BascinetVisor04_m01_A5` | Noble's bascinet | 15 | 88660 | `311f5baa-ce48-48e0-98f2-e480b677a05a` |
| 263 | `BascinetVisor04_m01_A5_closed` | A suspicious bag | 2 | 12000 | `8570106b-0b4e-415f-9e78-a47ed68d8163` |
| 264 | `BascinetVisor04_m02_A5` | Noble's bascinet | 15 | 88660 | `03ecf014-f5c4-4eaa-bb64-4a993ada4f0b` |
| 265 | `BascinetVisor04_m02_A5_noVisor` | Noble's bascinet | 2 | 22774 | `7a0a5b29-a918-4b9f-beca-844549166a2f` |
| 266 | `BascinetVisor04_m03_A5` | Noble's bascinet | 15 | 88660 | `39c04208-eee3-488b-a9f1-46c6a00bede9` |
| 267 | `BascinetVisor04_m04_A5` | Noble's bascinet | 15 | 88660 | `8c7cf9ff-cf06-41fb-a92a-14651c0005b9` |
| 268 | `BascinetVisor04_m05_A5` | Noble's bascinet | 15 | 88660 | `a8347822-8eb2-498b-9f5e-d97958505e67` |
| 269 | `BascinetVisor04_mAulitz_A5` | Noble's bascinet | 15 | 89773 | `4b396e6a-9b01-4ee6-bab5-97f3d72245f4` |
| 270 | `BascinetVisor04_mAulitzNoVisor_A5` | A suspicious bag | 2 | 4022 | `35446ddd-74b4-4c72-85ef-0fa7df502953` |
| 271 | `BascinetVisor05_m01_C4` | Italian bascinet | 13.5 | 49978 | `7407d0ea-c069-4b07-8f4d-63e123e3c0ef` |
| 272 | `BascinetVisor05_m01_C4_closed` | A suspicious bag | 2 | 6968 | `4b68a6f3-f963-4d00-b013-99872caaee17` |
| 273 | `BascinetVisor05_m02_C4` | Italian bascinet | 13.5 | 49978 | `1f3a068a-72a7-4150-b585-79ebc9e04711` |
| 274 | `BascinetVisor05_m02_C4_closed` | A suspicious bag | 2 | 974 | `1877d30b-e8c5-4355-960e-a97eaa2fa043` |
| 275 | `BascinetVisor05_m03_C4` | Italian bascinet | 13.5 | 49978 | `6024f383-e716-4a87-aa60-ea2831c9e919` |
| 276 | `BascinetVisor05_m04_C4` | Italian bascinet | 13.5 | 49978 | `b6fe59ec-c854-402a-848e-a77f55661c19` |
| 277 | `BascinetVisor05_m05_C4` | Italian bascinet | 13.5 | 49978 | `afe43649-6e72-4444-a759-37cadf034e26` |
| 278 | `BascinetVisor05_m06_C4` | Italian bascinet | 13.5 | 49978 | `5520a038-c902-4a78-a33c-44d9b0740c84` |
| 279 | `BascinetVisor05_mDevil` | Italian bascinet | 5.5 | 20762 | `abefbca6-85ee-4021-88c9-778a49d969e6` |
| 280 | `BascinetVisor05_NoVisor_mRandomSoldier_C4` | A suspicious bag | 2 | 5445 | `9b026786-6ae9-4da1-bdbc-a5938310d79b` |
| 281 | `BascinetVisor06_m01_B4` | Cuman helmet with a mask | 13.8 | 63541 | `16eee683-2fc5-4425-98c5-15f61e363d9a` |
| 282 | `BascinetVisor06_m01_B4_closed` | A suspicious bag | 2 | 529 | `56bed759-ba8a-4b75-bcf2-2ef817cd5cf5` |
| 283 | `BascinetVisor07_m01_A5` | Kuttenberg bascinet | 13.2 | 87550 | `f2d0ee5e-e6e4-4766-b23b-aed77312a60b` |
| 284 | `BascinetVisor07_m01_A5_closed` | A suspicious bag | 13.2 | 87550 | `884a3899-8185-4428-9516-927a4bfab9a7` |
| 285 | `BascinetVisor_placeholder` | A suspicious bag | 4.9 | 227 | `9ab1be12-029d-4fd1-9a2a-91550319e36e` |
| 286 | `BascinetVisorBrunswig_m01` | Brunswick's bascinet | 9 | 16556 | `157697b8-f618-4856-aea2-3b3cba06c1d6` |
| 287 | `BascinetVisorCapon_m01` | Capon's bascinet | 13.8 | 55013 | `e535ea2b-1d06-413a-92ea-c4d0047e95ba` |
| 288 | `BascinetVisorCapon_m01_duel` | Capon's bascinet | 2 | 724 | `e055b9a3-0390-4a6f-8367-a042c5ed3eac` |
| 289 | `BascinetVisorCapon_m01_NoVisor` | A suspicious bag | 2 | 1646 | `99fc0bff-961f-4f8d-9e60-54ef959dc11f` |
| 290 | `BascinetVisorRuthard_m01_A5` | Noble's bascinet | 13.8 | 55013 | `ea2a2ccf-e5d3-4ef6-925d-a4124eb356e0` |
| 291 | `BascinetVisorScaring_m01` | Lord of Hell's helmet | 13.8 | 67640 | `e11e17bb-cba7-43c5-91fb-e1164b554e90` |
| 292 | `BascinetVisorScaring_m01_closed` | Lord of Hell's helmet | 13.8 | 67640 | `96841ac9-4cdc-41e7-a84e-d212389a0d71` |
| 293 | `BascinetVisorZizka_m01` | Saxon bascinet | 13.8 | 55013 | `ffd25d84-b190-4a79-a6ac-2d9bf7e5cab0` |
| 294 | `BascinetVisorZizkaNoVisor_m01` | Saxon bascinet | 2 | 2869 | `107b3a4b-27c4-4fb4-bb65-54b538629709` |
| 2847 | `KettleHat01_m01_E1` | Kettle hat | 6.2 | 6622 | `868581d6-f9ab-4ae2-b074-9200e7d054bd` |
| 2848 | `KettleHat01_m02_E1` | Kettle hat - dark | 5.4 | 8718 | `92e221f5-0db7-4a9f-a43f-3531d65dd222` |
| 2849 | `KettleHat01_m03_E1` | Kettle hat | 6.2 | 6645 | `5f89615b-ac64-4292-9b14-a03f6af04dd4` |
| 2850 | `KettleHat02_m01_D2` | Composite kettle hat | 6.5 | 11004 | `81e27f41-709f-47c8-96b3-8f8c9619d2fa` |
| 2851 | `KettleHat02_m02_D2` | Composite kettle hat | 6.5 | 11004 | `81bfb39f-d6da-4299-9776-98a93360dcff` |
| 2852 | `KettleHat02_m03_D2` | Composite kettle hat | 6.5 | 11004 | `2dc6bb39-979e-462d-9f65-0c9376c6426c` |
| 2853 | `KettleHat02_m04_D2` | Composite kettle hat | 6.5 | 11004 | `e4222df1-647a-4652-9be9-9a7a72230182` |
| 2854 | `KettleHat03_m01_B2_khTournament_Henry` | Tournament kettle hat | 6.5 | 6402 | `7b2fb402-c0ab-44d3-aaaa-fe1ab228e29a` |
| 2855 | `KettleHat03_m01_B3` | Spined kettle hat | 6.8 | 18711 | `25bd008c-f308-4521-8a4f-a1feeb76ea3c` |
| 2856 | `KettleHat03_m02_B3` | Spined kettle hat | 6.8 | 18711 | `713a4f57-647f-4ab6-8c6e-ad189f6f5eee` |
| 2857 | `KettleHat03_m03_B3` | Spined kettle hat | 6.8 | 18711 | `93a9a2ec-5efb-4906-bab4-21a2c5cff14a` |
| 2858 | `KettleHat04_m01_B4` | Beaked kettle hat | 7 | 24774 | `3437c616-a14c-4ba2-a382-f4898765eeff` |
| 2859 | `KettleHat04_m02_B4` | Beaked kettle hat | 7 | 24774 | `9c6aac7c-4797-4aa9-a297-939fd5e5a54e` |
| 2860 | `KettleHat04_m03_B4` | Beaked kettle hat | 7 | 24774 | `e825dd76-be87-4ff3-9fd4-a7751b5fba83` |
| 2861 | `KettleHat04_m04_B4` | Beaked kettle hat | 7 | 24774 | `bfa58512-905d-4e15-94fd-4f850e0cf434` |
| 2862 | `KettleHat04_m05_B4` | Beaked kettle hat - dark | 6.2 | 26471 | `921a52ca-5fbe-4013-aa3b-745fa11077b8` |
| 2863 | `KettleHat05_m01_D3` | Bell-shaped kettle hat | 6.9 | 17635 | `0a46c96b-11fa-4627-8a89-786a4577a441` |
| 2864 | `KettleHat05_m02_D3` | Kettle hat - dark | 6.1 | 17960 | `cc672cc6-b8a8-4604-bf1d-6f42716fab59` |
| 2865 | `KettleHat05_m03_D3` | Bell-shaped kettle hat | 6.9 | 17635 | `3014c031-09e4-4818-97cc-4620c187a2ed` |
| 2866 | `KettleHat06_m01_A4` | Tall kettle hat | 6.9 | 24456 | `8899ffd5-15ef-49a2-b042-ea2f594ebd18` |
| 2867 | `KettleHat06_m02_A4` | Tall kettle hat | 6.9 | 23971 | `3e63ce59-84b0-4220-870e-0c185892d1d4` |
| 2868 | `KettleHat06_m03_A4` | Tall kettle hat | 6.9 | 24134 | `737fcf80-5ce8-45d2-9ffe-10b952d125a0` |
| 2869 | `KettleHat06_m04_A4` | Tall kettle hat | 6.9 | 23971 | `ca772cdd-fb72-41ef-985f-46bf0aafe31f` |
| 2870 | `KettleHat06_m05_A4` | Tall kettle hat | 6.9 | 23971 | `21269950-9319-4e8e-ad07-4ef68c15a006` |
| 2871 | `KettleHat06_m06_A4` | Tall kettle hat | 6.9 | 23971 | `9e1498ec-47de-4111-b9ff-b341c72630ab` |
| 2872 | `KettleHat06_m07_A4` | Tall kettle hat | 6.9 | 24456 | `bb3a0959-dcdf-4934-85c3-7758e30f796e` |
| 2873 | `KettleHat06_m08_A4` | Tall kettle hat | 6.9 | 24456 | `dd7584e7-4cea-4895-8556-09fb7edb2e03` |
| 2874 | `KettleHat07_m01_A5` | Saxon kettle hat | 7 | 27607 | `ac551bf3-6d8a-4531-983e-1ca104b523e6` |
| 2875 | `KettleHat07_m02_A5` | Saxon kettle hat | 7 | 26584 | `4a2d123d-2725-4159-8797-81ff1f544a96` |
| 2876 | `KettleHat07_m03_A5` | Saxon kettle hat | 7 | 26584 | `47651279-5727-49bf-8f6a-8b2db5b2ad4e` |
| 2877 | `KettleHat07_m04_A5` | Saxon kettle hat | 7 | 26584 | `156a20c9-d2ff-48e3-a9cb-e3e106139042` |
| 2878 | `KettleHat07_m05_A5` | Saxon kettle hat | 7 | 26584 | `bb96f67b-c1dc-4f6c-b94e-07adbe4a8e34` |
| 2879 | `KettleHat07_m06_A5` | Saxon kettle hat | 7 | 26584 | `27491b2a-a6ed-4203-a0b1-fbec97ea7e4f` |
| 2880 | `KettleHat07_m07_A5` | Saxon kettle hat | 7 | 26584 | `ab362878-55a9-4f5c-ba6b-e6db2be3d257` |
| 2881 | `KettleHat08_m01_E3` | Saxon kettle hat | 6.7 | 14473 | `51ea4abf-bff3-4458-89f2-2ed18a4340a2` |
| 2882 | `KettleHat08_m02_E3` | Saxon kettle hat | 6.7 | 14473 | `c3bff49a-678d-4fec-8b7b-bac8ce816bc3` |
| 2883 | `KettleHat08_m03_E3` | Saxon kettle hat | 6.7 | 14473 | `15399ff2-44e1-49df-a4e3-0de8410001e9` |
| 2884 | `KettleHat09_m01_D2` | Killer's helmet | 6.5 | 11004 | `6eda54cb-f9e9-4291-a497-e183a53d259e` |
| 2885 | `KettleHat09_mPainted_D2` | Murderer’s painted helmet | 6.5 | 11683 | `cb6fc3ba-4392-4d79-9716-25c5059bb75f` |
| 3967 | `prop_BascinetVisor02_m01_helmet` | Hounskull bascinet | 22 | 278 | `7dbe147a-0462-4e3f-aca7-8ca0f8a9f6ac` |
| 3968 | `prop_BascinetVisor02_m01_visor` | Hounskull bascinet | 10 | 567 | `2b275c25-b21e-49c7-83b5-4fe4311872e0` |
| 3969 | `prop_BascinetVisor03_m01_A3_helmet` | Nuremberg bascinet | 7 | 2446 | `80ad04b1-0795-4fe3-ab2f-55be3d3fa89e` |
| 3970 | `prop_BascinetVisor03_m01_A3_visor` | Nuremberg bascinet | 31 | 195 | `a50580ff-45c9-4a30-9c4c-19f011b030b1` |
| 3971 | `prop_BascinetVisor04_m01_A5_helmet` | Noble's bascinet | 8 | 303 | `b94c9fc6-ae1f-45b5-8b27-66e053f8c9ae` |
| 3972 | `prop_BascinetVisor04_m01_A5_visor` | Noble's bascinet | 8 | 1472 | `1a03f694-b41b-4fd1-bf8f-8d99d16fad11` |
| 3973 | `prop_BascinetVisor05_m01_C4_helmet` | Italian bascinet | 31 | 241 | `b10b5cde-daa1-4b17-9317-1dd8505feab1` |
| 3974 | `prop_BascinetVisor05_m01_C4_visor` | Italian bascinet | 12 | 139 | `adf6ac2f-6400-4783-b0c7-bb3c2183afed` |
| 3983 | `prop_F_ShoesKatherine_m01` | Hounskull bascinet | 40 | 141 | `459b7af3-f4b7-4cc2-bbb2-2e6967874de4` |
| 4794 | `SkullCap01_m01_D1` | Grimey skullcap | 4.5 | 2980 | `3b0a1c2e-c631-47d6-b5f4-ac798318e86d` |
| 4795 | `SkullCap01_m02_D1` | Grimey skullcap | 4.5 | 2980 | `04de6c7a-5fd1-4a0e-83d7-18d3218a250a` |
| 4796 | `SkullCap01_m03_D1` | Grimey skullcap | 4.5 | 2980 | `c2e2bd80-d048-433a-9676-b4d26913b221` |
| 4797 | `SkullCap02_m01_C2` | Steel skullcap | 4.9 | 7355 | `cb4cc490-717b-4a56-8e73-0b2f5820e0dd` |
| 4798 | `SkullCap02_m02_C2` | Steel skullcap | 4.9 | 7355 | `02e23cb9-05aa-4aab-bbb8-4023a72e22f9` |
| 4799 | `SkullCap02_m03_C2` | Steel skullcap | 4.9 | 7355 | `d1586130-e169-40b5-957a-d4c567ebc0c9` |
| 4800 | `SkullCap03_m01_D2` | Scaled skullcap | 4.8 | 5955 | `09ba8849-d20d-48f2-b94e-c36f10abcf41` |
| 4801 | `SkullCap03_m02_D2` | Scaled skullcap | 4.8 | 5955 | `34438cdb-ef30-4b63-9878-89b7233000bd` |
| 4802 | `SkullCap03_m03_D2` | Scaled skullcap | 4.8 | 5955 | `3e41dacc-9864-4d09-ac51-ae427800c03a` |
| 4803 | `SkullCap04_m01_C3` | Rondel scullcap | 5.5 | 14569 | `634ed69a-23dd-43e2-8208-73c167490d01` |
| 4804 | `SkullCap04_m02_C3` | Rondel scullcap | 5.5 | 14569 | `7e55a88a-1a07-443e-846b-b24217c732f9` |
| 4805 | `SkullCap04_m03_C3` | Rondel scullcap | 5.5 | 14569 | `ca521570-403a-4a72-b7cf-58cca2869052` |
| 4940 | `tarasMura_invisibleHelmet` | Hounskull bascinet | 13 | 2038 | `5a8742d4-c14e-4920-847a-166238ae4c71` |
| 5025 | `test_invisible_hat` | A suspicious bag | 4 | 666666 | `c80e67a7-8dbd-4662-ae63-26a92b6ae28b` |
| 5053 | `test_stealth_hat` | A suspicious bag | 8 | 10 | `33069aba-2dcf-42c4-97ea-f9c8a6f7e06e` |
| 5562 | `zbranePanaSemina_sukHelmet` | Gnarly's old helmet | 6.2 | 7149 | `8381805b-dff0-4c7f-b67d-b928047ab75e` |
| 5589 | `ztracenaCest_jezeksHelmet` | Jezhek's helmet | 13.8 | 55013 | `f2b4ccc8-6ccb-4cb3-997a-0e7941ffd9d3` |
# Items: Herbs
> The 37 item classes of the game's Herb table: id, name, English name, weight, price and class GUID.
The game's **`Herb`** rows - 37 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 2461 | `herb_belladona` | Belladonna | 0.1 | 30 | `a314b580-bc97-4802-ae1f-8f4803e34503` |
| 2462 | `herb_chamomile` | Chamomile | 0.1 | 2 | `7259b9bc-dfae-487e-a8bb-c1f500894e0c` |
| 2465 | `herb_comfrey` | Comfrey | 0.1 | 6 | `de134f81-cfbe-422d-9105-df3e0b3b59b5` |
| 2466 | `herb_dandelion` | Dandelion | 0.1 | 2 | `a11cc7f6-b499-4003-aef1-938e87b30a2e` |
| 2467 | `herb_dried_belladona` | Dried belladonna | 0.1 | 30 | `5ee103d4-0be6-4d5b-b5a1-4449a3ca5046` |
| 2468 | `herb_dried_chamomile` | Dried chamomile | 0.1 | 2 | `a7460fa7-fe8b-4606-ab35-44379e35fe77` |
| 2469 | `herb_dried_comfrey` | Dried comfrey | 0.1 | 6 | `d6335bbe-807a-4b4b-919d-4a8b5e7cc751` |
| 2470 | `herb_dried_dandelion` | Dried dandellion | 0.1 | 2 | `5bf04beb-9527-4840-8cc1-229ed826e571` |
| 2471 | `herb_dried_eyewort` | Dried eyebright | 0.1 | 4 | `6073159c-6843-41f3-94a3-40e41617ea19` |
| 2472 | `herb_dried_feverfew` | Dried feverfew | 0.1 | 7 | `50d3be3d-eac7-4cb9-a2ef-8af0fc889199` |
| 2473 | `herb_dried_hypericum` | Dried St. John's wort | 0.1 | 6 | `e075f9eb-4de6-4ade-9b22-7c9e5174054a` |
| 2474 | `herb_dried_marigold` | Dried marigold | 0.1 | 4 | `a412425e-b683-4a95-993c-7239aada9358` |
| 2475 | `herb_dried_mint` | Dried mint | 0.1 | 8 | `fb7c15ed-89ef-418e-b091-dbd813a962d0` |
| 2476 | `herb_dried_nightshade` | Dried henbane | 0.1 | 8 | `c35230d7-008b-402d-8f17-4493dd78605e` |
| 2477 | `herb_dried_paris` | Dried herb paris | 0.1 | 4 | `60827d19-7234-4004-b7ae-a88e7f17cfd9` |
| 2478 | `herb_dried_poppy` | Dried poppy | 0.1 | 3 | `9b750e23-86ff-4b8b-ac97-9498121800c1` |
| 2479 | `herb_dried_salvia` | Dried sage | 0.1 | 8 | `2bb1c148-8ee1-42bc-8a93-8c456a57eba5` |
| 2480 | `herb_dried_thistle` | Dried thistle | 0.1 | 1 | `3ba9bd0b-3c6f-4442-8d6c-57ee5ced85eb` |
| 2481 | `herb_dried_urticaria` | Dried nettle | 0.1 | 1 | `f6899d80-8ca4-4aa9-a7e0-20aa9e45f03a` |
| 2482 | `herb_dried_valerian` | Dried valerian | 0.1 | 3 | `0146b4e9-1698-4f02-a6c4-f50e2d659540` |
| 2483 | `herb_dried_wormwood` | Dried wormwood | 0.1 | 18 | `666ccc75-e92b-44ce-98eb-f0fa9118c70c` |
| 2484 | `herb_elderberrry` | Elderberry leaves | 0.1 | 1 | `ad54c2eb-0c07-48d9-b933-f7b15727b294` |
| 2485 | `herb_eyewort` | Eyebright | 0.1 | 4 | `0290b689-c01c-480f-b121-bed71ad1f5e0` |
| 2486 | `herb_feverfew` | Feverfew | 0.1 | 7 | `a695d6b3-541d-4c46-93a3-a1955d5bd919` |
| 2487 | `herb_ginger` | Ginger | 0.1 | 80 | `04dc56da-9f2e-4741-93a5-aa6ec3a7cece` |
| 2488 | `herb_hypericum` | St. John's wort | 0.1 | 6 | `9b771c16-c0b1-438c-aeda-8c4d3ce28465` |
| 2489 | `herb_marigold` | Marigold | 0.1 | 4 | `bf7b7c2a-017b-4c7b-b9aa-0c4e29ce5913` |
| 2490 | `herb_mint` | Mint | 0.1 | 8 | `7da04bba-0564-42da-bcf1-9a2fc5faf025` |
| 2491 | `herb_nightshade` | Henbane | 0.1 | 8 | `b5587dd4-f7d8-4378-9903-7626a227ca0f` |
| 2492 | `herb_paris` | Herb Paris | 0.1 | 4 | `2ddf6256-0662-44c4-99fe-f713b6d900ea` |
| 2493 | `herb_poppy` | Poppy | 0.1 | 3 | `05bef17b-ddeb-426d-aa53-52ff6d4f521e` |
| 2494 | `herb_salvia` | Sage | 0.1 | 8 | `b9de1d84-a0c1-4b81-9f60-8d7fbb3cb9d4` |
| 2495 | `herb_thistle` | Thistle | 0.1 | 1 | `a364b800-c1ca-4bd1-92cb-ae1689bfa7ea` |
| 2496 | `herb_urticaria` | Nettle | 0.1 | 1 | `5e9b4fa1-aafa-4352-b5d6-58df2c263caa` |
| 2497 | `herb_valerian` | Valerian | 0.1 | 3 | `27b8a61f-36e4-4101-9be5-1b814d43bd8f` |
| 2498 | `herb_weed` | Weeds | 0.1 | 1 | `3373a604-a2fd-4af0-a5e8-760e1a9893f9` |
| 2499 | `herb_wormwood` | Wormwood | 0.1 | 18 | `4d9e61aa-3f90-4e5d-b836-f9e158196438` |
# Items: Hoods
> The 150 item classes of the game's Hood table: id, name, English name, weight, price and class GUID.
The game's **`Hood`** rows - 150 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 1528 | `combattest_Hood01_m04_D` | A suspicious bag | 2.5 | 1 | `c9f71043-808d-4df5-bfe0-93e5cb31e840` |
| 2511 | `Hood01_m01_D` | Simple hood | 0.7 | 693 | `44a58453-2950-d995-4ba6-a3b72efd5ba0` |
| 2512 | `Hood01_m02_D` | Simple hood | 0.7 | 456 | `fbc58e41-81e9-4447-8a86-e9d236b9dad5` |
| 2513 | `Hood01_m03_D` | Simple hood | 0.7 | 456 | `97318a25-2aa3-458b-b4f0-7f265fba32a0` |
| 2514 | `Hood01_m04_D` | Simple hood | 0.7 | 456 | `e5e650f0-dc71-48ff-afaa-b61c7770284e` |
| 2515 | `Hood01_m05_D` | Simple hood | 0.7 | 693 | `49cc7204-9567-4562-b0eb-7ba32945536f` |
| 2516 | `Hood01_m06_D` | Simple hood | 0.7 | 693 | `44e538cc-56f9-4027-a0ff-dbb96004d0e3` |
| 2517 | `Hood01_m07_D` | Simple hood | 0.7 | 693 | `892f8540-77ed-4f33-9bf5-a8c2b17df4bf` |
| 2518 | `Hood01_m08_D` | Wanderer's hood | 0.7 | 885 | `bf354b49-4c4b-4548-a851-44e4e15d3cd2` |
| 2519 | `Hood01_m09_D` | Simple hood | 0.7 | 693 | `880808bf-82e3-4a4b-8a90-b30ad087ad21` |
| 2520 | `Hood01_m10_D` | Simple hood | 0.7 | 693 | `7834651d-efed-4730-8289-2fcc82556aba` |
| 2521 | `Hood01_m11_D` | Simple hood | 0.7 | 693 | `cf82e38f-c905-457f-83e5-3571833f7425` |
| 2522 | `Hood01_mMonks_D` | Monk's hood | 0.7 | 693 | `3ffaa661-4be5-4e55-b364-b7dfed273bcb` |
| 2523 | `Hood01_mTwitch_D` | Cutpurse's hood | 0.7 | 1754 | `d172564b-6b94-4df5-93df-84093a657f42` |
| 2524 | `Hood02_m01_C` | Hemmed hood | 0.7 | 1478 | `fbadc26b-dc70-4ad3-8b15-c1c1e7c159d6` |
| 2525 | `Hood02_m02_C` | Hemmed hood | 0.7 | 1056 | `6aabc182-4cc0-4095-a134-a2b23eafc5c6` |
| 2526 | `Hood02_m03_C` | Hemmed hood | 0.7 | 1478 | `34e5b26c-272b-4af5-90de-89895b362fb0` |
| 2527 | `Hood02_m04_C` | Hemmed hood | 0.7 | 1337 | `7f607c14-7345-4234-abfb-563d4845a921` |
| 2528 | `Hood02_m05_C` | Hemmed hood | 0.7 | 1478 | `ac6471e4-5983-4c47-a12d-66d96bab863a` |
| 2529 | `Hood02_m06_C` | Hemmed hood | 0.7 | 1056 | `342d11fd-a33c-46b0-91e0-0c1d44d3d24d` |
| 2530 | `Hood02_m07_C` | Hemmed hood | 0.7 | 1337 | `47752a74-8dd5-4019-9050-ce836127474d` |
| 2531 | `Hood02_m08_C` | Hemmed hood | 0.7 | 1056 | `c0b49469-8fba-4b1d-8fb3-985188eda6a4` |
| 2532 | `Hood02_m09_C` | Courtier's hood | 0.7 | 2152 | `069c6b71-26c8-4275-8642-c796f6eea0ea` |
| 2533 | `Hood02_m10_C` | Hemmed hood | 0.7 | 1478 | `8eeb5d63-5d50-421e-9a3f-a006a319a5e1` |
| 2534 | `Hood03_m01_A` | Brocade hood | 0.7 | 5794 | `7aae14d0-e0da-489e-9424-22ec626965e1` |
| 2535 | `Hood03_m02_A` | Brocade hood | 0.7 | 4968 | `1d469cea-cae2-4e98-8260-64cd752eb699` |
| 2536 | `Hood03_m03_A` | Brocade hood | 0.7 | 5794 | `046c9155-8127-4247-831b-f1f6123a303e` |
| 2537 | `Hood03_m04_A` | Brocade hood | 0.7 | 5794 | `f6cd8a45-3b9f-4fb9-87cf-71722127646b` |
| 2538 | `Hood03_m05_A` | Brocade hood | 0.7 | 5794 | `051bd377-e133-48e6-a12c-3a77e90de633` |
| 2539 | `Hood03_m06_A` | Brocade hood | 0.7 | 5794 | `352cb5bf-a09c-41c9-b190-3c96f9cd6d49` |
| 2540 | `Hood03_m07_A` | Brocade hood | 0.7 | 5794 | `ef6b9ce0-6350-44f9-9303-18386ef312c4` |
| 2541 | `Hood03_m08_A` | Brocade hood | 0.7 | 5794 | `4f668daf-d70c-418c-8617-5c8522fd8bbf` |
| 2542 | `Hood03_m09_A` | Brocade hood | 0.7 | 5794 | `3694c855-086f-4ce4-b402-a97ecce944f9` |
| 2543 | `Hood03_m10_A` | Brocade hood | 0.7 | 4968 | `d08d1127-b749-47b5-9f53-7b466060b0f4` |
| 2544 | `Hood03_mPisek_A` | Brocade hood | 0.7 | 4968 | `af34b82d-7459-49f4-8fe4-8480f254ba5e` |
| 2545 | `Hood04_m01_E` | Beggar's hood | 0.7 | 49 | `2cfb13ee-d15c-48d3-84e0-fed50436c49f` |
| 2546 | `Hood04_m02_E` | Beggar's hood | 0.7 | 167 | `0540e326-562b-41c7-9c8a-20ecce2aa17c` |
| 2547 | `Hood04_m03_E` | Beggar's hood | 0.7 | 49 | `347f3a13-d4d4-44ae-9ef6-270f6e15087b` |
| 2548 | `Hood04_m04_E` | Beggar's hood | 0.7 | 49 | `2ccaa0b1-46df-4879-b88e-b779670ca4eb` |
| 2549 | `Hood04_m05_E` | Beggar's hood | 0.7 | 49 | `992f2afc-ee61-4787-a359-8c6adbfa7c40` |
| 2550 | `Hood04_m06_E` | Beggar's hood | 0.7 | 129 | `fc214bc3-f5cb-402a-a2e6-ba27622d9eab` |
| 2551 | `Hood04_m07_E` | Beggar's hood | 0.7 | 167 | `c319f421-26ca-4e89-8356-98c4e54fe53e` |
| 2552 | `Hood04_m08_E` | Beggar's hood | 0.7 | 167 | `81804c8b-379a-474e-b6fc-a8cc79252ec8` |
| 2553 | `Hood04_m09_E` | Beggar's hood | 0.7 | 167 | `0fc10781-6c9b-436a-92a1-2e1d97efc8f2` |
| 2554 | `Hood04_m10_E` | Beggar's hood | 0.7 | 49 | `80f33a28-4368-4672-a3d3-5d3d39cb5f86` |
| 2555 | `Hood05_m01_B` | Burgher's hood | 0.7 | 4536 | `e2ee7991-b9e1-430a-b206-0630fb1821ec` |
| 2556 | `Hood05_m02_B` | Burgher's hood | 0.7 | 4094 | `26c8d85e-931b-43f3-8085-ba4e99e883b6` |
| 2557 | `Hood05_m03_B` | Burgher's hood | 0.7 | 4094 | `461381dc-2805-48be-b238-f54b35386da5` |
| 2558 | `Hood05_m04_B` | Burgher's hood | 0.7 | 2294 | `a2dabe71-e0a3-45cb-8f9f-7aca2f233c6b` |
| 2559 | `Hood05_m05_B` | Burgher's hood | 0.7 | 4536 | `417d64bd-3df0-4d98-9df1-bda691f36fc8` |
| 2560 | `Hood05_m06_B` | Burgher's hood | 0.7 | 4536 | `d65070b3-b90f-4f9e-a420-a00ec2932a76` |
| 2561 | `Hood05_m07_B` | Burgher's hood | 0.7 | 4094 | `7b0c9bba-19d9-463b-8831-b27431060ed1` |
| 2562 | `Hood05_m08_B` | Burgher's hood | 0.7 | 2766 | `d85f47dc-ea6c-474c-be7b-db708ac4f3df` |
| 2563 | `Hood06_m01_B` | Embroidered hood | 0.7 | 2286 | `1ad779a6-017a-42eb-8374-7636953fc684` |
| 2564 | `Hood06_m02_B` | Embroidered hood | 0.7 | 2286 | `d49db0df-8145-4473-be44-3cdd99d75630` |
| 2565 | `Hood06_m03_B` | Embroidered hood | 0.7 | 2286 | `c621d536-6e38-43fc-843d-ae19ae0b1e42` |
| 2566 | `Hood06_m04_B` | Embroidered hood | 0.7 | 1672 | `b990b503-3f71-4b48-a29d-dd2c85d654e4` |
| 2567 | `Hood06_m05_B` | Embroidered hood | 0.7 | 1672 | `c9dbdf30-c6c3-45e4-929a-4201024f38e3` |
| 2568 | `Hood06_m06_B` | Embroidered hood | 0.7 | 2286 | `dd66713b-13bf-4d43-ac25-76294ab9e6ef` |
| 2569 | `Hood06_m07_B` | Embroidered hood | 0.7 | 2286 | `e964e353-cb58-4137-8354-62e0cf7e57d0` |
| 2570 | `Hood06_m08_B` | Embroidered hood | 0.7 | 2286 | `5f5e8608-0395-45a1-97da-a14ef992b89b` |
| 2571 | `Hood06_m09_B` | Embroidered hood | 0.7 | 2286 | `feb2c247-611c-412e-8acb-c85f027f4fa3` |
| 2572 | `Hood06_m10_B` | Embroidered hood | 0.7 | 2082 | `f3796ec4-1884-4926-aebb-9ddda5bf14a7` |
| 2573 | `Hood06_m11_B` | Embroidered hood | 0.7 | 1672 | `b7096cc8-de63-4b9b-a356-4af3ed1700d5` |
| 2574 | `Hood06_mIstvan` | Embroidered hood | 6.1 | 2561 | `18aa1145-fc39-4921-a00f-9b98a9df06c0` |
| 2575 | `Hood06_mRadzig` | Embroidered hood | 0.7 | 1678 | `1cae111a-6457-4874-b43f-3b28ce4ac480` |
| 2576 | `Hood07_m01_C` | Wanderer's hood | 0.7 | 864 | `fa938686-e8b9-44ea-8e5d-bf2a451fbc48` |
| 2577 | `Hood07_m02_C` | Pickpocket's hood | 0.7 | 2014 | `f97d02a4-f0ce-4ddc-888a-e6c639ab8257` |
| 2578 | `Hood07_m03_C` | Wanderer's hood | 0.7 | 1099 | `e860ce65-083f-4afa-971a-bf951b8083cc` |
| 2579 | `Hood07_m04_C` | Wanderer's hood | 0.7 | 1625 | `0027df44-5f9c-4c92-9f81-a83ca124c4a8` |
| 2580 | `Hood07_m05_C` | Wanderer's hood | 0.7 | 864 | `9b4caede-3eee-4ffb-b73b-951c9905e7bd` |
| 2581 | `Hood07_m06_C` | Wanderer's hood | 0.7 | 1625 | `b24567ff-015a-4771-802e-629dc5d2d077` |
| 2582 | `Hood07_m07_C` | Wanderer's hood | 0.7 | 1218 | `cd7825a2-4948-473c-a854-fb04b86ba862` |
| 2583 | `Hood07_m08_C` | Wanderer's hood | 0.7 | 1625 | `187e8643-d278-46b0-a1fc-75a13aedf85c` |
| 2584 | `Hood08_m01_D` | Miner's hood | 0.7 | 456 | `2a7b98a7-254f-4d9a-bcf6-520ca577c97d` |
| 2585 | `Hood08_m02_D` | Miner's hood | 0.7 | 456 | `b8df2253-e5c8-4e6c-9303-b4bc84192e67` |
| 2586 | `Hood08_m03_D` | Miner's hood | 0.7 | 456 | `e14b0d94-588b-4861-967d-625d3906afcb` |
| 2587 | `Hood08_m04_D` | Miner's hood | 0.7 | 693 | `6722f46e-b107-43d7-98ed-3008c6d9e277` |
| 2588 | `Hood08_m05_D` | Miner's hood | 0.7 | 456 | `b2fb7ba0-84c9-4f91-8331-bd7ee6738320` |
| 2589 | `Hood08_m06_D` | Miner's hood | 0.7 | 693 | `df13c511-0841-4563-928f-82920663aace` |
| 2590 | `Hood08_m07_D` | Miner's hood | 0.7 | 614 | `76c4e088-94c3-4d66-9360-8e69eea6640d` |
| 2591 | `Hood08_m08_D` | Miner's hood | 0.7 | 693 | `1c1379fb-518c-485b-8fc5-8868939eba1e` |
| 2592 | `Hood08_m09_D` | Miner's hood | 0.7 | 456 | `f9236ce9-77b1-4209-950d-51e86ddf1be1` |
| 2593 | `Hood08_m10_D` | Miner's hood | 0.7 | 456 | `7202b003-6d27-47f9-a7e5-4dee6d0abeed` |
| 2594 | `Hood08_mdrowner` | Drowner's hood | 0.7 | 49 | `f352e55a-2a29-4469-b580-70d9c73ebbbf` |
| 2595 | `Hood08_mmushrooms` | Passionate mushroom-picker's hood | 0.7 | 819 | `378397fe-1b00-4024-bfb9-b3cbb0cee55b` |
| 2596 | `Hood09_m01_C` | Cleric's hood | 0.7 | 864 | `7b8050dd-265a-4cd5-aa17-de869950a3dc` |
| 2597 | `Hood09_m02_C` | Cleric's hood | 0.7 | 1099 | `aba44122-f78a-4e89-a0f8-64f5752d77db` |
| 2598 | `Hood09_m03_C` | Thief's hood | 0.7 | 1950 | `dc8fb35d-90e6-4cfa-9c1a-a462e43b8c6f` |
| 2599 | `Hood09_m04_C` | Cleric's hood | 0.7 | 864 | `0973959e-9c95-477a-bbfc-31de29a429e9` |
| 2600 | `Hood09_m05_C` | Cleric's hood | 0.7 | 1218 | `7f0d6ed2-42eb-4556-9d66-97c50fe145d6` |
| 2601 | `Hood09_m06_C` | Cleric's hood | 0.7 | 1218 | `98856c10-14ad-4f68-a4c2-136b3f8df156` |
| 2602 | `Hood09_m07_C` | Cleric's hood | 0.7 | 864 | `37ff1e91-4014-451b-9de6-bee40201ecb2` |
| 2603 | `Hood09_m08_C` | Cleric's hood | 0.7 | 1218 | `169dee2d-dbd9-4d2e-9009-b0d64b3f49ce` |
| 2604 | `Hood09_m09_C` | Cleric's hood | 0.7 | 1218 | `53760766-3d63-477a-b3e6-117a62cf115d` |
| 2605 | `Hood09_m10_C` | Cleric's hood | 0.7 | 1218 | `c91781ea-fc5b-4125-83db-04e460216c89` |
| 2606 | `Hood09_mKrizovnik01_C` | Knights of the Cross hood | 0.7 | 1099 | `8963e3d4-16ab-4aab-8eb1-2a1953267565` |
| 2607 | `Hood09_mKrizovnik02_C` | Knights of the Cross hood | 0.7 | 1099 | `1a98940f-9da0-44f5-8061-2a78cf6ec742` |
| 2608 | `Hood09_mLibrarianSack_C` | Cleric's hood | 0.7 | 864 | `86328fe2-4b9c-4b3d-b407-4776bd7c687e` |
| 2609 | `Hood09_mMonks_C` | Monk's hood | 0.7 | 1218 | `9072303b-5903-41fd-a36b-a22354354fab` |
| 2610 | `Hood11_m01_C` | Servant's hood | 0.7 | 1165 | `78c3bff8-c964-439c-a0b8-053497ac80e7` |
| 2611 | `Hood11_m02_C` | Servant's hood | 0.7 | 1218 | `40328711-ad16-4dd6-9823-456e02a1e04a` |
| 2612 | `Hood11_m03_C` | Servant's hood | 0.7 | 1218 | `72b7892f-4a47-4dc9-ac76-4601bc717294` |
| 2613 | `Hood11_m04_C` | Servant's hood | 0.7 | 1218 | `036b0d6e-b2bb-4f7f-a185-0c379963f24a` |
| 2614 | `Hood11_m05_C` | Servant's hood | 0.7 | 1218 | `27fa0d92-44a7-4d13-a065-68f8b15232b3` |
| 2615 | `Hood11_m06_C` | Servant's hood | 0.7 | 864 | `53662240-ec45-4f1b-9854-0b1c0018ccc3` |
| 2616 | `Hood11_m07_C` | Servant's hood | 0.7 | 1218 | `d4df1285-8356-4f4b-946b-230b9743b956` |
| 2617 | `Hood11_m08_C` | Servant's hood | 0.7 | 1218 | `dab9416c-92e8-42bc-abc1-bdf37a094a42` |
| 2618 | `Hood11_m09_C` | Servant's hood | 0.7 | 1218 | `200e4351-ee97-429f-9702-60588a65e2de` |
| 2619 | `Hood11_m10_C` | Servant's hood | 0.7 | 1218 | `c840ec26-0641-4193-a27d-ad8f74193cae` |
| 2620 | `Hood11_m11_C` | Servant's hood | 0.7 | 1218 | `27d88a24-6a83-4fc3-bd2c-c5f5396b1e0b` |
| 2621 | `Hood11_m12_C` | Servant's hood | 0.7 | 1099 | `ba9c9623-40fc-49ee-8eee-5f3ba2b93e74` |
| 2622 | `Hood11_mBergov_C` | Servant's hood | 0.7 | 1471 | `de7cb8ae-181a-4f31-95b5-2da27e721b51` |
| 2623 | `Hood11_mDvojityAgentJan_C` | Servant's hood | 0.7 | 1218 | `ddc174dc-5b3a-43a2-9afe-6ad4097bc296` |
| 2624 | `Hood11_mKuttenberg_C` | Servant's hood | 0.7 | 1625 | `ab2e5973-99f4-47b2-b7e3-d9a5ce0d4174` |
| 2625 | `Hood11_mMagyar_C` | Servant's hood | 0.7 | 1625 | `c9fc01cb-109c-478b-bd16-8f46bb902f65` |
| 2626 | `Hood11_mMonks_C` | Monk's hood | 0.7 | 1165 | `ee5aea5d-cf65-4807-b263-565970ed6a99` |
| 2627 | `Hood11_mNebak_C` | Servant's hood | 0.7 | 1625 | `10ebc91c-0b65-4997-8a2d-7f57e6105d38` |
| 2628 | `Hood11_mPapal_C` | Servant's hood | 0.7 | 1471 | `cbfbdde7-bf91-4cea-a890-1a1cdedc872e` |
| 2629 | `Hood11_mPisek_C` | Servant's hood | 0.7 | 1625 | `f6e2e337-d781-4aca-b2e5-6ee8affbd5d7` |
| 2630 | `Hood11_mPrague01` | Servant's hood | 0.8 | 302 | `f65b9581-c620-4030-abd0-95af61c55c7a` |
| 2631 | `Hood11_mPrague02` | Servant's hood | 0.8 | 167 | `7826bc93-2e22-430a-8e8c-0224f2a7f503` |
| 2632 | `Hood11_mSemin02_C` | Servant's hood | 0.7 | 1218 | `745cdd86-68e3-4753-a337-c815df38ed03` |
| 2633 | `Hood11_mSemin_C` | Servant's hood | 0.7 | 1625 | `bed0389b-0962-419e-90c6-dea318abc947` |
| 2634 | `Hood11_mTeuton` | Teutonic hood | 0.7 | 1165 | `7e5c69a4-3858-47cb-8746-a8573fd167cc` |
| 2635 | `Hood11_mVavak_C` | Servant's hood | 0.7 | 1625 | `eaf7dcf1-f749-40a2-ab69-4d1b3c9c742f` |
| 2636 | `Hood12_m01_A` | Noble's hood | 0.7 | 5711 | `dc973a6e-04d3-4730-8207-bd31748cae12` |
| 2637 | `Hood12_m02_A` | Noble's hood | 0.7 | 5711 | `11e43918-e604-4ae8-b010-76aadae3865b` |
| 2638 | `Hood12_m03_A` | Noble's hood | 0.7 | 5711 | `72f8e3ae-4825-4a2f-a8ac-c8d832fa5bcb` |
| 2639 | `Hood12_m04_A` | Noble's hood | 0.7 | 5711 | `385a7261-fdc8-42d8-9602-40dc24658728` |
| 2640 | `Hood12_m05_A` | Noble's hood | 0.7 | 5711 | `2efa4201-d81d-4066-ad8e-9cdfb73aa767` |
| 2641 | `Hood12_m06_A` | Noble's hood | 0.7 | 4223 | `14a1d2a9-95e0-48b0-bf16-8d41ef6a1088` |
| 2642 | `Hood12_m07_A` | Noble's hood | 0.7 | 5711 | `31726b70-4c84-431c-960a-a2751c65138b` |
| 2643 | `Hood12_m08_A` | Noble's hood | 0.7 | 5711 | `e6a9f198-017c-430c-bc13-ba95aba8403b` |
| 2644 | `Hood12_m09_A` | Noble's hood | 0.7 | 4761 | `2af03fae-82c8-41b7-a9bc-ace113a171ec` |
| 2645 | `Hood12_m10_A` | Noble's hood | 0.7 | 4761 | `3d64562f-8f1f-418f-a332-c2c735522c91` |
| 2646 | `Hood13_m01_B` | Master huntsman's hood | 0.7 | 1678 | `3a55c3e6-fda4-4ef0-b2f4-920f91b1a4c5` |
| 2647 | `Hood_placeholder` | A suspicious bag | 1 | 710 | `49d8927c-4c4d-d1cc-2374-34c23669eca9` |
| 2648 | `HoodAbbot_m01` | Abbot's hood | 0.7 | 2268 | `67704b46-4af7-49bd-bbf4-727214982da3` |
| 2649 | `HoodAlbik_m01` | Abbot's hood | 0.7 | 2268 | `4bda7856-ec3a-41f2-a4b3-337c5c3b8b97` |
| 2650 | `HoodCapon_m01` | Capon's hood | 0.7 | 2268 | `1a642252-6f9a-43fa-8b8f-2327f855f956` |
| 2651 | `HoodGodwin_m01` | Black hood | 0.7 | 2268 | `e935c1d0-d962-4887-8468-ddc65314e41b` |
| 2652 | `HoodGodwin_mNoBags` | Black hood | 0.7 | 2268 | `e6b10069-429b-47ec-be14-35f8c47e0a42` |
| 2653 | `HoodHuntingCapon_m01` | Capon's hood | 0.7 | 2268 | `3f1f67cd-a254-416f-ad6a-4e2a08a98583` |
| 2654 | `HoodLegate_m01` | Legate's hood | 0.7 | 2268 | `2f75026b-83e5-4d0d-af27-ba31ff9d6c3a` |
| 2655 | `HoodRabi_m01` | Rabbi's hood | 0.7 | 2268 | `03221d70-990f-4380-bf67-f511236c72db` |
| 2656 | `HoodSemin_m01` | Semine's hood | 0.7 | 2268 | `91184dfb-484d-4f4d-929f-414bdcca9c7a` |
| 2657 | `HoodSigismund_m01` | Sigismund's hood | 0.7 | 2268 | `b6374bb5-6426-41a6-a0ab-c53e132eef28` |
| 3742 | `PlagueSuit_m01` | Plague hood | 0.7 | 1754 | `d3127ecf-2a19-4f37-bf0a-7131cd857b89` |
| 5018 | `test_Hood02_m01_C` | A suspicious bag | 22 | 1 | `fbadc26b-0000-4ad3-8b15-c1c1e7c159d6` |
# Items: Item aliases
> The 51 item classes of the game's ItemAlias table: id, name, English name, weight, price and class GUID.
The game's **`ItemAlias`** rows - 51 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 17 | `alias_bazilisciVejce_feather` | Rooster feathers | 0 | 0 | `9e4d7348-77d2-42ac-926e-88bf505c4f56` |
| 18 | `alias_dlc2_familySwordBroad` | Heirloom sword | 2.8 | 0 | `9a8846cd-bf29-4fe7-af2c-9292fef05cba` |
| 19 | `alias_dlc2_zlodejskeZakazky_godOmen` | Sign from God | 0 | 0 | `d241f250-ed71-4ff7-9f4a-0aa360ce2141` |
| 20 | `alias_hostinaProChude_sigismundsMeats` | Sigismund's sausage | 0 | 0 | `73b693a0-8dda-456e-8590-a2f291a1bccc` |
| 21 | `alias_loot_aPinchOfHappiness` | A pinch of happiness | 0.5 | 0 | `3fc9d5f4-1e24-4d52-b4ea-64d79565d973` |
| 22 | `alias_loot_bonelessTrout` | Deboned trout | 1 | 0 | `ac508737-02c0-4780-a226-32975ed1b2f4` |
| 23 | `alias_loot_brenekHuntingSword` | Bohumir's hunting sword | 2 | 0 | `127b31c2-a47a-45d7-927b-94eadd40a61c` |
| 24 | `alias_loot_catherineLovePotion` | Katherine's love potion | 1 | 0 | `cbac5af5-ce2a-43fc-acf9-e979fda27915` |
| 25 | `alias_loot_daggerOfAstarte` | Dagger of Astarte | 0.8 | 0 | `7b31ad0f-1443-4421-a43f-f380dde5bdf0` |
| 26 | `alias_loot_devilDroppings` | Demon droppings | 0.4 | 0 | `3269615a-4b22-4f39-8f1f-e33bb44ea1a7` |
| 27 | `alias_loot_friedSnow` | Fried snow | 0.5 | 0 | `2ebd6f82-4495-47df-8079-d79ee1470cd2` |
| 28 | `alias_loot_hoochOfPach` | Bach moonshine | 0.5 | 0 | `6a5aba05-bbb5-45f6-83a8-c45128c586c5` |
| 29 | `alias_loot_iasianCharcoal` | Karachin's ashes | 0.4 | 0 | `fa40b3bc-14e0-40c9-8cc2-f243c3b409ba` |
| 30 | `alias_loot_jitkasTurnip` | Lady Jitka's kohlrabi | 0.5 | 0 | `d192726b-1170-47fb-aa1a-300b9aad7d4a` |
| 31 | `alias_loot_lemingerSpectacles` | Leminger's spectacles | 0.4 | 0 | `e485dff2-7673-4b2b-9f5e-770b5bbcd800` |
| 32 | `alias_loot_lorecChalice` | Italian chalice | 2 | 0 | `469fdbf9-4e6a-4ab6-b52b-b7ffb4241aa8` |
| 33 | `alias_loot_lorecHerbicide` | Vineyard herbicide | 1 | 0 | `b7ff26f3-24a4-46c2-97b8-655da1827190` |
| 34 | `alias_loot_lovareCharcoal` | Zamur's ashes | 0.4 | 0 | `7965ba03-592c-4255-8c6f-cdc989b319db` |
| 35 | `alias_loot_occamsRazor` | Ockham's Razor | 0.8 | 0 | `b24cef83-a8d7-4d2a-9ae0-079beccfa9df` |
| 36 | `alias_loot_pesekPotion` | Peshek's potion | 0.5 | 0 | `556de5e7-350a-4b85-963d-6d6753f0ced9` |
| 37 | `alias_loot_potionForOto` | Potion for little Otto | 0.5 | 0 | `25893637-c2a6-45c1-8de3-0371dd49f7bb` |
| 38 | `alias_loot_waterOfPach` | Vrchlitz water | 0.2 | 0 | `b5704a7a-2cd7-41c0-9705-4df6ca723d21` |
| 39 | `alias_loot_zizkaChalice` | Zizka's chalice | 2 | 0 | `205aec51-1cde-4618-95c2-84c4ba8ab83d` |
| 40 | `alias_nakaza_cowhide` | Bovine leather | 0 | 0 | `a4d53751-a80a-4060-815c-4e667150c762` |
| 41 | `alias_pomatenec_wolfHeart` | Wolf heart | 0.2 | 0 | `de9d23cb-99f9-4ff8-bbce-37def749dc91` |
| 42 | `alias_poustevnik_seminSword_nonQuestVar` | Sword for young Lord Semine | 0 | 0 | `ef6eb320-91c3-4f8e-a5c5-3640fe19a0da` |
| 43 | `alias_poustevnik_seminSword_questVar` | Sword for young Lord Semine | 0 | 0 | `7857db34-2407-4585-a4a7-d7546be3cf81` |
| 44 | `alias_pracharna_cooksRemedy` | Bertha's potion | 0 | 0 | `d6ead753-0660-491a-b093-8654290841cd` |
| 45 | `alias_prepadeni_brigandine` | Milanese brigandine | 0 | 0 | `a4d57e1d-217a-4f02-84a2-4052b4cf150a` |
| 46 | `alias_prepadeni_brigandineArm` | Silesian brigandine sleeves | 0 | 0 | `33d169b5-b511-4149-ae1b-96d964ddd15a` |
| 47 | `alias_prepadeni_coifSmall` | Padded coif | 0 | 0 | `4ee86b89-aa4e-49b5-99a6-60617996ac19` |
| 48 | `alias_prepadeni_collarChain` | Mail collar | 0 | 0 | `a8d552a9-3f9b-4e4e-b032-7328bdac5d96` |
| 49 | `alias_prepadeni_gambesonLong` | Long gambeson | 0 | 0 | `ab5b3ad5-5bb5-4fe9-a5bb-8ee1c4f713b5` |
| 50 | `alias_prepadeni_gauntlets` | Noble's gauntlets | 0 | 0 | `cb8ab8cb-949a-4e9f-910a-0a7dfd5b9cac` |
| 51 | `alias_prepadeni_hoseJoined` | Gartered hose | 0 | 0 | `292a24a8-556e-43ff-ac73-ddef833399fb` |
| 52 | `alias_prepadeni_kettleHat` | Composite kettle hat | 0 | 0 | `391b0fdc-b7a2-443a-9dc6-3c51cd11e3f1` |
| 53 | `alias_prepadeni_legsPadded` | Quilted hose | 0 | 0 | `b862b26e-0ec4-4932-89ca-e99c05c970e1` |
| 54 | `alias_prepadeni_legsPlate` | Milanese plate leg armour | 0 | 0 | `5bf2deb5-22b7-4d21-9f37-7892205fd204` |
| 55 | `alias_prepadeni_longSword` | Training longsword | 0 | 0 | `c86aa334-66e2-43f4-8fbf-1f65bdc09dbe` |
| 56 | `alias_prepadeni_mailLong` | Hauberk long | 0 | 0 | `45a8290d-4491-43bc-8d2e-c5962b94ed50` |
| 57 | `alias_prepadeni_spurs` | Rowel spurs | 0 | 0 | `cd7ac55b-4bda-43d6-a58d-331a30733eda` |
| 58 | `alias_prepadeniVlasskehoDvora_chefsSpecialty` | Cook's specialty | 0 | 0 | `c1dd4160-f2bd-4451-87c0-05ccdcf1be0f` |
| 59 | `alias_sermiry_longSwordGuild` | Guild Longsword | 0 | 0 | `2f13a4b9-22c1-40b3-95df-a1436eb07577` |
| 60 | `alias_spravedlnost_poppyCake` | Poppy seed kolach | 0.2 | 0 | `5e90d505-f647-4fbb-9a82-a9bfa1633e19` |
| 61 | `alias_stealthMiseZaJindru_aulitzArmor` | Padded coif | 0 | 0 | `7d45902e-57ea-43e7-96bc-71dc79caedae` |
| 62 | `alias_svatyne_grandmasDress` | Kvyetoslava's dress | 2.5 | 0 | `52049b97-9da8-4a01-b34c-03c09679e7b1` |
| 63 | `alias_utokNebakov_ptacekWine` | Wine for Capon | 0 | 0 | `08c35fd2-9f7d-427e-bbfa-007d51773940` |
| 64 | `alias_vrah_osinasBestSword` | Osina's best sword | 2 | 0 | `65b407d7-ae86-4b69-b65d-883e7ca1d000` |
| 65 | `alias_zachrana_huntingSword` | Hunting sword | 2.9 | 0 | `b867dd0e-1bfe-40e9-b114-4b126a3ff1b0` |
| 5004 | `test_Cap06_m01_C_quest` | Cuman leather hat | 0 | 0 | `083f9cc6-fd41-4c4c-0010-cc63d7a1bc1b` |
| 5006 | `test_Coat02_m02_D_quest` | Coat of arms surcoat | 0 | 0 | `26e12ed8-bcde-46d0-9c77-72dff2ad5606` |
# Items: Keys
> The 2 item classes of the game's Key table: id, name, English name, weight, price and class GUID.
The game's **`Key`** rows - 2 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 2887 | `key_home` | Door and chest keys | 0 | 0 | `494ed6dc-51b9-444f-8055-3116e08a5329` |
| 2888 | `key_shop` | Keys to the shop | 0 | 0 | `bd20bdb4-4c50-4610-b023-30ceac635e7a` |
# Items: Key rings
> The 1 item classes of the game's KeyRing table: id, name, English name, weight, price and class GUID.
The game's **`KeyRing`** rows - 1 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 2889 | `keyring` | Bunch of keys | 0 | 0 | `b54eaa25-f0e9-425b-8b29-1fb14a71de56` |
# Items: Melee weapons and shields
> The 665 item classes of the game's MeleeWeapon table: id, name, English name, weight, price and class GUID.
The game's **`MeleeWeapon`** rows - 665 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 148 | `artefakt_shortswordBavor` | Boleslav Bavor's sword | 3.3 | 12529 | `7ac376b2-e38e-4d18-8661-7082351ebca2` |
| 149 | `artefakt_shortswordBavor_broken` | Boleslav Bavor's broken sword | 1 | 35 | `12e2a4bd-2eec-42f7-a75f-5122c7806d63` |
| 150 | `artefakt_shortswordBavor_reforged` | Boleslav Bavor's reforged sword | 3.2 | 17932 | `2c26374a-9a9a-43c6-af81-ce5abf088477` |
| 151 | `autotest_halberd` | A suspicious bag | 5 | 666 | `bd3b7884-dca8-41f8-8ea8-393a11474554` |
| 154 | `axeBattle01` | Bearded axe | 5.3 | 4846 | `53612e76-76fd-4dca-84b6-7905b986dc3b` |
| 155 | `axeBattle01_broken` | Weapon stub | 1 | 1 | `e13a570f-03e1-4203-9338-d9823aa20b35` |
| 156 | `axeBattle02` | Broad axe | 8.7 | 10726 | `bd74ce18-2623-48ba-a1a1-c9b09bbb2827` |
| 157 | `axeBattle02_broken` | Weapon stub | 1 | 1 | `bd4caa9c-c51c-4aff-8cd9-d2ef5905b34c` |
| 158 | `axeBattle03` | Horseman's pick | 7.5 | 22175 | `0f0164d5-3746-4d07-a1ed-0f138225a6d9` |
| 159 | `axeBattle03_broken` | Weapon stub | 1 | 1 | `ff1a4d2f-efda-4ebc-a0d0-dc3e3e6fb132` |
| 160 | `axeBattle04` | Knight's axe | 7.5 | 24834 | `214ffcdd-a7a7-4b7a-b484-f60c8d00b39b` |
| 161 | `axeBattle04_broken` | Weapon stub | 1 | 1 | `bef72593-22e6-44fc-a547-4d448000e6df` |
| 162 | `axeCalvaria` | Calvaria axe | 5.8 | 15268 | `1c3524bb-e4fa-48a1-b956-2dcbdbf69594` |
| 163 | `axeCalvaria_broken` | Broken weapon | 1 | 1 | `3f36611f-b026-4616-81a0-bd2a1c7dd313` |
| 164 | `axeCuman` | Cuman fokos | 5.9 | 11210 | `eeeb5a48-9a97-41a6-aee0-3e1b64fc2405` |
| 165 | `axeCuman_broken` | Weapon stub | 1 | 1 | `9acebf6a-64a1-4d03-b090-f69332278cdc` |
| 166 | `axeFancy` | Executioner's axe | 6.7 | 14268 | `50a9ac1e-dbb5-480b-8b5e-2ba3a1ff8d82` |
| 167 | `axeFancy_broken` | Weapon stub | 1 | 1 | `4e91e216-73bb-47dc-bcd0-58b3ece477c9` |
| 168 | `axeTraining` | Training axe | 4 | 32 | `e86cf667-1449-4111-9bb5-17329a526278` |
| 169 | `axeWork01` | Work axe | 4.6 | 248 | `1fc42528-2bef-4dde-bf8a-04febeef41c8` |
| 170 | `axeWork01_broken` | Weapon stub | 1 | 1 | `636790d9-e443-4677-978e-e034386f6f86` |
| 171 | `axeWork02` | Carpenter's axe | 6 | 2155 | `81494400-b654-4aa7-8f31-c95c689db5f6` |
| 172 | `axeWork02_broken` | Weapon stub | 1 | 1 | `8ebd6028-b2fc-4bde-9f16-265f5d446fcf` |
| 173 | `axeWork02_broken_kunesh` | Axe from Skalitz stub | 1 | 1 | `29287483-8f15-4f6e-b48f-062a5f81877b` |
| 174 | `axeWork02_kunesh` | Skalitz axe | 6 | 9144 | `0802c111-75aa-4b9c-9a3f-f30bac55fbc7` |
| 193 | `balatro_jimboMace` | Jimbo's marotte | 3 | 3646 | `8400f543-60dc-4e66-b618-fcb7783cfa72` |
| 622 | `bratriZCimburka_balsanHalberd` | Balshanka | 9.9 | 8284 | `82c48b4f-8ff9-40c0-8217-38dfef73de15` |
| 623 | `bratriZCimburka_balsanSword` | Balshan's sword | 2 | 27092 | `d55db816-48fa-405f-9f22-fef473ec5542` |
| 624 | `bratriZCimburka_balsanSword_broken` | Weapon stub | 1 | 35 | `eecfb1d3-2049-4a50-b5f3-92de8b4eda99` |
| 1514 | `combattest_axe` | A suspicious bag | 5 | 500 | `c4af6633-dacb-4d73-864a-30cabb1b6708` |
| 1526 | `combattest_halberd` | A suspicious bag | 5 | 500 | `cc3b7884-dca8-41f8-8ea8-fb5a60e3135b` |
| 1527 | `combattest_halberd_bad` | A suspicious bag | 5 | 500 | `3ada3ccf-6d35-4ee1-8ad7-1bd354e17565` |
| 1530 | `combattest_mace` | A suspicious bag | 5 | 500 | `aa424228-afb3-4084-8cac-dd3fdc03f2be` |
| 1531 | `combattest_mace_bad` | A suspicious bag | 5 | 500 | `e041a0ef-789b-476f-9ae8-70a74a5ad5c8` |
| 1533 | `combattest_sabre` | A suspicious bag | 5 | 500 | `b0fc8e19-af72-4771-9517-caec4f568920` |
| 1534 | `combattest_shield` | A suspicious bag | 5 | 666 | `a307f7aa-8769-4cbd-a349-f2a77036c100` |
| 1535 | `combattest_shield_bad` | A suspicious bag | 5 | 666 | `713dc861-f5b4-42cd-b016-71b138b217a0` |
| 1536 | `combattest_short_sword` | A suspicious bag | 5 | 500 | `b0fc8e19-bf73-4771-9517-caec4f568920` |
| 1537 | `combattest_short_sword_bad` | A suspicious bag | 5 | 500 | `da22d4d4-74a0-4dd5-9d13-a782a13627b1` |
| 1539 | `combattest_sword_long` | A suspicious bag | 5 | 500 | `bee1a325-d8c6-4bbd-b2c2-666a3e59f973` |
| 1645 | `daggerAncient` | Old dagger | 1 | 200 | `39826a87-69aa-45cc-94e1-170a4520e2e9` |
| 1646 | `daggerBruncvik` | Brunswick's dagger | 1 | 230 | `36099b07-dae2-4b7b-bcb2-5b580e872ec3` |
| 1647 | `daggerCommon` | Dagger | 1 | 230 | `3a640e5d-d8bd-4e8b-b61d-8cd5180e79e7` |
| 1793 | `duels_blackKnightSabre` | Owl’s Claw sabre | 2.5 | 29593 | `91a4c8cc-3a06-42ce-892f-da982e7da760` |
| 1794 | `duels_blackKnightSabre_broken` | Weapon stub | 1 | 35 | `1e8b15e3-4b3d-4bcc-a15b-c841e41125ed` |
| 1797 | `dvojityAgent_petrsShield` | Lord of Suchotlesky heater shield | 6 | 2500 | `fffeaced-bb1c-4a0d-82d1-02c069b1883b` |
| 1798 | `dvojityAgent_petrsShield_broken` | Broken shield | 3.5 | 1 | `f01c5b5c-a4cb-4c5a-a26a-690b2a354044` |
| 1799 | `dvojityAgent_petrsShortSword` | Peter of Suchotlesky's sword | 1.8 | 31043 | `9db7dcf1-53c0-45aa-8a63-c4a658a1dd46` |
| 1800 | `dvojityAgent_petrsShortSword_broken` | Weapon stub | 1 | 35 | `778a51bf-4b25-4882-8d47-eb43cfc60297` |
| 2176 | `finale_hanusLongsword` | Hanush's sword | 2.9 | 28544 | `f6c33b65-da21-425d-aea1-a67500c3bb01` |
| 2813 | `hromovyKamen_ramsHead` | Ramhead hammer | 11.1 | 26528 | `6eea57fb-b9db-4547-a833-db382b627e45` |
| 2814 | `hromovyKamen_ramsHead_broken` | Weapon stub | 1 | 1 | `6158e0af-7b8d-448d-ac14-2e501e5470a2` |
| 2818 | `huntingSwordBasic` | Hunting sword | 2.9 | 822 | `c164f346-0463-4116-b790-094b11274e5e` |
| 2819 | `huntingSwordBasic_broken` | Weapon stub | 1 | 35 | `7d830ff0-3632-42d6-83ee-f2dee122c998` |
| 2820 | `huntingSwordFalchion` | Falchion | 2.9 | 4862 | `c58fa1d7-dd10-45e1-b6da-b65f1d0b3f7a` |
| 2821 | `huntingSwordFalchion_broken` | Weapon stub | 1 | 35 | `18267b97-c7da-4d25-9726-1b5677cb9748` |
| 2822 | `huntingSwordGuard` | Burgher's hunting sword | 2.6 | 2137 | `505b8feb-9447-462f-ab3d-68557f89d9f3` |
| 2823 | `huntingSwordGuard_broken` | Weapon stub | 1 | 35 | `06c04ae4-ec63-4546-9725-4c0996770cb6` |
| 2824 | `huntingSwordMussle` | Shell hunting sword | 1.9 | 5827 | `d4b8b102-cc1c-41a9-a1ab-e9d49ecf362b` |
| 2825 | `huntingSwordMussle_broken` | Weapon stub | 1 | 35 | `d4cf9636-02b5-4673-9b6c-98e294842de0` |
| 2826 | `huntingSwordSashka` | Cuman shashka | 2.2 | 3359 | `d73738be-a741-4ee5-ab62-104ce6162639` |
| 2827 | `huntingSwordSashka_broken` | Weapon stub | 1 | 35 | `94acf2dc-fca2-4e19-8d4f-57e5ff93f972` |
| 2828 | `huntingSwordSword` | Noble's hunting sword | 1.6 | 7049 | `40b0ff59-7db2-4c16-bf66-253853a34344` |
| 2829 | `huntingSwordSword_broken` | Weapon stub | 1 | 35 | `b28c3413-1129-4cec-9453-6e559f3958cd` |
| 2917 | `kovaniAsiDoVezi_protectiveAxe` | Protective axe | 4.6 | 975 | `fdfd6989-a28d-40bc-ac0d-882b4d1cf4f9` |
| 2918 | `kovaniAsiDoVezi_protectiveAxe_broken` | Weapon stub | 1 | 1 | `28bef4ee-075b-4f13-9cb6-d84f59a09b64` |
| 2920 | `kovaniKatuvSleh_longSwordExecutioner` | Executioner's sword | 4.4 | 24716 | `44a65a44-426a-4a3d-9d41-3629a7be0e38` |
| 2921 | `kovaniKatuvSleh_longSwordExecutioner_broken` | Weapon stub | 1 | 35 | `875843c2-c4fb-4cba-923e-62c37a534130` |
| 2923 | `kovaniKopie_longSwordAbsolver` | Longsword "Absolver" | 3.1 | 24506 | `08f5ee0a-ac03-423e-bc00-c388303cf0c9` |
| 2924 | `kovaniKopie_longSwordAbsolver_broken` | Weapon stub | 1 | 35 | `c25ac7e1-dc4a-442b-bf89-a7edbc59695d` |
| 2925 | `kovaniKopie_penitent` | Replica of the longsword "Absolver" | 2.8 | 24506 | `dcef5c55-3c70-4422-b625-a936607df179` |
| 2926 | `kovaniKopie_penitent_broken` | Weapon stub | 1 | 35 | `4a6d818a-43c6-4c3e-9be1-9de8fba18262` |
| 2927 | `kovaniKovarskaSoutez_huntingKnifeApprentice` | Competition hunting sword | 2.4 | 3359 | `a4fc318c-477e-485b-bf16-d08cf3277769` |
| 2928 | `kovaniKovarskaSoutez_huntingKnifeApprentice_broken` | Weapon stub | 1 | 35 | `f3a3881d-408b-4cfd-aa10-bf9ab4d7f08f` |
| 2929 | `kovaniKovarskaSoutez_huntingKnifeForContest` | Competition sword | 2.4 | 3359 | `bd4c98be-44d8-4561-bff5-094b7eb40006` |
| 2930 | `kovaniKovarskaSoutez_huntingKnifeForContest_broken` | Weapon stub | 1 | 35 | `ec3fe974-81d4-4d42-ae5d-27d10d2d1e13` |
| 2932 | `kovaniNaKovarne_pajslSword` | Pieschel's sword | 2.4 | 15667 | `730595b4-73e6-4528-8bfb-d1f2caf1f7cf` |
| 2933 | `kovaniNaKovarne_pajslSword_broken` | Weapon stub | 1 | 35 | `f60de76b-cbc7-4c02-8867-0ba983d42e67` |
| 2934 | `kovaniNaKovarne_smithsDefense` | Blacksmith's defender | 2.4 | 3359 | `2f2095b6-ad4b-4002-9af3-96612f3e143c` |
| 2935 | `kovaniNaKovarne_smithsDefense_broken` | Weapon stub | 1 | 35 | `5acca5da-33b7-4284-8708-c05c5a97382b` |
| 2936 | `kovaniPoklad_adornedAxe` | Adorned axe | 5.7 | 6995 | `c25fc705-c957-4c9a-a831-0f112e3b148d` |
| 2937 | `kovaniPoklad_adornedAxe_broken` | Weapon stub | 1 | 1 | `e38cfdef-5184-444a-9689-c35969ea5e5c` |
| 2939 | `kovaniRelikvie_shortSwordKnightValentin` | Sword of Sir Valentine | 1.8 | 30812 | `366c6d07-8d42-460e-a66b-d6167f08e531` |
| 2940 | `kovaniRelikvie_shortSwordKnightValentin_broken` | Weapon stub | 1 | 35 | `6f03da10-cc30-48ae-b449-02d311fa8fda` |
| 2943 | `kovaniSymbolSermirny_longSwordGuildRemake` | Guild Longsword | 2.6 | 32584 | `b4fb48be-9adb-4750-b7e6-7a88f47aff97` |
| 2944 | `kovaniSymbolSermirny_longSwordGuildRemake_broken` | Weapon stub | 1 | 35 | `10d23296-1567-4a96-a56b-b7c2a75ed037` |
| 2945 | `kovaniVajdovaKletba_botchedRikonaris` | Rikonaris' sabre | 4.2 | 827 | `f2ff6654-b73b-41f8-9390-c6d6e5e144ed` |
| 2946 | `kovaniVajdovaKletba_botchedRikonaris_broken` | Weapon stub | 1 | 35 | `a763795a-ae0d-414b-83fa-f8831aff3813` |
| 2948 | `kovaniVajdovaKletba_rikonaris` | Rikonaris' sabre | 2.9 | 14624 | `a59c412f-74ee-4fa8-98e0-d237da5f4af2` |
| 2949 | `kovaniVajdovaKletba_rikonaris_broken` | Weapon stub | 1 | 35 | `f3c77609-1779-4623-9561-c5cc2f2a5d6e` |
| 2952 | `kovarskeZakazky_4evangeliste` | Longsword of the Four Evangelists | 3.5 | 33110 | `f4eb1370-0267-43d3-8b60-853968bfe4ba` |
| 2953 | `kovarskeZakazky_4evangeliste_broken` | Weapon stub | 1 | 35 | `39191468-fd7d-42ca-ba60-ced27b3b92aa` |
| 2956 | `kovarskeZakazky_dragonAxe` | Dragon fang Axe | 6.7 | 14443 | `662d7149-400f-4995-94b8-11c6fd208ca2` |
| 2957 | `kovarskeZakazky_dragonAxe_broken` | Stump of the dragon’s tooth | 6.7 | 14443 | `5337f947-aae1-469f-af2b-4b9716de2d20` |
| 2958 | `kovarskeZakazky_durendal` | Durendal | 4.1 | 38051 | `e04f17e3-8a43-4244-9442-14dbf65342f9` |
| 2959 | `kovarskeZakazky_durendal_broken` | Broken Durandal | 1 | 35 | `0a725b0f-f8e9-4f05-bd22-6d054c35c42f` |
| 2960 | `kovarskeZakazky_durensral` | Durendull | 2 | 4864 | `94f570ee-8ce4-433c-b85a-ee180c63669a` |
| 2961 | `kovarskeZakazky_excalibur` | Excalibur | 2.4 | 37311 | `cbb3d273-e0c3-4fab-96a1-73f84f8be12c` |
| 2962 | `kovarskeZakazky_excalibur_broken` | Broken Excalibur | 1 | 35 | `2de5a602-cce1-40dd-85cd-c705a3abc1ec` |
| 2963 | `kovarskeZakazky_fejxcalibur` | Fakescalibur | 4.4 | 4864 | `74929ac6-8021-46a0-8ffd-b60e98947158` |
| 2964 | `kovarskeZakazky_magdalenaAxe` | Magdalena's axe | 4.6 | 586 | `8d09fdad-9e86-4bbd-906e-ec01b668a206` |
| 2965 | `kovarskeZakazky_magdalenaAxe_broken` | Magdalena's broken axe | 1 | 1 | `2702fa59-4de3-42fb-b748-389374a7c7cb` |
| 3153 | `longswordBohuta` | Godwin's longsword | 3.4 | 13491 | `7ff1bc2e-8664-4691-a8c7-0e6d9cf0e96c` |
| 3154 | `longswordBroad` | Broad longsword | 2.9 | 28544 | `3858560f-cf48-436f-8815-4426003288fb` |
| 3155 | `longswordBroad_broken` | Weapon stub | 1 | 35 | `caa97b58-3bf5-4b99-8281-0c0c4edc082f` |
| 3156 | `longswordCapon` | Lord Capon's longsword | 3.4 | 20466 | `ab8cea64-b411-46ed-bb54-7c1af4b17a3d` |
| 3157 | `longswordCommon` | Common longsword | 3.9 | 12389 | `9e31a288-7de0-4c0d-81cd-5cf00548d2d5` |
| 3158 | `longswordCommon_broken` | Weapon stub | 1 | 35 | `b40180dc-2001-400e-b197-2aeda0cbbda9` |
| 3159 | `longswordDevil` | Dry Devil's longsword | 3.1 | 24716 | `30a1474f-9a19-41af-bbba-c74154e7990f` |
| 3160 | `longswordDevil_duel` | Dry Devil's longsword | 3.1 | 26407 | `9fab5004-c2bc-4f9a-af62-8b3b82aa3bb5` |
| 3161 | `longswordDevil_empty` | Dry Devil's longsword | 3.4 | 20466 | `a59613fa-fd3d-4c8a-b189-a5ccd43ba779` |
| 3162 | `longSwordDuel` | Duelling longsword | 1.9 | 36624 | `00cca9e3-8ef2-46db-8cbf-86ec51930919` |
| 3163 | `longSwordDuel_broken` | Weapon stub | 1 | 35 | `db67f8d2-baa6-4a08-ae6e-4b1878c42b89` |
| 3164 | `longSwordDuel_empty` | Duelling longsword | 2.7 | 26260 | `76009b72-1e65-4a78-98c7-6ada2f172c1f` |
| 3165 | `longSwordDuel_khTournament` | Tournament longsword | 4.1 | 2427 | `2d466cad-74df-4337-ae97-4c7433a54b6d` |
| 3166 | `longSwordDuel_khTournament_broken` | Weapon stub | 1 | 35 | `d9b9c4cc-d898-47c3-a6da-9e8264f07239` |
| 3167 | `longswordevangelists` | Four Evangelists' longsword | 3.5 | 33110 | `39b1320e-0d36-485d-ae1c-5eaaaac9bf32` |
| 3168 | `longswordevangelists_broken` | Broken weapon | 1 | 1 | `3fd4ac76-36ff-49fc-9406-abade4e47966` |
| 3169 | `longswordHenry` | Henry's longsword | 3.4 | 20466 | `c76ac5ec-7600-47e0-b256-e982cfed06b4` |
| 3170 | `longswordHenry_reforged` | Henry's sword reforged | 1.9 | 55877 | `62096670-22ca-473c-adc3-bc63a9369550` |
| 3171 | `longswordIstvan` | Radzig Kobyla's longsword | 3.4 | 20466 | `bfe67386-76e0-4be6-97ec-1088504d50ec` |
| 3172 | `longSwordLilium` | Lingua belli longsword | 3.6 | 52040 | `4a864670-d805-4794-ad07-bc35f5ceac16` |
| 3173 | `longSwordLilium_broken` | Broken weapon | 1 | 1 | `b4065e93-7fff-498e-94e0-3b3288ff8051` |
| 3174 | `longswordOld` | Knight's longsword | 4.4 | 3311 | `bdb6fc2a-43e4-40b8-93c8-f2d9162c1e45` |
| 3175 | `longswordOld_broken` | Weapon stub | 1 | 35 | `7711224d-e467-4e4c-a2cb-f4e8445d7909` |
| 3176 | `longswordRadzig` | Radzig Kobyla's longsword | 3.4 | 20466 | `5e97249e-2b25-410d-a96a-8ec652de1794` |
| 3177 | `longswordRadzig_broken` | Weapon stub | 1 | 35 | `3345f86c-96e4-45ed-aa77-997fd986a242` |
| 3178 | `longswordRadzig_reforged` | Reforged Radzig Kobyla's sword | 1.9 | 55877 | `25366cab-ddf2-4657-94a5-0fcf06a8dabb` |
| 3179 | `longswordSturdy` | Battle longsword | 4.5 | 24001 | `23855649-1783-4e0d-95ad-d3478797b642` |
| 3180 | `longswordSturdy_broken` | Weapon stub | 1 | 35 | `aeb13096-7bdb-46c8-b9b4-c4f8125cb83a` |
| 3181 | `longswordTraining` | Training longsword | 4 | 32 | `059893ea-3aef-48b3-b1ce-7eb3391fa028` |
| 3182 | `longswordTraining_broken` | Weapon stub | 1 | 35 | `efa1814b-f8bb-444c-89ef-7d3cff9ae350` |
| 3183 | `longswordZizka_duel` | Common longsword | 3.6 | 11033 | `d284732b-32d1-40e6-be9b-0c89e18f969f` |
| 3301 | `mace01` | Light mace | 3 | 5735 | `9cc07405-4195-46ab-bf17-fd0fd99721bd` |
| 3302 | `mace01_broken` | Weapon stub | 1 | 1 | `f8f7f4bb-7474-43d3-9c44-36793f83e7a4` |
| 3303 | `mace02` | Common mace | 3.9 | 11387 | `c67de991-e22a-4a19-8b68-9369919c41dd` |
| 3304 | `mace02_broken` | Weapon stub | 1 | 1 | `826b17e5-9fc9-4a25-81ab-98c740972e98` |
| 3305 | `mace03` | Flanged mace | 4.4 | 14193 | `839992c8-657b-4d5e-97c9-96ff94430d72` |
| 3306 | `mace03_broken` | Weapon stub | 1 | 1 | `c1f6b8fe-2877-4ac6-bbbb-d35608162416` |
| 3307 | `mace04` | Ornate mace | 5.3 | 31043 | `65a211bd-2c7e-40a8-984f-66c8730444e4` |
| 3308 | `mace04_broken` | Weapon stub | 1 | 1 | `1dd5fd65-704f-4175-a57d-86e1f622a451` |
| 3309 | `maceBailiff` | Bailiff's mace | 3.9 | 11399 | `f65df177-966b-48e5-8cc6-26a4f95e41b0` |
| 3310 | `maceBailiff_broken` | Weapon stub | 1 | 1 | `3c3d9405-57cb-4aae-8832-05cd9891f38c` |
| 3311 | `maceBuchar` | Buchar mace | 3.7 | 9800 | `701b69bb-7c0f-4db8-aeff-1ce51044db14` |
| 3312 | `maceBuchar_broken` | Weapon stub | 1 | 1 | `12f52d70-ac6c-4637-be9e-d01a8c4ab961` |
| 3313 | `maceClub` | Club | 2 | 82 | `cff7ae16-d134-41bd-9394-89e8c3970f94` |
| 3314 | `maceClub_broken` | Weapon stub | 1 | 1 | `750a5405-4896-4459-8382-b27b27b53824` |
| 3315 | `maceClubSpiked` | Spiked bludgeon | 2.4 | 2908 | `007907cf-aeb9-4dfa-ad3f-e0262893e423` |
| 3316 | `maceClubSpiked_broken` | Weapon stub | 1 | 1 | `6c784241-c718-4caa-8054-97bbcd7a6a11` |
| 3317 | `maceClubTraining` | Training bludgeon | 4.5 | 10 | `7b1804a5-0a41-4acd-9260-037ae252c5d8` |
| 3318 | `maceDagger` | Dagger mace | 3.5 | 9422 | `00b0039b-daa4-4f32-ac7f-69a6a2e0add8` |
| 3319 | `maceDagger_broken` | Weapon stub | 1 | 1 | `76a0c8f1-c55e-44b5-93ce-22a7145eac8d` |
| 3320 | `maceHeavy` | Heavy mace | 6.8 | 13248 | `af6a6142-c6f7-4ae7-94a9-bb5be41ebecc` |
| 3321 | `maceHeavy_broken` | Weapon stub | 1 | 1 | `71f8bad6-f5b8-403a-984b-ca85acd7fc81` |
| 3322 | `maceHetman` | Captain's mace | 4.8 | 17258 | `f2e86f22-8932-4751-8f62-fb1b8b846ddf` |
| 3323 | `maceHetman_broken` | Weapon stub | 1 | 1 | `d3e20481-b4d5-499d-8b94-2a69b8d53973` |
| 3324 | `maceZizka` | Zizka's mace | 3.5 | 8685 | `c64dcd8b-df93-4cb5-a80a-c71eb84ac6b0` |
| 3325 | `maceZizka_broken` | Weapon stub | 1 | 1 | `3d87d944-f57c-4c66-ad90-12145784ed3c` |
| 3332 | `magicShop_polearmSpear_broken` | Broken Roman soldier's spear | 3 | 500 | `ac87e7e7-ab80-4c7a-b3a5-353dbbbf1e01` |
| 3406 | `nalezeniDelnici_denesDagger` | Denes' dagger | 1 | 230 | `09b9021d-fdb4-4aee-8d53-78bdeb073c1d` |
| 3411 | `naTroskach_axeKolda` | Kolda's axe | 4.6 | 498 | `30dd9547-0ec9-4144-871c-cb66582244a4` |
| 3412 | `naTroskach_axeKolda_broken` | Weapon stub | 1 | 1 | `7c187d42-171d-4a95-80c5-03ea4c7e5849` |
| 3421 | `nebakovPruzkum_lordsOfLeipaShield` | Lords of Leipa shield | 7.5 | 1037 | `4c2ca74e-d331-4d5f-96eb-d23be8c6082e` |
| 3435 | `nemcuvPoklad_bejkovecShortSwordRusty` | Old rusty sword | 3.2 | 3673 | `eaf0b03b-d2bf-4680-a2fb-1f551bd10d1c` |
| 3436 | `nemcuvPoklad_bejkovecShortSwordRusty_broken` | Weapon stub | 1 | 35 | `6ff81f7e-18b6-4368-9203-eda0cb6e8286` |
| 3612 | `oblehaniSuchdole_flag` | | 11.4 | 470 | `bbc6b904-7b1b-43aa-bf10-28b2c8639502` |
| 3613 | `oblehaniSuchdole_oldSword` | Old longsword | 4 | 10751 | `bafdd43c-9fb4-451d-afd9-38f03bb71051` |
| 3614 | `oblehaniSuchdole_oldSword_broken` | Weapon stub | 1 | 35 | `5fc25124-a74e-4357-b4ee-9a7ba68d8044` |
| 3783 | `poi_ratborschButcherAxe` | Raborsch butcher's axe | 9.4 | 9043 | `e2cf3e8b-b411-43a0-a7ed-2674ae8ac4d2` |
| 3811 | `polearmBardiche` | Bardiche | 10.2 | 6488 | `4bda3dd1-871c-452a-87fe-b783946435c2` |
| 3812 | `polearmBardiche_broken` | Broken polearm | 3 | 20 | `440f40a1-d02b-4dd0-b977-49fa0972f4c1` |
| 3813 | `polearmBruncvik` | Brunswick's poleaxe | 10.5 | 4778 | `aa11269e-ee54-46e0-b7c7-1efc50d7bcb8` |
| 3814 | `polearmBruncvik_broken` | Broken polearm | 3 | 20 | `cd694cd7-caec-47ca-810f-1e00fc402621` |
| 3815 | `polearmGlaive` | Glaive | 10.8 | 3536 | `e5f25908-a843-456a-b095-c31db34aa577` |
| 3816 | `polearmGlaive_broken` | Broken polearm | 3 | 20 | `6feafd6d-a1b6-4ae2-a98f-bc999a86e24d` |
| 3817 | `polearmGuisarm` | Guisarme | 9.6 | 10134 | `0f41ad99-3307-47c8-a110-a7d9b4af75e8` |
| 3818 | `polearmGuisarm_broken` | Broken polearm | 3 | 20 | `e6315023-f60a-49e3-a0cb-aa93b094226c` |
| 3819 | `polearmMorgenstern` | Morgenstern | 9.6 | 8278 | `7cac0c1a-ad34-4fd7-a1e6-4d45edcf307f` |
| 3820 | `polearmMorgenstern_broken` | Broken polearm | 3 | 20 | `89252a76-e81a-4c7e-9251-5b633d9289e3` |
| 3821 | `polearmPitchfork` | Pitchfork | 11.4 | 624 | `08250d1c-c62e-43b5-967c-17ccb4adf1b5` |
| 3822 | `polearmPitchfork_broken` | Broken polearm | 3 | 20 | `12ffb66e-8ea8-4da3-bd27-cbc6796f4064` |
| 3823 | `polearmPitchforkSedlakaMateje` | Farmer Matthew's pitchfork | 11.4 | 30 | `85beaf9d-e351-45b1-8144-0bec039e2803` |
| 3824 | `polearmPoleaxe` | Poleaxe | 9 | 16556 | `51bb7893-2054-40d3-a355-d278f416c482` |
| 3825 | `polearmPoleaxe_broken` | Broken polearm | 3 | 20 | `a0670dd2-1818-45d3-98db-5ab9ee90a061` |
| 3826 | `polearmSpear` | Billhook | 10.8 | 2793 | `f4324daf-fe09-495e-b954-16f23226cf58` |
| 3827 | `polearmSpear_broken` | Broken polearm | 3 | 20 | `6157c1e6-11e9-4949-a6ea-81f6acf753e4` |
| 3828 | `polearmTraining` | Staff | 4 | 32 | `c921cf6c-e4ef-4095-b58b-2aeccafc25c9` |
| 3829 | `polearmVoulge` | Voulge | 10.2 | 6488 | `03b6321d-4151-46cd-bdec-451ea7bfaabc` |
| 3830 | `polearmVoulge_broken` | Broken polearm | 3 | 20 | `aa380c5e-6189-489d-a448-0db7f101195f` |
| 3831 | `pomatenec_brokenSword` | Madman's broken sword | 3.9 | 8087 | `dda85d8b-2bc0-4317-bc4b-adc95e878cbe` |
| 3832 | `pomatenec_longsword` | Madman's longsword | 2.1 | 50827 | `3be8081d-e969-44af-b6dd-a9887d43a9b9` |
| 3833 | `pomatenec_longsword_broken` | Madman's broken sword | 1 | 35 | `d65e03d1-289d-4f6a-884c-f490c1dabe41` |
| 3934 | `poustevnik_seminLongSword` | Toledo steel sword | 3.9 | 12389 | `4ea3ec22-970d-4ac7-b802-e801e0340253` |
| 3935 | `poustevnik_seminLongSword_broken` | Weapon stub | 1 | 35 | `a849c321-0df7-4157-9ccd-10066b489cd7` |
| 4198 | `rutinaAVypad_trackview_torch_weapon` | Torch | 1 | 60 | `cfec1446-ce8d-4c9c-aa9a-56fc8b10bc0e` |
| 4203 | `sabreCommon` | Common sabre | 3.5 | 7726 | `caef375a-fa63-41a4-8873-58c358ccfc06` |
| 4204 | `sabreCommon_broken` | Weapon stub | 1 | 35 | `205a07f8-e1e1-4962-8858-676ab5981460` |
| 4205 | `sabreLionHead` | Lion's roar Kilij | 2.8 | 32050 | `3e4fd2d2-2f28-486b-a686-a71fb5cd42f2` |
| 4206 | `sabreLionHead_broken` | Broken weapon | 1 | 1 | `6559490e-0a7c-4388-bce8-2da2c8ac5a31` |
| 4207 | `sabreNoble` | Ataman's sabre | 2.2 | 26903 | `fd3682f9-621d-4d50-ae9d-1c0081f140ab` |
| 4208 | `sabreNoble_broken` | Weapon stub | 1 | 35 | `5023b54e-f271-46a8-8eac-76f0b619cda7` |
| 4237 | `sermiry_huntingSwordJimram` | Emmeram's hunting sword | 2.7 | 11382 | `11490ea5-ef27-4f8f-a4c9-2b94baf753de` |
| 4238 | `sermiry_huntingSwordJimram_broken` | Weapon stub | 1 | 35 | `fb0e22ad-cd3c-4f49-add1-e9001a431f29` |
| 4239 | `sermiry_longSwordGuild` | Guild Longsword | 2.6 | 31006 | `036661e4-4556-4295-82f3-264e48cb2d49` |
| 4240 | `sermiry_longSwordGuild_broken` | Weapon stub | 1 | 35 | `584cf614-367b-413b-be8d-20bc5d275b74` |
| 4241 | `sermiry_longSwordMenhart` | Master Menhart's longsword | 2.1 | 50566 | `204c1852-dd30-42ae-9317-bc3123a3e301` |
| 4242 | `sermiry_longSwordMenhart_broken` | Weapon stub | 1 | 35 | `08fbab31-23e5-4bb2-a9b5-d29c2a6d1ffa` |
| 4243 | `sermiry_trainingSword` | Training longsword | 4.3 | 505 | `f17133c3-238d-4dae-a757-4f0632cb3e8a` |
| 4244 | `sermiry_trainingSword_broken` | Weapon stub | 1 | 35 | `f43c56c2-b932-48c9-bc47-9d3640bedb7c` |
| 4248 | `sesivaniTonici_svancara` | St. Anthony's standard | 11.4 | 82 | `d870d9c7-a16b-4812-b214-d3b56d7d6c44` |
| 4256 | `setkaniVRatbori1_stolenDagger` | Stolen dagger | 1 | 230 | `80591e34-92ce-44d7-a4ed-b2fcd073eb6e` |
| 4265 | `shieldCuman` | Cuman shield | 7.5 | 1207 | `f13c6be9-09ab-492d-82f5-628170cc1dc2` |
| 4266 | `shieldCuman_01` | Cuman shield | 7.5 | 1377 | `b595a565-d162-45d8-a6ba-0620e760ccab` |
| 4267 | `shieldCuman_01_A` | Cuman shield | 7.5 | 1377 | `2cb53d10-c5da-47ef-8789-8e1ae34dac6c` |
| 4268 | `shieldCuman_01_A_broken` | Broken shield | 3.5 | 1 | `704c3453-06b8-4b47-85db-7c0c87fc17b5` |
| 4269 | `shieldCuman_01_B` | Cuman shield | 7.5 | 1377 | `5c47a83b-041b-4621-96f7-43b16d42fb6f` |
| 4270 | `shieldCuman_01_B_broken` | Broken shield | 3.5 | 1 | `74a53093-fb6e-4ca9-b2c3-9438c7d27f76` |
| 4271 | `shieldCuman_01_broken` | Broken shield | 3.5 | 1 | `132ce312-8dd2-4e49-aa44-b26de7ed281b` |
| 4272 | `shieldCuman_02` | Cuman shield | 7.5 | 1377 | `30b6df49-7789-4c22-b645-e5e087df8ffd` |
| 4273 | `shieldCuman_02_broken` | Broken shield | 3.5 | 1 | `5e99cdae-4d49-4c48-9a8f-a3428e41ec6b` |
| 4274 | `shieldCuman_03` | Cuman shield | 7.5 | 1377 | `d85490a2-1e28-4549-a40e-119cdab8bd17` |
| 4275 | `shieldCuman_03_broken` | Broken shield | 3.5 | 1 | `00393f8f-6999-431a-b6ec-e8cfd32b04e1` |
| 4276 | `shieldCuman_04` | Cuman shield | 7.5 | 1377 | `98df7fa4-9948-47aa-bcc7-7998114cae7e` |
| 4277 | `shieldCuman_04_broken` | Broken shield | 3.5 | 1 | `4ad1da6c-e05b-4d75-9ca5-fb8c62674521` |
| 4278 | `shieldCuman_05` | Cuman shield | 7.5 | 1377 | `00f104b3-e95c-41ee-95a9-35d0331ac295` |
| 4279 | `shieldCuman_05_broken` | Broken shield | 3.5 | 1 | `6bc4d54b-6742-4286-93a4-a2ce68c9ab8a` |
| 4280 | `shieldCuman_06` | Cuman shield | 7.5 | 1377 | `000a72ec-f904-4e06-8c57-2eac8ab6ec73` |
| 4281 | `shieldCuman_06_broken` | Broken shield | 3.5 | 1 | `f328d876-0f8b-40cb-a288-c759ab57cc79` |
| 4282 | `shieldCuman_07` | Cuman shield | 7.5 | 1377 | `4b868326-ff12-4c25-b22f-eccf034a083d` |
| 4283 | `shieldCuman_07_broken` | Broken shield | 3.5 | 1 | `be30bbd3-4ad1-4198-9e89-4fae06dfc6aa` |
| 4284 | `shieldCuman_08` | Cuman shield | 7.5 | 1377 | `94111648-b45b-4a1c-b189-8dd628deaa56` |
| 4285 | `shieldCuman_08_broken` | Broken shield | 3.5 | 1 | `a4cef06e-7cdc-4795-85d7-34abbb9035d8` |
| 4286 | `shieldCuman_09` | Cuman shield | 7.5 | 1377 | `8289ff89-ec8d-4958-884c-26b115cd79f9` |
| 4287 | `shieldCuman_09_broken` | Broken shield | 3.5 | 1 | `48376b8e-26dd-4ce3-962f-f9be14924cfb` |
| 4288 | `shieldCuman_10` | Cuman shield | 7.5 | 1377 | `3074b463-14f4-484e-afe6-a780ccad9161` |
| 4289 | `shieldCuman_10_broken` | Broken shield | 3.5 | 1 | `ca8df578-1b1b-4b1d-9f06-0d2465983d5f` |
| 4290 | `shieldCuman_11` | Cuman shield | 7.5 | 1377 | `577d652d-26d0-4bd7-9df7-b31ce3aa2a4f` |
| 4291 | `shieldCuman_11_broken` | Broken shield | 3.5 | 1 | `d20efd87-59bb-431c-bb46-e9385b850d57` |
| 4292 | `shieldCuman_12` | Cuman shield | 7.5 | 1377 | `1c22229e-9703-4e23-a552-9d13f74ada02` |
| 4293 | `shieldCuman_12_B` | Cuman shield | 7.5 | 1377 | `10badb5a-8249-4649-9c3e-374b5f8224ff` |
| 4294 | `shieldCuman_12_B_broken` | Broken shield | 3.5 | 1 | `df4e0012-26d2-4261-95c4-6be4f59eabf4` |
| 4295 | `shieldCuman_12_broken` | Broken shield | 3.5 | 1 | `0b00b982-c5c3-4d1f-928d-f214d8dce166` |
| 4296 | `shieldCuman_12_C` | Cuman shield | 7.5 | 1377 | `fbdde51b-cb6b-49c2-8da6-8ac75bef6ec2` |
| 4297 | `shieldCuman_12_C_broken` | Broken shield | 3.5 | 1 | `3508576f-8726-40d3-af4c-bbde52511c17` |
| 4298 | `shieldCuman_summer` | Shield of Summer | 7.5 | 527 | `4bb60c3b-ce8b-4362-be61-a26903c823a8` |
| 4299 | `shieldCuman_summer_broken` | Broken shield | 3.5 | 1 | `5a6caaf1-2742-4c19-ba0b-ae214c0359b1` |
| 4300 | `shieldHeater_autumn` | Shield of Autumn | 9 | 413 | `c1d85298-9cca-48d3-b553-454a32eee00b` |
| 4301 | `shieldHeater_autumn_broken` | Broken shield | 3.5 | 1 | `4156f317-0e12-4633-a3dd-c01aa61d7f6f` |
| 4302 | `shieldHeater_bergov_A` | Von Bergow knight shield | 9 | 821 | `98498cc2-8514-4412-afb4-9585a6c13df1` |
| 4303 | `shieldHeater_bergov_A_broken` | Broken shield | 3.5 | 1 | `0017bb74-7092-498e-98ac-d95af5998784` |
| 4304 | `shieldHeater_chevronny_gw` | Heater shield | 9 | 719 | `4bfa707e-2a7b-4091-8230-0b7d83da716a` |
| 4305 | `shieldHeater_chevronny_gw_broken` | Broken shield | 3.5 | 1 | `0c30d09e-54b9-4f96-9290-dfefcb48c6ab` |
| 4306 | `shieldHeater_chevronny_rw_a` | Heater shield | 9 | 719 | `15ee3b51-c242-4c28-bcc9-e4418f9677f0` |
| 4307 | `shieldHeater_chevronny_rw_a_broken` | Broken shield | 3.5 | 1 | `f985330c-abc6-4678-b952-336e93b52b3f` |
| 4308 | `shieldHeater_chevronny_rw_b` | Heater shield | 9 | 719 | `ed1c5af1-4394-412c-a239-afd2362a88b3` |
| 4309 | `shieldHeater_chevronny_rw_b_broken` | Broken shield | 3.5 | 1 | `7d965e53-8b82-4708-a0d7-65a88aef1875` |
| 4310 | `shieldHeater_chevronny_ryw` | Heater shield | 9 | 719 | `97794f51-ac0d-46ca-b73f-06dffaaf9b7e` |
| 4311 | `shieldHeater_chevronny_ryw_broken` | Broken shield | 3.5 | 1 | `50825def-8c4b-48f3-a5bf-2e31aa309606` |
| 4312 | `shieldHeater_chevronny_yk` | Heater shield | 9 | 719 | `36348134-bc4a-4e9c-a33b-8930ef2f8ebc` |
| 4313 | `shieldHeater_chevronny_yk_broken` | Broken shield | 3.5 | 1 | `1c6a9255-7dac-4dac-b3f2-88eaffd5a28b` |
| 4314 | `shieldHeater_eagle_A` | Heater shield | 9 | 923 | `be089fdb-ca8d-4771-93e9-19865a49e65f` |
| 4315 | `shieldHeater_eagle_A_broken` | Broken shield | 3.5 | 1 | `e30fc820-ea1b-4506-a429-af5df8cb1187` |
| 4316 | `shieldHeater_eagle_B` | Heater shield | 9 | 923 | `9cf0a787-aca0-4a9b-8a27-67f1f3423f18` |
| 4317 | `shieldHeater_eagle_B_broken` | Broken shield | 3.5 | 1 | `66e8453e-db1b-4196-a0f8-2cd093fa67be` |
| 4318 | `shieldHeater_holohlav_A` | Lords of Holohlavy heater shield | 9 | 923 | `1adb3581-e7bc-4301-90c6-8d75ed8de1a9` |
| 4319 | `shieldHeater_holohlav_A_broken` | Broken shield | 3.5 | 1 | `ff889521-56bf-4195-b31c-9ff599fcb02e` |
| 4320 | `shieldHeater_lipa_A` | Lords of Leipa heater shield | 9 | 821 | `99ff086f-7dc0-4c38-9df1-88d63bcc88f8` |
| 4321 | `shieldHeater_lipa_A_broken` | Broken shield | 3.5 | 1 | `85e87002-4e6d-4ab8-996c-bdfddd360cd7` |
| 4322 | `shieldHeater_lipa_B` | Lords of Leipa heater shield | 9 | 821 | `41ab85d7-3f84-4344-9cca-f5ad825a44fc` |
| 4323 | `shieldHeater_lipa_B_broken` | Broken shield | 3.5 | 1 | `758e27bb-d5ed-47b6-92c7-ba952b44a04c` |
| 4324 | `shieldHeater_peony` | Sir Zavish heater shield | 9 | 923 | `2aeaee9e-abc5-4650-9760-817e688cca9c` |
| 4325 | `shieldHeater_pisek_A` | Lord Pisek heater shield | 9 | 821 | `a8eb10aa-84eb-416f-8ed2-46d909a26552` |
| 4326 | `shieldHeater_pisek_A_broken` | Broken shield | 3.5 | 1 | `2e1ef336-6b2b-467d-b753-56221ecfbdf9` |
| 4327 | `shieldHeater_pisek_B` | Lord of Pisek knight shield | 9 | 821 | `e97bfe02-006d-4389-b8bd-57a2a997b696` |
| 4328 | `shieldHeater_pisek_B_broken` | Broken shield | 3.5 | 1 | `27a13d25-76a2-442c-9e53-9d29c14df90f` |
| 4329 | `shieldHeater_pisek_C` | Lords of Holohlavy heater shield | 9 | 821 | `bce14390-537b-4e53-b5af-3a1536fd9590` |
| 4330 | `shieldHeater_pisek_C_broken` | Broken shield | 3.5 | 1 | `5fbd1980-82d3-46c6-b75d-cd40afe861ad` |
| 4331 | `shieldHeater_pisek_D` | Lords of Holohlavy heater shield | 9 | 821 | `bd9ee775-f6b7-4661-bbe4-10ff8aa7b4b2` |
| 4332 | `shieldHeater_pisek_D_broken` | Broken shield | 3.5 | 1 | `f4b6659a-b1b3-4c0d-98ad-582303f7f426` |
| 4333 | `shieldHeater_polner` | Lord Polner heater shield | 9 | 923 | `0214df7d-7566-4238-a932-8f66b2478e59` |
| 4334 | `shieldHeater_polner_broken` | Broken shield | 3.5 | 1 | `1b510403-8771-48a8-a5da-0e91dff19690` |
| 4335 | `shieldHeater_prague_A` | Heater shield | 9 | 821 | `3f8a55d6-5b3a-4b58-b88b-007560f6dc02` |
| 4336 | `shieldHeater_prague_A_broken` | Broken shield | 3.5 | 1 | `3a20eafb-00a2-460f-8a2e-af8a03080078` |
| 4337 | `shieldHeater_prague_B` | City of Prague heater shield | 9 | 821 | `1ef6f97a-4fed-4d18-883f-fabe1aa58a8b` |
| 4338 | `shieldHeater_prague_B_broken` | Broken shield | 3.5 | 1 | `66454b50-eff4-44da-bff8-5af7a7c86e2c` |
| 4339 | `shieldHeater_prague_C` | City of Prague heater shield | 9 | 821 | `b0dee4b3-51a4-49c2-990c-56c572cdc3cf` |
| 4340 | `shieldHeater_prague_C_broken` | Broken shield | 3.5 | 1 | `45ef8f46-f855-4f34-8f82-111ec78c8aa9` |
| 4341 | `shieldHeater_prague_D` | City of Prague heater shield | 9 | 821 | `77d8b552-8618-4506-ae20-fd3f74cad8f3` |
| 4342 | `shieldHeater_prague_D_broken` | Broken shield | 3.5 | 1 | `8fdc225b-e016-4698-b44b-feeaad509688` |
| 4343 | `shieldHeater_sigismund_A` | Hungarian heater shield | 9 | 821 | `4a13b6f7-1b8d-4b60-ab66-cacbed951120` |
| 4344 | `shieldHeater_sigismund_A_broken` | Broken shield | 3.5 | 1 | `11b0556d-8439-473b-b8da-02ec3f2dd176` |
| 4345 | `shieldHeater_sigismund_B` | Hungarian heater shield | 9 | 821 | `c0b01938-8a36-4418-9a59-97073adf3dc3` |
| 4346 | `shieldHeater_sigismund_B_broken` | Broken shield | 3.5 | 1 | `af74e4b7-6318-4f8b-98d0-88df2c188fe7` |
| 4347 | `shieldHeater_sigismund_C` | Hungarian heater shield | 9 | 821 | `f18fa1f2-b7f9-4b38-ba54-5561e8a06a8c` |
| 4348 | `shieldHeater_sigismund_C_broken` | Broken shield | 3.5 | 1 | `c69f4881-7ab7-4fee-a440-6e9dafa8b757` |
| 4349 | `shieldHeater_sigismund_D` | Hungarian heater shield | 9 | 821 | `fd63e1fe-54f3-436d-9dcc-3839ba7236c5` |
| 4350 | `shieldHeater_sigismund_D_broken` | Broken shield | 3.5 | 1 | `9023e808-a974-48b8-b66d-03f6ba6c21b3` |
| 4351 | `ShieldHeater_TournamentA` | Kuttenberg heater shield | 9 | 821 | `f0bae829-2681-4346-81ab-a5c4f790ed86` |
| 4352 | `ShieldHeater_TournamentA_broken` | Broken shield | 3.5 | 1 | `b2acb776-283a-4159-a87d-c45fe78b8c5e` |
| 4353 | `ShieldHeater_TournamentB` | Kuttenberg heater shield | 9 | 821 | `b0270a6f-740f-4f04-a7f7-e948188c497e` |
| 4354 | `ShieldHeater_TournamentB_broken` | Broken shield | 3.5 | 1 | `e9020954-9e0d-435d-b8af-5cbcaf4f0dec` |
| 4355 | `shieldHeater_whole_K` | Heater shield | 9 | 617 | `8baa70c0-222a-42dc-a289-035c83a33d5e` |
| 4356 | `shieldHeater_whole_K_broken` | Broken shield | 3.5 | 1 | `b5e8fa52-02c7-49e4-83d7-2d6e20e1b73d` |
| 4357 | `shieldHeater_whole_R` | Heater shield | 9 | 617 | `37bffa89-4b82-48f9-9e84-b52c0130b0af` |
| 4358 | `shieldHeater_whole_R_broken` | Broken shield | 3.5 | 1 | `3ff4015d-170c-415c-99e4-a03b94c63b96` |
| 4359 | `shieldHeater_whole_T` | Heater shield | 9 | 617 | `401266f6-ffb4-4ad0-a8e1-4a3cb3edab3e` |
| 4360 | `shieldHeater_whole_T_broken` | Broken shield | 3.5 | 1 | `b0d340dc-6417-4e88-9b1f-a1e95b3d0eb9` |
| 4361 | `shieldHeater_whole_W` | Heater shield | 9 | 617 | `f0720bb0-b964-40fe-b358-b84a35ecb601` |
| 4362 | `shieldHeater_whole_W_broken` | Broken shield | 3.5 | 1 | `43778a4a-03a8-4e88-8ac1-e7a9310c0bec` |
| 4363 | `shieldHeater_zavis` | Sir Zavish heater shield | 9 | 923 | `8b85f082-9af2-45c1-9acd-50a606577b5f` |
| 4364 | `shieldHeater_zavis_broken` | Broken shield | 3.5 | 1 | `9ea80468-1233-4abd-9d8e-a0f984a80c7a` |
| 4365 | `shieldHeater_zizka` | Heater shield | 9 | 923 | `0bb723a5-7a89-496b-b078-ea292654d75d` |
| 4366 | `shieldHeater_zizka_broken` | Broken shield | 3.5 | 1 | `84d65f27-c7be-47a9-8c29-ffcebcf3598b` |
| 4367 | `shieldHeater_zizka_inverted` | Heater shield | 9 | 821 | `debd1e06-b4da-487a-bd19-09fdd568b013` |
| 4368 | `shieldKite_3Wells_A` | Painter's Guild knight shield | 6.8 | 1433 | `73110793-50ca-4c3b-8091-7de1d117eca2` |
| 4369 | `shieldKite_3Wells_A_broken` | Broken shield | 3.5 | 1 | `dbd9d554-23dc-488b-b61d-b9252af58d30` |
| 4370 | `shieldKite_3Wells_B` | Painter's Guild knight shield | 6.8 | 1433 | `0b5b88e2-79d2-4913-95e3-42dc7391d770` |
| 4371 | `shieldKite_3Wells_B_broken` | Broken shield | 3.5 | 1 | `1515a3a1-135b-4201-a32d-e2366c6de0c8` |
| 4372 | `shieldKite_armoursmith` | Painter's Guild knight shield | 6.8 | 1433 | `8f8e224e-a152-4ffe-a765-3b706b047c12` |
| 4373 | `shieldKite_bendy_by` | Knight shield | 6.8 | 1433 | `4fc47d26-bd9a-4031-ad4c-d37a837065bd` |
| 4374 | `shieldKite_bendy_by_broken` | Broken shield | 3.5 | 1 | `813e821c-983c-4cbf-afe3-2676d2c2a886` |
| 4375 | `shieldKite_bendy_devil` | Knight shield | 6.8 | 3167 | `2a668746-916a-41db-b079-29c7aa4a9845` |
| 4376 | `shieldKite_bendy_gw` | Knight shield | 6.8 | 1433 | `5e8aa93b-d1ff-476b-b526-a4f1b1eaa26d` |
| 4377 | `shieldKite_bendy_gw_broken` | Broken shield | 3.5 | 1 | `ccdcee10-d881-4aaa-abdf-bd45487d5d3b` |
| 4378 | `shieldKite_bendy_gy` | Knight shield | 6.8 | 1433 | `fd0449fd-931f-4ede-a752-f419617297af` |
| 4379 | `shieldKite_bendy_gy_broken` | Broken shield | 3.5 | 1 | `cbde6e25-f407-4a59-9cd7-7f3e90c624ec` |
| 4380 | `shieldKite_bendy_quart_by` | Knight shield | 6.8 | 1433 | `d761c5d4-6ad2-4459-87a8-8303f5abe56b` |
| 4381 | `shieldKite_bendy_quart_by_broken` | Broken shield | 3.5 | 1 | `4ae5d82b-ca6b-47ae-be52-4319b1b45b73` |
| 4382 | `shieldKite_bendy_quart_kw` | Knight shield | 6.8 | 1433 | `1591c971-af3b-426e-b8de-6737ad200d90` |
| 4383 | `shieldKite_bendy_quart_kw_broken` | Broken shield | 3.5 | 1 | `69e092f2-da95-43f3-877f-7095839bd72d` |
| 4384 | `shieldKite_bendy_quart_kw_inverted` | Knight shield | 6.8 | 1433 | `336de311-0438-46ae-ab3c-5366cb0cb1a4` |
| 4385 | `shieldKite_bendy_quart_rw_A` | Knight shield | 6.8 | 1433 | `e211f5c1-d943-4ae3-8b7e-1fa5ec2205d0` |
| 4386 | `shieldKite_bendy_quart_rw_A_broken` | Broken shield | 3.5 | 1 | `0904f2e0-a446-4374-87b1-f5729ac109b9` |
| 4387 | `shieldKite_bendy_quart_rw_B` | Knight shield | 6.8 | 1433 | `623a91a2-4668-403f-bd6b-0d64996e0046` |
| 4388 | `shieldKite_bendy_quart_rw_B_broken` | Broken shield | 3.5 | 1 | `fa9f0438-4b43-4629-9257-d9e728bffe8d` |
| 4389 | `shieldKite_bendy_quart_rwg` | Knight shield | 6.8 | 1433 | `4bc7d395-bc6e-4695-8e7f-7f0a1c57e9b7` |
| 4390 | `shieldKite_bendy_quart_rwg_broken` | Broken shield | 3.5 | 1 | `42346c85-9142-4511-996e-72a063ea69b7` |
| 4391 | `shieldKite_bendy_quart_rwy` | Knight shield | 6.8 | 1433 | `de9ec038-db8a-418c-aea8-2d5d32964bd5` |
| 4392 | `shieldKite_bendy_quart_rwy_broken` | Broken shield | 3.5 | 1 | `809d192c-b92b-43ab-b064-95ff3815bb08` |
| 4393 | `shieldKite_bendy_quart_ry` | Knight shield | 6.8 | 1433 | `42ec210a-7603-456f-afb4-9b9ebe3f66ee` |
| 4394 | `shieldKite_bendy_quart_ry_broken` | Broken shield | 3.5 | 1 | `8b44923c-63db-4cc5-bb59-709da6b51975` |
| 4395 | `shieldKite_bendy_rg` | Knight shield | 6.8 | 1433 | `fda4de4f-3528-4d98-a8bb-d39318a130f8` |
| 4396 | `shieldKite_bendy_rg_broken` | Broken shield | 3.5 | 1 | `68c2dda2-4031-4d46-b26d-e5e4d3dd3383` |
| 4397 | `shieldKite_bendy_rw` | Knight shield | 6.8 | 1433 | `51a6d174-1994-4ea8-a9a7-78b6c3e89777` |
| 4398 | `shieldKite_bendy_rw_broken` | Broken shield | 3.5 | 1 | `75c1d086-48e9-4ee5-b570-92b4cec7f203` |
| 4399 | `shieldKite_bendy_ry` | Knight shield | 6.8 | 1433 | `4c50b2ef-2103-4d64-91e8-209df3ae2368` |
| 4400 | `shieldKite_bendy_ry_broken` | Broken shield | 3.5 | 1 | `81402465-f7ee-4af1-9dc7-23e58632d8e3` |
| 4401 | `shieldKite_bergov_A` | Von Bergow knight shield | 6.8 | 1603 | `1da8f314-6441-4afc-9a4a-f516067e9613` |
| 4402 | `shieldKite_bergov_A_broken` | Broken shield | 3.5 | 1 | `f999b3e2-e4b5-45b3-921b-561dcee0da56` |
| 4403 | `shieldKite_bergov_B` | Von Bergow knight shield | 6.8 | 1603 | `c37d067f-7342-4952-a8ce-2e2d78832d7f` |
| 4404 | `shieldKite_bergov_B_broken` | Broken shield | 3.5 | 1 | `41f20deb-383d-455b-8d8e-fa31f9c783e6` |
| 4405 | `shieldKite_blacksmith` | Painter's Guild knight shield | 6.8 | 1433 | `a2e87cf2-30d2-410f-8234-547a7e1ba7ee` |
| 4406 | `shieldKite_broken` | Broken shield | 3.5 | 1 | `3b01bffa-b555-494c-bdbd-389459ccd9f4` |
| 4407 | `shieldKite_cech_A` | Cobblers' Guild knight shield | 6.8 | 2216 | `375a0d96-e0e4-4fa5-9cf0-2186387aba97` |
| 4408 | `shieldKite_cech_A_broken` | Broken shield | 3.5 | 1 | `468d5b94-e33c-49e4-b77d-18402efa5bb4` |
| 4409 | `shieldKite_cech_B` | Apothecary guild knight shield | 6.8 | 2216 | `cb183f59-3a57-4f13-ba35-3ba456c1092e` |
| 4410 | `shieldKite_cech_B_broken` | Broken shield | 3.5 | 1 | `6a2e4d42-708d-412f-be0a-fa492961db4c` |
| 4411 | `shieldKite_cech_C` | Saddler guild knight shield | 6.8 | 2216 | `f9f651ef-c619-4c47-81b3-7d00e593168a` |
| 4412 | `shieldKite_cech_C_broken` | Broken shield | 3.5 | 1 | `69883082-35a7-4d36-b00d-9ab08b3b2587` |
| 4413 | `shieldKite_cech_D` | Butcher guild knight shield | 6.8 | 2216 | `11c0f7a7-2472-4852-8529-119d07142af7` |
| 4414 | `shieldKite_cech_D_broken` | Broken shield | 3.5 | 1 | `d5250a9f-5ccf-4533-964e-73448eb72132` |
| 4415 | `shieldKite_cech_E` | Painter's Guild knight shield | 6.8 | 2216 | `3cb76456-51fb-4c9b-a56f-ed2836e8ad71` |
| 4416 | `shieldKite_cech_E_broken` | Broken shield | 3.5 | 1 | `b7655622-1ffb-4e55-94be-c091b04c115a` |
| 4417 | `shieldKite_cech_F` | Baker guild knight shield | 6.8 | 2216 | `b797e1c2-c557-46ea-a47f-abce7b1bb030` |
| 4418 | `shieldKite_cech_F_broken` | Broken shield | 3.5 | 1 | `8970ef5c-72c0-4509-ac07-8a789d4629a8` |
| 4419 | `shieldKite_chevronny_gw` | Knight shield | 6.8 | 1433 | `df271db8-60ac-46ec-9695-884bbb909f94` |
| 4420 | `shieldKite_chevronny_gw_broken` | Broken shield | 3.5 | 1 | `c13e93f4-94e1-4af1-aae6-139eb29f8f28` |
| 4421 | `shieldKite_chevronny_rw` | Knight shield | 6.8 | 1433 | `f93404c6-c41b-4336-8813-3ffef8c40392` |
| 4422 | `shieldKite_chevronny_rw_broken` | Broken shield | 3.5 | 1 | `ff9b02d2-9021-49fa-b45c-70e3488215cd` |
| 4423 | `shieldKite_chevronny_rwy` | Knight shield | 6.8 | 1433 | `dcac80d1-1aa8-4e3d-8267-d47b21a291fe` |
| 4424 | `shieldKite_chevronny_rwy_broken` | Broken shield | 3.5 | 1 | `b9f4451d-21b0-40aa-8923-c719c3c3a572` |
| 4425 | `shieldKite_chevronny_yk` | Knight shield | 6.8 | 1433 | `507c52b0-ff18-4d5c-96cf-b9da881752d3` |
| 4426 | `shieldKite_chevronny_yk_broken` | Broken shield | 3.5 | 1 | `1839a31c-975c-47b5-9ab9-6e9ff074d22a` |
| 4427 | `shieldKite_cimburk` | Lords of Zimburg knight shield | 6.8 | 1433 | `ea0e2dc9-fbd2-4aba-86d5-2ada3633938c` |
| 4428 | `shieldKite_cimburk_broken` | Broken shield | 3.5 | 1 | `7dc3c5f1-3903-4c3f-9094-f58b893a9b82` |
| 4429 | `shieldKite_cross_gw` | Knight shield | 6.8 | 1433 | `2d650f43-0ffd-45a5-a03b-79dc7b9bc50c` |
| 4430 | `shieldKite_cross_gw_broken` | Broken shield | 3.5 | 1 | `1e420753-53eb-4b3e-a05c-c99a46520ea5` |
| 4431 | `shieldKite_cross_gy` | Knight shield | 6.8 | 1433 | `5822e9d1-2701-4ddf-b7f1-96f720ea9ad2` |
| 4432 | `shieldKite_cross_gy_broken` | Broken shield | 3.5 | 1 | `2d3a480d-0813-4eef-a4b5-289d253f7898` |
| 4433 | `shieldKite_cross_rw` | Knight shield | 6.8 | 1433 | `917c2ca3-dc44-46da-b35b-fb1afa66993b` |
| 4434 | `shieldKite_cross_rw_broken` | Broken shield | 3.5 | 1 | `74261b17-d32f-4332-b28f-f66ca78f2493` |
| 4435 | `shieldKite_cross_ry` | Knight shield | 6.8 | 1433 | `5a385f87-eadf-4542-84a1-728635365f4d` |
| 4436 | `shieldKite_cross_ry_broken` | Broken shield | 3.5 | 1 | `15f1b368-8111-4dee-8583-18196f0b4199` |
| 4437 | `shieldKite_cross_yk` | Knight shield | 6.8 | 1433 | `60dc71ac-80c9-4349-b9b2-49eae3dcba2c` |
| 4438 | `shieldKite_cross_yk_broken` | Broken shield | 3.5 | 1 | `51d0bdc9-725b-4862-aa73-be0cf2734e25` |
| 4439 | `shieldKite_deserter_A` | Deserter's kite shield | 6.8 | 1557 | `2d59f644-4bdf-4059-9afa-805f47c00ac7` |
| 4440 | `shieldKite_deserter_A_broken` | Broken shield | 3.5 | 1 | `eeed7c34-2b1c-4919-a732-c2822e9e7898` |
| 4441 | `shieldKite_embattled_gy` | Knight shield | 6.8 | 1433 | `72d798c0-7b6b-44e6-b8ec-0cb867d09f59` |
| 4442 | `shieldKite_embattled_gy_broken` | Broken shield | 3.5 | 1 | `5c5bbf87-1f99-4d5b-b0b8-b66291bd1be4` |
| 4443 | `shieldKite_embattled_wk` | Knight shield | 6.8 | 1433 | `9019a96a-d751-4a2f-b7d2-d9d397f54b71` |
| 4444 | `shieldKite_embattled_wk_broken` | Broken shield | 3.5 | 1 | `ed47155f-df8b-482d-8452-308826befd36` |
| 4445 | `shieldKite_embattled_yk` | Knight shield | 6.8 | 1433 | `c67bcfb5-3e7d-462e-ae2f-3f9a909baa11` |
| 4446 | `shieldKite_embattled_yk_broken` | Broken shield | 3.5 | 1 | `6e5ffd57-f39f-4792-9fe4-d72d580ee42b` |
| 4447 | `shieldKite_gyronny_gy` | Knight shield | 6.8 | 1433 | `55f81ddb-7c17-41c5-a17c-c9948766c1c8` |
| 4448 | `shieldKite_gyronny_gy_B` | Knight shield | 6.8 | 1433 | `286eedad-e2d8-47e0-9a54-d506188b4de8` |
| 4449 | `shieldKite_gyronny_gy_B_broken` | Broken shield | 3.5 | 1 | `8905fc7c-991b-43a3-ada8-a2cf09301f0e` |
| 4450 | `shieldKite_gyronny_gy_broken` | Broken shield | 3.5 | 1 | `0d6c74d1-9639-4254-89e4-19947389db75` |
| 4451 | `shieldKite_gyronny_pisek_broken` | Broken shield | 3.5 | 1 | `cd277cc4-ce2b-4f0c-8fd0-36c9ec38bc88` |
| 4452 | `shieldKite_gyronny_rwy` | Knight shield | 6.8 | 1433 | `49c066ef-3ffb-40ca-8bc7-90ea6380fc75` |
| 4453 | `shieldKite_gyronny_rwy_broken` | Broken shield | 3.5 | 1 | `6da25d7c-28e3-4f51-a8b1-83ca9d41bb0b` |
| 4454 | `shieldKite_gyronny_yb` | Knight shield | 6.8 | 1433 | `c0535569-5d85-40cf-9b8c-0fd97cce94df` |
| 4455 | `shieldKite_gyronny_yb_broken` | Broken shield | 3.5 | 1 | `ab0f6a86-4064-4c73-a4ad-7dd78748e605` |
| 4456 | `shieldKite_gyronny_yk` | Knight shield | 6.8 | 1433 | `36599060-fae4-45f9-8932-3ebf97ff8dd7` |
| 4457 | `shieldKite_gyronny_yk_broken` | Broken shield | 3.5 | 1 | `071f0909-41e6-4420-8642-7b289328d6e7` |
| 4458 | `shieldKite_kuttenberg_A` | Kuttenberg knight shield | 6.8 | 1603 | `a18df8ed-8a4a-47fa-a9fc-bbf8a7f72d68` |
| 4459 | `shieldKite_kuttenberg_A_broken` | Broken shield | 3.5 | 1 | `047bb3c5-f12f-4c12-905b-6e3a3908ea60` |
| 4460 | `shieldKite_kuttenberg_B` | Kuttenberg knight shield | 6.8 | 1603 | `23d3d037-6eb4-46dd-b294-10b0951b85f8` |
| 4461 | `shieldKite_kuttenberg_B_broken` | Broken shield | 3.5 | 1 | `63e1c614-0694-475d-bb25-6a361db62f3e` |
| 4462 | `shieldKite_lipa` | Von Bergow knight shield | 7.5 | 3433 | `d415e4ba-bdbd-49f0-8a55-7249a5f8b56e` |
| 4463 | `shieldKite_lipa_broken` | Von Bergow knight shield | 7.5 | 3433 | `caa1b42b-856e-4ebe-944b-9f562937014e` |
| 4464 | `shieldKite_nebak_A` | Lords of Nebakov kite shield | 6.8 | 1603 | `22b5e6e1-af04-41ec-8928-3eeca79954c6` |
| 4465 | `shieldKite_nebak_A_broken` | Broken shield | 3.5 | 1 | `738bdbfd-a47c-48bc-8173-2a6dbbc7ea3d` |
| 4466 | `shieldKite_nebak_B` | Lords of Nebakov kite shield | 6.8 | 1603 | `d207256d-37e3-40b0-975d-ef79ea303987` |
| 4467 | `shieldKite_nebak_B_broken` | Broken shield | 3.5 | 1 | `ca442192-00f4-458a-98ab-669d4b7113dd` |
| 4468 | `shieldKite_nebak_C` | Lords of Nebakov kite shield | 6.8 | 1603 | `716d5995-0ba7-4f04-a7ad-0f1e0a7b4783` |
| 4469 | `shieldKite_nebak_C_broken` | Broken shield | 3.5 | 1 | `1e74d5d8-87dc-4299-bfbd-05b58bf76824` |
| 4470 | `shieldKite_nebak_C_inverted` | Lords of Nebakov kite shield | 6.8 | 1603 | `6e6bdeb8-a74e-4b40-b7fb-1b1d871011f5` |
| 4471 | `shieldKite_owl` | Owl shield | 6.8 | 1603 | `3b364848-b6e6-4dae-a4f4-fd25b1e13a0a` |
| 4472 | `shieldKite_owl_broken` | Broken shield | 3.5 | 1 | `3b055043-0d44-4afa-85e6-7570ebe1105b` |
| 4473 | `shieldKite_partyPerBend_by` | Knight shield | 6.8 | 1433 | `34d6dfae-ed5c-42dc-80b6-2024c218f51e` |
| 4474 | `shieldkite_partyPerBend_by` | Knight shield | 6.8 | 1433 | `87a669a7-cfd7-41b1-9986-8efa6d7190e3` |
| 4475 | `shieldkite_partyPerBend_by_broken` | Broken shield | 3.5 | 1 | `138b840c-97b9-4a23-a867-d4c429833f36` |
| 4476 | `shieldKite_partyPerBend_by_broken` | Broken shield | 3.5 | 1 | `497fc3e0-199d-41b4-81c3-549f33553ad9` |
| 4477 | `shieldKite_partyPerBend_gr` | Knight shield | 6.8 | 1433 | `beb081de-3b58-41a5-b63b-b6c23e3b33e1` |
| 4478 | `shieldKite_partyPerBend_gr_broken` | Broken shield | 3.5 | 1 | `0ce5a522-de1c-4bff-b227-a3720231c337` |
| 4479 | `shieldKite_partyPerBend_rw` | Knight shield | 6.8 | 1433 | `e1531816-a770-450f-b481-1aee33d9e6cc` |
| 4480 | `shieldKite_partyPerBend_rw_broken` | Broken shield | 3.5 | 1 | `675384aa-868e-40ea-92e4-fbad5d25a287` |
| 4481 | `shieldKite_partyPerBend_wk` | Knight shield | 6.8 | 1433 | `1b078cf2-f9fe-471e-9826-8f910e1fd2b8` |
| 4482 | `shieldKite_partyPerBend_wk_broken` | Broken shield | 3.5 | 1 | `e381f3cc-cc3d-48b3-852b-b25ebd2a3241` |
| 4483 | `shieldKite_partyPerBend_yk` | Knight shield | 6.8 | 1433 | `54256710-5fc3-4b87-9bb6-e9b7c13bc312` |
| 4484 | `shieldKite_partyPerBend_yk_broken` | Broken shield | 3.5 | 1 | `d1298187-e5a2-4e27-a547-a22b2ae82bf0` |
| 4485 | `shieldKite_partyPerFess_yb` | Knight shield | 6.8 | 1433 | `cfedddee-170b-4a18-bdd7-cb778eb3615e` |
| 4486 | `shieldKite_partyPerFess_yb_broken` | Broken shield | 3.5 | 1 | `da64ea38-cb63-4538-b143-948bbef2359e` |
| 4487 | `shieldKite_partyPerPale_rw` | Knight shield | 6.8 | 1433 | `aaffc5ae-7ea4-4e80-9049-9a59c5ea4613` |
| 4488 | `shieldKite_partyPerPale_rw_broken` | Broken shield | 3.5 | 1 | `50d486b0-b08c-4b3c-8001-2c4db8610e71` |
| 4489 | `shieldKite_pisek_A` | Lords of Hradetz knight shield | 6.8 | 1603 | `4d45ed69-965f-4d1c-8ec7-01c7c7e753da` |
| 4490 | `shieldKite_pisek_A_broken` | Broken shield | 3.5 | 1 | `f900a652-6e59-4044-95f9-32788c12ba57` |
| 4491 | `shieldKite_pisek_B` | Lords of Hradetz knight shield | 6.8 | 1603 | `4608da9f-1525-417e-bfb6-47d0ea019969` |
| 4492 | `shieldKite_pisek_B_broken` | Broken shield | 3.5 | 1 | `403e5b2c-d3bf-4fa4-918f-f28528835f29` |
| 4493 | `shieldKite_pisek_C` | Lords of Hradetz knight shield | 6.8 | 1603 | `56c60b82-5028-4b67-994d-7575e521ecea` |
| 4494 | `shieldKite_pisek_C_broken` | Broken shield | 3.5 | 1 | `97b29e9b-bab2-4e2a-a6f8-6eaec0ae0ef0` |
| 4495 | `shieldKite_prague_A` | Old Town of Prague knight shield | 6.8 | 1603 | `e784827b-ea4a-43d3-afa4-91c1bb6b40df` |
| 4496 | `shieldKite_prague_A_broken` | Broken shield | 3.5 | 1 | `26fd7a5c-30f1-4a3a-86a8-329adb731fd8` |
| 4497 | `shieldKite_prague_B` | Old Town of Prague knight shield | 6.8 | 1603 | `fd65fbb0-115b-4b63-a410-c235a69860a1` |
| 4498 | `shieldKite_prague_B_broken` | Broken shield | 3.5 | 1 | `a7735341-9bf4-45a3-b871-9619421e8be2` |
| 4499 | `shieldKite_prague_B_inverted` | Old Town of Prague knight shield | 6.8 | 1603 | `0ed110ff-ce58-4db6-a12a-fcb6d3b7781c` |
| 4500 | `shieldKite_prague_C` | Old Town of Prague knight shield | 6.8 | 1603 | `c55e7377-465c-46c5-b0fc-e1bb4cd81933` |
| 4501 | `shieldKite_prague_C_broken` | Broken shield | 3.5 | 1 | `96c3311f-0d00-4ec1-bc85-72719e644fd4` |
| 4502 | `shieldKite_prague_C_inverted` | Old Town of Prague knight shield | 6.8 | 1603 | `eb842e62-99bf-4295-b2cd-126470072bec` |
| 4503 | `shieldKite_redstar_A` | Order of the cross knight shield | 6.8 | 2429 | `6c17cdca-9a14-4295-9175-fe0808b3107c` |
| 4504 | `shieldKite_redstar_A_broken` | Broken shield | 3.5 | 1 | `00ca5817-d30a-4afc-a9f0-72bfa3760a91` |
| 4505 | `shieldKite_redstar_B` | Order of the cross knight shield | 6.8 | 2429 | `3f208d28-ef2b-4308-9b5e-2112dd2d7299` |
| 4506 | `shieldKite_redstar_B_broken` | Broken shield | 3.5 | 1 | `f44c98f9-eff8-4868-8b37-d1994692ace2` |
| 4507 | `shieldKite_ruthard_A` | Lord Ruthard knight shield | 6.8 | 1603 | `e4e30492-4a8f-4bd3-aa4b-4c159b717b17` |
| 4508 | `shieldKite_ruthard_A_broken` | Broken shield | 3.5 | 1 | `e2e9fc26-8859-41b1-b667-c3fff45b007c` |
| 4509 | `shieldKite_ruthard_A_inverted` | Lord Ruthard knight shield | 6.8 | 1603 | `fb9b67e8-7362-4462-973e-2b0d77cb7576` |
| 4510 | `shieldKite_semin_A` | Lords of Semine knight shield | 6.8 | 1603 | `03457360-206e-42fb-9bfc-41509b84faed` |
| 4511 | `shieldKite_semin_A_broken` | Broken shield | 3.5 | 1 | `eb231faa-b879-40cf-9d31-bae3b6827bed` |
| 4512 | `shieldKite_sigismund_A` | Hungarian knight shield | 6.8 | 1603 | `50341116-226b-410f-abcb-4f2a52b0efe9` |
| 4513 | `shieldKite_sigismund_A_broken` | Broken shield | 3.5 | 1 | `75536233-0d88-432f-aee2-f9028ead6404` |
| 4514 | `shieldKite_sigismund_B` | Hungarian knight shield | 6.8 | 1603 | `94b119d6-2e57-4d63-ad93-56e669ea0294` |
| 4515 | `shieldKite_sigismund_B_broken` | Broken shield | 3.5 | 1 | `8ad3299c-2165-4c2f-9b23-42cacc025589` |
| 4516 | `shieldKite_sigismund_C` | Hungarian knight shield | 6.8 | 1603 | `99568f8c-fbbf-418a-811d-9874fab20cd2` |
| 4517 | `shieldKite_sigismund_C_broken` | Broken shield | 3.5 | 1 | `6adba5b0-f689-4bec-9cde-3e189eca468c` |
| 4518 | `shieldKite_skalitz` | Skalitz knight's shield | 6.5 | 1360 | `6c7d5c42-e6ac-4828-9f47-0da8e0343c57` |
| 4519 | `shieldKite_skalitz_02` | Sir Radzig knight's shield | 6.5 | 1480 | `e8cbe33f-4fe6-4079-a7c1-fa79007e9f80` |
| 4520 | `shieldKite_skalitz_02_broken` | Broken Shield | 3.5 | 1 | `ab8c078b-3059-4040-b410-3c224db2e9cb` |
| 4521 | `shieldKite_skalitz_broken` | Broken Shield | 3.5 | 1 | `1e9f0592-ad31-4764-97d8-834584c74c2c` |
| 4522 | `shieldKite_spring` | Shield of Spring | 6.8 | 583 | `7d75cb36-a8cf-47bc-9561-2d14f8a07a17` |
| 4523 | `shieldKite_spring_broken` | Broken shield | 3.5 | 1 | `726e092e-a46c-4909-9342-c86e9138c5bc` |
| 4524 | `shieldKite_teuton_01` | Teutonic knight's shield | 6.8 | 2184 | `e4d7d1c8-ba49-4f15-a229-bbfe1c5b90ed` |
| 4525 | `shieldKite_teuton_02` | Teutonic knight's shield | 6.8 | 2184 | `a64f0d12-1669-4055-9573-ebb325541cd9` |
| 4526 | `shieldKite_teuton_03` | Teutonic knight's shield | 6.8 | 2184 | `ed749f7d-1697-4242-95a5-781ec8b4a646` |
| 4527 | `shieldKite_twitch` | Warhorse shield | 6.8 | 583 | `90c3b622-1c1d-4bd1-bee7-6b1c04072c5c` |
| 4528 | `shieldKite_twitch_broken` | Broken shield | 3.5 | 1 | `7a06af38-c6e3-4aa5-ab40-eaa3435f62e6` |
| 4529 | `shieldKite_vavak_A` | Lords of Hradetz knight shield | 6.8 | 1603 | `ca4ad208-45d3-4aeb-9fa6-4bb51b2ee721` |
| 4530 | `shieldKite_vavak_A_broken` | Broken shield | 3.5 | 1 | `cf948721-3e2f-4784-90f8-52882b164bec` |
| 4531 | `shieldKite_vavak_B` | Lords of Hradetz knight shield | 6.8 | 1603 | `b5306c8c-e6bf-414b-bd5e-5d9b5b82eb98` |
| 4532 | `shieldKite_vavak_B_broken` | Broken shield | 3.5 | 1 | `b7b718ac-1879-49d6-a5d1-08ddc2cb469b` |
| 4533 | `shieldKite_weaponsmith` | Painter's Guild knight shield | 6.8 | 1433 | `80501645-b065-47fb-94a3-377d7db5a78d` |
| 4534 | `shieldKite_whole_K` | Knight shield | 6.8 | 1263 | `e4e1b22a-428a-4e20-aa92-ce216b324c0a` |
| 4535 | `shieldKite_whole_K_broken` | Broken shield | 3.5 | 1 | `de8c29ba-f9fd-4a4f-bd9d-c9fe11f9a10e` |
| 4536 | `shieldKite_whole_R` | Knight shield | 6.8 | 1263 | `760d7474-6e5f-4987-9631-d007d5fff22e` |
| 4537 | `shieldKite_whole_R_broken` | Broken shield | 3.5 | 1 | `8a34fd3a-dba8-4b92-8be8-b1887b301b67` |
| 4538 | `shieldKite_whole_T` | Knight shield | 6.8 | 1263 | `2fd517a8-e990-45a1-8fbc-e4b3636cf30a` |
| 4539 | `shieldKite_whole_T_broken` | Broken shield | 3.5 | 1 | `ff81bd2f-7d4f-468d-a984-cc0d32764050` |
| 4540 | `shieldKite_whole_W` | Knight shield | 6.8 | 1263 | `25d5e06c-09e2-405a-b0e8-4ffb6d44c975` |
| 4541 | `shieldKite_whole_W_broken` | Broken shield | 3.5 | 1 | `92e723a4-b4ce-445e-a636-d1b0fecf1ce3` |
| 4542 | `shieldKiteTraining` | Practice shield | 6.8 | 1263 | `d1b817a5-c9fc-4881-b8bf-03412d4c739b` |
| 4543 | `shieldPagan_broken` | Broken round shield | 3.5 | 1 | `f74c8503-89cf-4f35-878f-8a5a9ff503e8` |
| 4544 | `shieldPavise_bar_GW` | Painted pavese | 10.5 | 368 | `5bc71c77-9a4f-4463-8fc5-5a9a75363636` |
| 4545 | `shieldPavise_bar_GW_broken` | Painted pavese | 3.5 | 1 | `8e0a3341-c746-4f34-8d4b-7ea98ccdfa1e` |
| 4546 | `shieldPavise_bar_GY` | Painted pavese | 10.5 | 368 | `9b5ee641-63c9-49c0-8cc6-050ce015881b` |
| 4547 | `shieldPavise_bar_GY_broken` | Broken shield | 3.5 | 1 | `07707994-2239-4bd4-8403-687a5317c6e9` |
| 4548 | `shieldPavise_bar_KW` | Painted pavese | 10.5 | 368 | `3edb6ed3-6fef-4f7a-9ded-e0a842dce10e` |
| 4549 | `shieldPavise_bar_KW_broken` | Painted pavese | 3.5 | 1 | `3f4bef68-78ba-4668-8f42-15cec497c0d2` |
| 4550 | `shieldPavise_bar_RK` | Painted pavese | 10.5 | 368 | `9baedc28-f193-41a6-8035-2c6e3343219b` |
| 4551 | `shieldPavise_bar_RK_broken` | Painted pavese | 3.5 | 1 | `74fff27f-c725-416f-95fe-8f02d81f7dc5` |
| 4552 | `shieldPavise_bar_RW` | Painted pavese | 10.5 | 368 | `35bcedcd-dcd5-4209-9b93-4d8b14940b97` |
| 4553 | `shieldPavise_bar_RW_broken` | Painted pavese | 3.5 | 1 | `9251906f-2fc2-4abd-b1f1-1ed82842fa11` |
| 4554 | `shieldPavise_bar_RY` | Painted pavese | 10.5 | 368 | `5372ed88-2ccd-475a-bba9-027d7f30d6a2` |
| 4555 | `shieldPavise_bar_RY_broken` | Painted pavese | 3.5 | 1 | `d5aa332c-ac3b-4dd1-80e1-d219407d7e41` |
| 4556 | `shieldPavise_bergov_A` | Trosky pavese | 10.5 | 436 | `85dfcef8-f8aa-46cd-a4c3-798a23a42c23` |
| 4557 | `shieldPavise_bergov_A_broken` | Broken shield | 3.5 | 1 | `f09ab52a-33a4-4b61-b8c1-c5a10e46594d` |
| 4558 | `shieldPavise_bergov_B` | Trosky pavese | 10.5 | 436 | `22a4f287-b9c5-4b85-9196-9873664a6895` |
| 4559 | `shieldPavise_bergov_B_broken` | Broken shield | 3.5 | 1 | `3ab80dff-9b7d-4278-9797-d810fe41b9df` |
| 4560 | `shieldPavise_dragon` | Painted pavese | 10.5 | 504 | `6b131b8d-5bd4-4058-be3d-69de966b18c3` |
| 4561 | `shieldPavise_dragon_broken` | Painted pavese | 3.5 | 1 | `96ad9835-ecc5-455d-8c3b-6f32c0ac798b` |
| 4562 | `shieldPavise_GY_A` | Painted pavese | 10.5 | 368 | `292ea6c3-92b9-40a1-890c-d558ab00a8f2` |
| 4563 | `shieldPavise_GY_A_broken` | Painted pavese | 3.5 | 1 | `f071f33d-ba41-4460-b71a-2b34bd417360` |
| 4564 | `shieldPavise_half_KW` | Halved pavese | 10.5 | 368 | `ff74a5d0-86a3-4233-bbe9-2b56b104d28c` |
| 4565 | `shieldPavise_half_KW_broken` | Halved pavese | 3.5 | 1 | `e7c9316b-c722-4da7-96a5-48f3322de7d0` |
| 4566 | `shieldPavise_half_RK` | Halved pavese | 10.5 | 368 | `e116a835-82b6-4267-a44d-a911cae59f58` |
| 4567 | `shieldPavise_half_RK_broken` | Broken shield | 3.5 | 1 | `82e8b2bb-185a-4c74-becb-e8cee1afa435` |
| 4568 | `shieldPavise_half_RW` | Halved pavese | 10.5 | 368 | `c59ce78e-aacd-45e1-bf66-d7d65036be70` |
| 4569 | `shieldPavise_half_RW_broken` | Halved pavese | 3.5 | 1 | `8b9778e4-7dc8-4b21-9c03-490b7c357d3e` |
| 4570 | `shieldPavise_pisek_A` | Suchdol pavese | 10.5 | 436 | `3d4d4f2f-b6bd-4018-b0cf-1b3b1a4a4f93` |
| 4571 | `shieldPavise_pisek_A_broken` | Suchdol pavese | 3.5 | 1 | `959b851a-922f-4491-82fd-0527029d264d` |
| 4572 | `shieldPavise_pisek_B` | Suchdol pavese | 10.5 | 436 | `10f9a49f-07d0-4873-88d0-54d2cd5567f1` |
| 4573 | `shieldPavise_pisek_B_broken` | Broken shield | 3.5 | 1 | `0825641d-c879-4776-9dbe-903607a8a35f` |
| 4574 | `shieldPavise_pisek_C` | Suchdol pavese | 10.5 | 436 | `cb7cbe56-00e7-4f92-b19f-4479849fca71` |
| 4575 | `shieldPavise_pisek_C_broken` | Suchdol pavese | 3.5 | 1 | `81f039de-85b3-4bf1-b6a3-4e2370794ffe` |
| 4576 | `shieldPavise_Pisek_Combat_A` | Painted pavese | 10.5 | 436 | `e71fae45-527d-444d-a1bb-bbbb10bb427b` |
| 4577 | `shieldPavise_Pisek_Combat_A_02` | Painted pavese | 10.5 | 436 | `fbab9877-fb56-4aa9-bcd4-118ba9b0912d` |
| 4578 | `shieldPavise_Pisek_Combat_B` | Painted pavese | 10.5 | 436 | `7e3aeefd-f28f-4920-a07f-a0cdc91effa4` |
| 4579 | `shieldPavise_Pisek_Combat_C` | Painted pavese | 10.5 | 436 | `d063f365-dbb8-447a-a397-e5baafd95234` |
| 4580 | `shieldPavise_Pisek_Combat_D` | Painted pavese | 10.5 | 436 | `9e831117-8620-4c03-bde6-f99a9c0b2642` |
| 4581 | `shieldPavise_prague_A` | City of Prague pavese | 10.5 | 436 | `bc3c86e5-caab-44d5-abe0-75bbe7ccb345` |
| 4582 | `shieldPavise_prague_A_broken` | City of Prague pavese | 3.5 | 1 | `a8c53fc4-a1cd-43b6-972f-1532edd1fcc1` |
| 4583 | `shieldPavise_prague_B` | City of Prague pavese | 10.5 | 436 | `c6ea5c12-2137-4215-b7a8-9f0275a368c8` |
| 4584 | `shieldPavise_prague_B_broken` | Broken shield | 3.5 | 1 | `fce747f5-da7e-4218-8d41-b87b820cdab7` |
| 4585 | `shieldPavise_prague_C` | City of Prague pavese | 10.5 | 436 | `afeb5bfd-377a-415b-8822-baca01844e34` |
| 4586 | `shieldPavise_prague_C_broken` | Broken shield | 3.5 | 1 | `0a712525-e7b5-422c-8091-f541da6e6532` |
| 4587 | `shieldPavise_prague_D` | City of Prague pavese | 10.5 | 436 | `331cd114-03bd-401e-8c40-c7ddcfa14d8f` |
| 4588 | `shieldPavise_prague_D_broken` | Broken shield | 3.5 | 1 | `b5010b71-7826-49b7-8a9b-40ef61931db2` |
| 4589 | `shieldPavise_RG_A` | Painted pavese | 10.5 | 368 | `d4ff0247-2a74-4e6e-8506-2b85d3026b76` |
| 4590 | `shieldPavise_RG_A_broken` | Broken shield | 3.5 | 1 | `fe8e189d-842d-44c0-b81a-c89811aa6529` |
| 4591 | `shieldPavise_RGW_A` | Painted pavese | 10.5 | 368 | `cb59d1fe-4aac-4bd5-995f-bc58801c7c9e` |
| 4592 | `shieldPavise_RGW_A_broken` | Broken shield | 3.5 | 1 | `69035e60-2647-402e-ab30-74c0640062e6` |
| 4593 | `shieldPavise_RK_A` | Painted pavese | 10.5 | 368 | `aff5df75-e6f0-4f0f-a4b7-de6cd7ab0a5e` |
| 4594 | `shieldPavise_RK_A_broken` | Painted pavese | 3.5 | 1 | `95348c0c-05ee-4a09-a205-87f53e7f353f` |
| 4595 | `shieldPavise_RW_A` | Painted pavese | 10.5 | 368 | `66760529-5a60-4bc3-861b-6694d571f5a1` |
| 4596 | `shieldPavise_RW_A_broken` | Broken shield | 3.5 | 1 | `38757ef5-789a-4dc9-a487-7d7d5157748d` |
| 4597 | `shieldPavise_RWY_A` | Painted pavese | 10.5 | 368 | `119890f6-2063-4d53-9b39-52f015ed36ff` |
| 4598 | `shieldPavise_RWY_A_broken` | Painted pavese | 3.5 | 1 | `a22aa670-5448-4f38-b3b2-2c9b823d72aa` |
| 4599 | `shieldPavise_RY_A` | Painted pavese | 10.5 | 368 | `f371dead-0ea0-4d3b-9871-ab3fdc6328ec` |
| 4600 | `shieldPavise_RY_A_broken` | Painted pavese | 3.5 | 1 | `17ea77ae-d40b-42a1-8cbe-578a43e3687b` |
| 4601 | `shieldPavise_sigismund_A` | Hungarian pavese | 10.5 | 436 | `ec221952-a3f2-40e4-83a6-ee28a8870d0c` |
| 4602 | `shieldPavise_sigismund_A_broken` | Broken shield | 3.5 | 1 | `30c79280-bd4a-4612-8d58-c47c982727aa` |
| 4603 | `shieldPavise_sigismund_B` | Hungarian pavese | 10.5 | 436 | `0f182069-4dad-43b0-bba9-ed9f1ed8f209` |
| 4604 | `shieldPavise_sigismund_B_broken` | Hungarian pavese | 3.5 | 1 | `aa9e69d2-55de-4c32-bf48-35226c346532` |
| 4605 | `shieldPavise_teuton_01` | Teutonic pavese | 10.5 | 176 | `c9a95d87-d86e-43e7-a9ce-96fcdff87cfd` |
| 4606 | `shieldPavise_teuton_02` | Teutonic pavese | 10.5 | 176 | `87d7c73f-143e-4b21-8ef5-8d2d837962ae` |
| 4607 | `shieldPavise_whole_G` | Painted pavese | 10.5 | 300 | `8ce50591-6530-4787-96cb-726683dae13e` |
| 4608 | `shieldPavise_whole_G_broken` | Broken shield | 3.5 | 1 | `4337c61e-987b-4771-be95-e77aadf36f29` |
| 4609 | `shieldPavise_whole_K` | Painted pavese | 10.5 | 300 | `ee57f6f1-dc5c-489b-912a-bf3f3a76d357` |
| 4610 | `shieldPavise_whole_K_broken` | Painted pavese | 3.5 | 1 | `440a54d0-5413-4e4e-9fec-8726cf4f8a20` |
| 4611 | `shieldPavise_whole_R` | Painted pavese | 10.5 | 300 | `cf5a563b-2a84-4270-92ed-c414b46a82bf` |
| 4612 | `shieldPavise_whole_R_broken` | Painted pavese | 3.5 | 1 | `eaddf89e-6d03-40b5-87c3-7f344364d6da` |
| 4613 | `shieldPavise_whole_W` | Painted pavese | 10.5 | 300 | `684cb3f5-a873-44cb-9a8e-413b3bd6a0e5` |
| 4614 | `shieldPavise_whole_W_broken` | Painted pavese | 3.5 | 1 | `cb80d9e5-436b-4416-8400-f9067a7071cf` |
| 4615 | `shieldPavise_winter` | Shield of Winter | 10.5 | 300 | `f1a530c3-ab08-44dd-a67c-1f099c546063` |
| 4616 | `shieldPavise_winter_broken` | Broken shield | 3.5 | 1 | `9f5b2c66-ad53-4583-bd2c-6c2f78eced90` |
| 4667 | `shortSwordBasilard` | Basilard | 1.9 | 18662 | `e37bdf86-4cc8-4805-b04c-3b05964b9484` |
| 4668 | `shortSwordBasilard_broken` | Weapon stub | 1 | 35 | `432e5851-e789-4485-b2d5-3e878c626682` |
| 4669 | `shortswordBergov` | Lord von Bergow's sword | 2 | 27092 | `d419de71-5380-42ba-b8f0-9b41ee8208a3` |
| 4670 | `shortswordBergov_broken` | Weapon stub | 1 | 35 | `ba6a35cf-b2ce-46c6-91aa-686ac5d2e496` |
| 4671 | `shortswordBrabant` | Opportunity | 2.2 | 9630 | `50e86a48-6730-4415-9b0a-bc76f3894b1a` |
| 4672 | `shortswordBrabant_broken` | Weapon stub | 1 | 35 | `b53f8306-8199-46cc-9e25-ea1e542b7439` |
| 4673 | `shortswordBroad` | Broadsword | 2.4 | 15667 | `9aa773b1-ede0-4ff5-bbd8-2595b36c8a1a` |
| 4674 | `shortswordBroad_broken` | Weapon stub | 1 | 35 | `943b1882-e306-464a-a065-5772483c1407` |
| 4675 | `shortswordCeremony` | Noble's sword | 2 | 20784 | `4092572e-a62e-44b2-bbff-c1faa4f9caed` |
| 4676 | `shortswordCeremony_broken` | Weapon stub | 1 | 35 | `2ae9b309-1d86-4476-9387-62228d391c56` |
| 4677 | `shortswordCleaver` | Homemade hunting sword | 2.9 | 496 | `652db434-b7d6-448f-8671-10ca787ba1e2` |
| 4678 | `shortswordCommon` | Military sword | 3.2 | 3673 | `efa237c7-3905-4813-b9c3-a32b449c17ad` |
| 4679 | `shortswordCommon_broken` | Weapon stub | 1 | 35 | `a912b643-04c2-4e56-802f-10060d4fdde5` |
| 4680 | `shortswordCommon_khTournament` | Tournament sword | 3.3 | 827 | `f63af340-2ab6-49a7-9d12-bd06a0fa9712` |
| 4681 | `shortswordCommon_khTournament_broken` | Weapon stub | 1 | 35 | `41317002-bab9-4914-8e1d-537e339229af` |
| 4682 | `shortswordHeavy` | Knight's sword | 3.2 | 30466 | `b3f7a363-5526-45b1-a32b-422a0a8e4da4` |
| 4683 | `shortswordHeavy_broken` | Weapon stub | 1 | 35 | `09e5c8ba-217d-4eb2-8aec-be169f0929b1` |
| 4684 | `shortSwordStGeorge` | St. George's sword | 2.8 | 18662 | `1de68c81-3450-43ea-a36a-b183f9573035` |
| 4685 | `shortSwordStGeorge_broken` | Broken weapon | 1 | 1 | `b3226eb6-8cc3-41e8-b830-425913713c72` |
| 4686 | `shortswordTraining` | Training sword | 4 | 32 | `ff989889-6efc-48f4-8fed-886ea407714c` |
| 4687 | `shortswordTraining_broken` | Weapon stub | 1 | 35 | `90ae33aa-e93b-44a2-9ebf-adba8f2a0e99` |
| 4883 | `stealthMiseZaJindru_aulitzSword` | Markvart von Aulitz's sword | 4.9 | 26922 | `f1b140d4-8fb2-4088-97cf-be2849089b30` |
| 4885 | `stealthMiseZaJindru_samHuntingKnife` | Samuel's hunting sword | 2.1 | 4604 | `7f4cb8d6-d9f6-44dc-b883-5ae4da20cb26` |
| 4886 | `stealthMiseZaJindru_samHuntingKnife_broken` | Weapon stub | 1 | 35 | `f12c7fd6-363f-496d-b695-17760763c99a` |
| 4899 | `svatba_longswordTournament` | Tournament practice sword | 3.4 | 5000 | `6d8a625e-d9f1-49ee-8ee1-0f35e5c4e699` |
| 4909 | `svatyAntonin_svancaraAntonFlag` | St. Anthony's standard | 11.4 | 82 | `8325dc40-0ffc-4dfe-95dd-03f8a0735883` |
| 4911 | `svatyne_dagger` | Rondel dagger | 1 | 2500 | `2ab2abbc-1620-4ee0-924f-cbe1c90adcc4` |
| 4918 | `taboryLapkuTrosecko_plesnivecMace` | Canker's mace | 3.2 | 7256 | `8a9e3a36-213e-4b90-a4ec-518fdec1d980` |
| 4919 | `taboryLapkuTrosecko_plesnivecMace_broken` | Weapon stub | 1 | 1 | `a966bc20-b31f-4b7c-a4d6-2a5abe669f4f` |
| 4920 | `taboryLapkuTrosecko_tlamaShield` | Johnny the Gob's shield | 10.2 | 459 | `707470d0-9ce2-41ff-9836-1911f8420448` |
| 4921 | `taboryLapkuTrosecko_tlamaShield_broken` | Broken shield | 3.5 | 1 | `57002386-7329-4a53-a920-b7ae7c757abb` |
| 4959 | `test_axe_small_01` | A suspicious bag | 5 | 66 | `b6ce8b62-9cab-428f-b1e8-0e12823f18c8` |
| 4961 | `test_barbora_axe` | A suspicious bag | 5 | 66 | `edaa337a-5ed7-4d49-8b89-5d9693dabf1d` |
| 4962 | `test_barbora_axe_broken` | Placeholder axe | 5 | 0 | `3c498ca0-455f-4ebe-884d-f4c2ea7de6ff` |
| 4966 | `test_barbora_halberd` | A suspicious bag | 5 | 66 | `bd3b7884-dca8-41f8-8ea8-fb5a60e3135b` |
| 4967 | `test_barbora_huntingsword` | A suspicious bag | 5 | 66 | `d847b09b-3340-4eda-a038-385cc58ab47f` |
| 4970 | `test_barbora_longsword` | A suspicious bag | 5 | 66 | `8c6b9277-e7ad-4246-974a-65b7000fbc5a` |
| 4971 | `test_barbora_longsword_broken` | A suspicious bag | 5 | 66 | `3f454d39-6703-4311-8dc7-09ce9fc2d12f` |
| 4972 | `test_barbora_longsword_broken_short` | A suspicious bag | 5 | 66 | `bbe96b1d-072e-4bbe-8262-a30517a7ecca` |
| 4973 | `test_barbora_mace` | A suspicious bag | 5 | 66 | `63a1c8ca-1f25-44a3-9c10-a6c81856655a` |
| 4974 | `test_barbora_sabre` | A suspicious bag | 5 | 66 | `c162bb27-5684-4f0c-9ab6-ee30a1ead070` |
| 4975 | `test_barbora_shield` | A suspicious bag | 5 | 66 | `c3fd5fea-dbc4-44dd-9fc9-bb7dd24432ca` |
| 4976 | `test_barbora_shortsword` | A suspicious bag | 5 | 66 | `3ea65a63-5181-4957-b1cb-deab043f4d62` |
| 4977 | `test_barbora_shortsword_broken` | A suspicious bag | 5 | 66 | `53f6194b-d1be-4a7e-bcca-19c6e1a0645f` |
| 4978 | `test_barbora_shortsword_broken_10_10` | A suspicious bag | 5 | 66 | `b6a54450-9296-45eb-bf62-7ba8b41b743e` |
| 4979 | `test_barbora_shortsword_broken_10_5` | A suspicious bag | 5 | 66 | `4a80479c-ff4a-4463-b545-8c663fb7951d` |
| 4980 | `test_barbora_shortsword_broken_5_5` | A suspicious bag | 5 | 66 | `8ce8be73-7416-4d0d-8272-16a178efaa58` |
| 4982 | `test_barbora_stick` | A suspicious bag | 5 | 66 | `5d1a533b-c957-4875-9471-e76a48533968` |
| 4983 | `test_barbora_sword_long_broken_short ` | A suspicious bag | 5 | 66 | `c730a8f9-20f9-4631-9ea0-b0c50dd7af61` |
| 4990 | `test_better_shield` | A suspicious bag | 5 | 1666 | `a307f7aa-0000-4cbd-a349-f2a77036c100` |
| 4991 | `test_blacksmith_axe` | A suspicious bag | 5 | 100 | `808e13a4-810d-4ba6-8ce4-abf3dd62802e` |
| 4995 | `test_blacksmith_sword_high` | A suspicious bag | 5 | 35 | `328d293b-9913-4281-9804-ca62d72c31bb` |
| 4996 | `test_blacksmith_sword_low` | A suspicious bag | 5 | 35 | `ce1953df-9f10-4138-8fb1-393a11474553` |
| 5002 | `test_broken_sword_long` | A suspicious bag | 5 | 35 | `323b5472-5a46-42cc-92b9-64bb91de23aa` |
| 5013 | `test_dagger` | A suspicious bag | 5 | 66 | `6195801f-e7e4-429c-9db9-8b31a62126c8` |
| 5023 | `test_inventory_sword` | A suspicious bag | 5 | 735 | `8329c926-68bc-a46d-6e93-2459e0ca2b86` |
| 5031 | `test_long_spear_01` | A suspicious bag | 5 | 66 | `4bd249c6-0fea-4296-b60a-8d8a56ce76e6` |
| 5032 | `test_longscabbard_01` | A suspicious bag | 5 | 66 | `c2271223-0d25-4714-969e-ff74f7cdc227` |
| 5033 | `test_longscabbard_02` | A suspicious bag | 5 | 66 | `4f1b5ec1-1306-4d11-872e-27872aa400f8` |
| 5034 | `test_longscabbard_03` | A suspicious bag | 5 | 66 | `68f3ef09-143b-4853-9c85-cd6df38d2ad1` |
| 5038 | `test_npcoutfitting_longsword` | A suspicious bag | 5 | 2000 | `8c6b9277-e7ad-4246-974a-65b7000fcc56` |
| 5047 | `test_sabre_shortsword1` | A suspicious bag | 5 | 66 | `98851303-bf50-4a41-9aa7-aa33e025d0fb` |
| 5048 | `test_shortscabbard_01` | A suspicious bag | 5 | 66 | `b4252330-cbe9-44df-b189-77ec87efbe1d` |
| 5049 | `test_shortscabbard_02` | A suspicious bag | 5 | 66 | `c29540d1-c2b7-44a3-a567-a03dbb3f82ff` |
| 5056 | `test_sword_long_bad` | A suspicious bag | 5 | 735 | `f89230b0-338d-49df-b23b-7c830c249a2b` |
| 5057 | `test_sword_short` | A suspicious bag | 5 | 500 | `14254113-0f89-48cd-be6d-221be2d0a832` |
| 5058 | `test_sword_short_valuable` | A suspicious bag | 5 | 500000 | `938170cf-5df8-4807-a970-a88e802353bc` |
| 5059 | `test_swordWithLongName` | WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW | 2.2 | 0 | `2282541b-78b5-4a4a-95f2-39ba046defc3` |
| 5061 | `test_weapon_test2` | A suspicious bag | 5 | 66 | `419bd251-9da5-1971-10cd-8428a6bdcb91` |
| 5062 | `test_weapontest2` | A suspicious bag | 5 | 66 | `b11aeb90-5752-48a2-962e-af64fe618b4d` |
| 5066 | `torch_weapon` | Torch | 1 | 60 | `4cea28a0-0814-405a-bf24-4fd711f7eb63` |
| 5070 | `tournament_kuttenbergSword` | Kuttenberg longsword | 2.9 | 28544 | `5bda7534-6439-4424-bb9c-fe9737b79484` |
| 5071 | `tournament_kuttenbergSword_broken` | Weapon stub | 1 | 35 | `650f0278-7968-43a1-9aea-cabbd0e072dc` |
| 5072 | `tournament_maceHerald` | Tournament mace | 3.5 | 8975 | `fe6b84cb-29ca-4897-a380-ef5ab5573007` |
| 5073 | `tournament_maceHerald_broken` | Weapon stub | 1 | 1 | `73d76cba-003a-4d6f-afcd-cfdec4819a96` |
| 5074 | `tournament_shieldHeaterGold` | Golden tournament shield | 4.5 | 154 | `585fadfb-acb7-4c82-adf3-ef043d85ad21` |
| 5075 | `tournament_shieldHeaterRed` | Red tournament shield | 4.5 | 154 | `220af022-f66c-4083-8fbe-ced38c0f80e8` |
| 5257 | `uchazec_guildSword` | Blacksmiths' guild longsword | 2.4 | 32180 | `65dce76f-cbec-4355-8064-28151b78b818` |
| 5258 | `uchazec_guildSword_broken` | Weapon stub | 1 | 35 | `260592f7-563e-4ff2-a4e5-2043449c6811` |
| 5259 | `uchazec_guildSwordQuest` | Blacksmiths' guild longsword | 2.4 | 32180 | `77484a94-fdee-4c41-af36-1860302a9698` |
| 5433 | `warhammer01` | Common war hammer | 5.6 | 4470 | `9afb8d78-6f8d-4311-a9b9-11727f211ff3` |
| 5434 | `warhammer01_broken` | Weapon stub | 1 | 1 | `a2d34481-de50-41ed-8d9f-a52a5c9706af` |
| 5435 | `warhammer02` | Rider's war hammer | 6.3 | 9182 | `a92496ad-4a82-4815-93d8-5ae56bf78f88` |
| 5436 | `warhammer02_broken` | Weapon stub | 1 | 1 | `108b2f35-bfbb-4e20-bf5f-d0f4c59047ac` |
| 5437 | `warhammer03` | Knight's war hammer | 7 | 14279 | `5f7ecb68-3d15-4cbf-988a-9e8de87fa0d9` |
| 5438 | `warhammer03_broken` | Weapon stub | 1 | 1 | `31f86331-dfba-4b12-8641-f14af9307f09` |
| 5439 | `warhammer03_trollslayer` | Trollbane hammer | 10.3 | 18539 | `ce7a7cfe-3777-4804-861d-f5a09785ca4d` |
| 5440 | `warhammer03_trollslayer_broken` | Trollbane hammer stub | 1 | 1 | `93a87db1-c332-409a-9044-6e54b516c0ee` |
| 5441 | `warhammer04` | Lavish warhammer | 7.7 | 28973 | `8cfad378-f16e-418f-b8a7-2a23ae724932` |
| 5442 | `warhammer04_broken` | Weapon stub | 1 | 1 | `b28f5235-6e87-4e56-811c-69d4a9a605dd` |
| 5443 | `warhammerBasilisc` | Basilisk warhammer | 7.2 | 25500 | `01c3d4d6-b0a0-428f-b57b-8aee6fe3dfd8` |
| 5444 | `warhammerBasilisc_broken` | Weapon stub | 1 | 1 | `8c9b97c5-832b-4f0f-a9cb-79cdaed38100` |
| 5445 | `warhammerRaven` | Raven's beak | 7.7 | 26220 | `d5ccfb38-b110-4bc6-8af9-1dde41fabe12` |
| 5446 | `warhammerRaven_broken` | Weapon stub | 1 | 1 | `402f6fc6-147e-487b-8024-19e8d3ffb5b6` |
| 5447 | `warhammerStab` | War hammer | 7 | 14817 | `53fd0cb7-015a-48ed-a42f-cd41f4b1b491` |
| 5448 | `warhammerStab_broken` | Weapon stub | 1 | 1 | `1291b8ef-0300-4c77-adb3-2a29a13902b6` |
| 5559 | `zbranePanaSemina_sukClub` | Gnarly's club | 2.1 | 745 | `a425fe0d-f3b4-437c-95d8-8dba0296f2d1` |
| 5563 | `zbranePanaSemina_sukShield` | Gnarly's shield | 10.4 | 447 | `b7f2ba9b-9468-47e1-a7a8-2e2c0cff50e6` |
| 5564 | `zbranePanaSemina_sukShield_broken` | Broken shield | 3.5 | 1 | `73c0db9c-8885-4490-86c5-20df546f693c` |
| 5574 | `zikmunduvTabor_stabProofDagger` | Bloody knife | 1 | 230 | `884d8895-7406-46a7-9e86-ac8c4a1f70c1` |
| 5592 | `ztracenaCest_lordsOfHolohlavShield` | Lord of Holohlavy heater shield | 6 | 1150 | `d8f1a893-0e67-4f29-b897-1a831a3ab923` |
| 5593 | `ztracenaCest_lordsOfHolohlavShield_broken` | Broken shield | 3.5 | 1 | `6c606ca6-be8e-4283-850d-f2c43690d20b` |
# Items: Miscellaneous items
> The 414 item classes of the game's MiscItem table: id, name, English name, weight, price and class GUID.
The game's **`MiscItem`** rows - 414 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 73 | `andelStraznyAstrolab` | Astrolabe | 2 | 18000 | `ff0e9782-252b-4cba-8931-62b0ff08bd21` |
| 74 | `animal_animalPulp` | Frikadelle | 1 | 4 | `3650cb5f-c380-4eba-89aa-06be675c4dff` |
| 75 | `animal_antlers` | Deer antlers | 4 | 450 | `e8676cb3-98a9-4a71-949e-cb463e6f7732` |
| 76 | `animal_sheepCasings` | Sheep guts | 0.25 | 15 | `6932b7a6-0870-4fa0-b8cc-f7dbde0add4f` |
| 77 | `animal_wolfEar` | Wolf ear | 0.25 | 80 | `d328f612-9fc1-4f07-8fa0-8893b23ad3fb` |
| 122 | `arrow_broken` | Broken arrow | 0.1 | 0 | `3b5be706-3cac-4223-a780-039867c65c4d` |
| 137 | `artefakt_BavorCoatofArmsDrawing_animationProp` | Boleslav Bavor's coat of arms sketch | 0 | 0 | `12641dd7-d7de-4293-a5ac-240e00e6e9cd` |
| 139 | `artefakt_cemeteryGateKey` | Key to the cemetery gate | 0 | 0 | `e202f99a-06be-45ef-a29c-4df3f902ed2f` |
| 140 | `artefakt_libraryDoorKey` | Library key | 0 | 0 | `e35c2069-11ca-462b-82bf-eef746746efe` |
| 141 | `artefakt_relic` | True Cross splinter reliquary | 0 | 50000 | `634a05de-6ffa-4516-a5c3-e46542ab662a` |
| 142 | `artefakt_relic_animationProp` | True Cross splinter reliquary | 0 | 0 | `6357ad56-e115-4ef3-81cb-6bede9764ea0` |
| 143 | `artefakt_relic_animationProp_part_bottom` | True Cross splinter reliquary | 0 | 0 | `640ebf98-6d9a-45a2-921a-3e54063afa47` |
| 144 | `artefakt_relic_animationProp_part_top` | True Cross splinter reliquary | 0 | 0 | `6484d6a9-d30a-41a0-964b-3802e2296ea7` |
| 145 | `artefakt_relic_open` | True Cross splinter reliquary | 0 | 50000 | `cc3271ee-8b84-49f6-bd62-428e77e93215` |
| 175 | `azZaHrob_childLittleBone` | Dead child's bone | 0.1 | 18 | `d4184b39-49a3-48de-bf91-23a8d68eb2e3` |
| 176 | `azZaHrob_deadBabyToothDust` | Dead child's tooth powder | 0 | 18 | `e64b23b3-7cc8-4c10-9ff8-eb79585ddbc7` |
| 177 | `azZaHrob_deadDwarfThumb` | Dead dwarf's thumb | 0 | 14 | `87b9e727-43da-4968-94d1-749dd40e4850` |
| 178 | `azZaHrob_deadManShoeCoffin` | Dead man's left shoe | 2 | 8 | `edbcebfa-3cf5-474f-a70a-7b70a6ce8f3a` |
| 179 | `azZaHrob_deadManShoeSarcofag` | Dead man's right boot | 2 | 8 | `4d19c12c-41c0-4d6b-8a05-fced4bbb6949` |
| 180 | `azZaHrob_deadMenEar` | Dead man's ear | 0.1 | 18 | `c9275c1e-8897-4cfd-ac89-750c853a3a42` |
| 181 | `azZaHrob_deadVirginHair` | Dead virgin's hair | 0.1 | 12 | `fbb7926a-ed87-4da7-a88c-35a8c5673930` |
| 182 | `azZaHrob_hangManHair` | Hangman's hair | 0.1 | 12 | `52661b06-fe67-4f0c-b7f4-7f7dccbf4338` |
| 183 | `azZaHrob_revenantCoffinNail` | Revenant's coffin nail | 0.1 | 20 | `ac199213-ff21-41d6-85e2-f11938f12080` |
| 184 | `azZaHrob_sealDeadMiner` | Shaft owner's seal | 0 | 50 | `d765649a-a189-4bf9-8a83-223c320d46f8` |
| 185 | `azZaHrob_silveredStudSarcofag` | Silver-plated button | 0.1 | 4 | `e9728851-a8ae-4d6f-b761-cd97a824810f` |
| 186 | `azZaHrob_smallBrassCross` | Small brass crucifix | 0.1 | 4 | `5d27e973-e497-43ac-9b34-411b84395a5f` |
| 434 | `bazilisciVejce_basiliskEgg` | Basilisk egg | 0.2 | 500 | `81db3800-aded-4a25-8e6b-c53b7b056d30` |
| 435 | `bazilisciVejce_die` | Secret gambling den die | 0.1 | 170 | `aebf0cf6-7ace-4acf-89d7-6366a6ec01af` |
| 436 | `bazilisciVejce_roosterEgg` | Rooster's egg | 0.1 | 50 | `c372f14e-8b70-49de-abc8-390279615997` |
| 457 | `blacksmith_hammer` | Blacksmith's hammer | 1 | 1 | `0502824d-a654-4471-9978-c1624860dde1` |
| 458 | `blacksmith_tongs` | Anvil | 1 | 1 | `f22b7bb9-fa73-4aa1-92e6-3943e2be7e69` |
| 474 | `bohutovaVlozka_commemorativeRing` | Commemorative ring | 0 | 4500 | `93557378-21da-4664-aa52-a469e4834aa0` |
| 478 | `bolt_broken` | Broken bolt | 0.1 | 0 | `a1bbf4df-3242-498e-9595-7879665c4ee8` |
| 756 | `budovaniLazni_bathmaidsRoomKey` | Bathhouse bedchamber key | 0 | 0 | `0067c708-9a85-4034-b9fb-94975eda6bf3` |
| 757 | `budovaniLazni_hood` | Dirty hood | 0.8 | 10 | `24425968-42ff-4d92-8752-2a5fa6eebf20` |
| 758 | `budovaniLazni_mensShirt` | Stinking shirt | 2 | 10 | `ef36d745-0626-4faf-beee-b36f56cd08c6` |
| 759 | `budovaniLazni_miparti` | Ripped hose | 0.5 | 10 | `fb42f996-b1a5-4ecb-a801-a5604616611c` |
| 760 | `budovaniLazni_mug` | Beer tankard | 0.2 | 70 | `ffcc5e56-e448-48e0-b33d-8210e9431478` |
| 761 | `budovaniLazni_ownersRoomKey` | Adam's chambers' key | 0 | 0 | `3b25ebaa-4d67-457b-a3e4-a22b50beccce` |
| 762 | `budovaniLazni_slippers` | Stinky hat | 0.5 | 10 | `060b67f3-1d01-4bc3-ad19-d51f39cb50bc` |
| 763 | `budovaniLazni_womensChemise` | Chemise | 2 | 20 | `3b7dd2f0-6a48-4fbd-807c-7f110110a7db` |
| 1225 | `certiNaTroskach_water` | Water for Trosky devils | 0 | 420 | `9d8b45f4-3b2c-4cbf-8271-7f8adc2064e0` |
| 1243 | `churchDonations_eggsBasket` | Basket of eggs | 0 | 80 | `ce4fd7bc-3c1e-4f66-828f-e345ef0c7082` |
| 1541 | `common_humanBone` | Thigh bone | 0.2 | 75 | `915244fe-306e-4d6f-944d-3c459efff196` |
| 1542 | `common_humanSkull` | Human skull | 0.3 | 95 | `ee2eda1f-6e61-47cc-9c32-585ad79c5b2a` |
| 1543 | `common_needle` | Sewing needle | 0.1 | 42 | `f66192d0-67e8-4351-9753-9256df132e83` |
| 1648 | `damaVNesnazich_goldenRing` | Margaret's gold ring | 0 | 450 | `433ad7d6-cdc0-4dda-94d4-71d4ca4cc68c` |
| 1649 | `debug_veryheavyitem` | A suspicious bag | 100 | 0 | `b185ad3c-6e51-4298-a997-472eb37b8b2a` |
| 1714 | `dlc2_Cernokneznik_alchemystMaterialArabianGum` | Gum arabic | 0 | 2420 | `0bcf8fa8-d70a-4dfe-8a48-27796b46ac70` |
| 1715 | `dlc2_Cernokneznik_alchemystMaterialAsfalt` | Bitumen of Judea | 0 | 1850 | `0f0c6373-ca5e-4986-8c96-5608f33eef42` |
| 1716 | `dlc2_Cernokneznik_alchemystMaterialKalafuna` | Resin | 0 | 380 | `f2bd40d2-7145-441d-a4b9-403b8bb64b49` |
| 1717 | `dlc2_Cernokneznik_alchemystMaterialMastix` | Mastic | 0 | 1720 | `3e55b127-86bc-4d37-9550-527fed9b1cb1` |
| 1718 | `dlc2_Cernokneznik_alchemystMaterialQuickSilver` | Cinnabar amalgamate | 0 | 3250 | `ee9d7d5e-95c4-4e0d-9476-2a7321f8d9a0` |
| 1719 | `dlc2_Cernokneznik_IronHoop` | Engraved iron hoops | 0 | 1200 | `c4e14407-0655-47fd-ab77-2ebadc32fe31` |
| 1733 | `dlc2_MalirZlodejske_colors` | Sculptor's chisels | 0 | 1800 | `39759944-5afe-496c-a36d-2497f0a2cd36` |
| 1734 | `dlc2_MalirZlodejske_sketch` | Damian's drawing | 0 | 60 | `d5c0b702-7beb-427d-aaf5-e316c4410e6d` |
| 1735 | `dlc2_MalirZlodejske_sketch02` | Damian's drawing | 0 | 60 | `47b6578b-3e4b-40e8-ac1a-072309717f1a` |
| 1736 | `dlc2_masterStampRing` | Master blacksmith's seal ring | 0 | 3240 | `75b80593-4c7a-426e-a88a-edb09534cdd5` |
| 1737 | `dlc2_mrtvyNemluvi_ancaRing` | Ring for Anna | 0 | 450 | `fe1b6b82-d2c7-4709-ac21-2b17c03895ff` |
| 1740 | `dlc2_posledniBereVse_dukaz` | Master Mathias' dagger | 0 | 6250 | `718ba16c-2c4f-4faa-bff5-140b26928b57` |
| 1742 | `dlc2_sirotciDedictvi` | Orphans' inheritance | 0 | 2200 | `5d02311d-10d8-40a3-9c09-4f420f92b5a4` |
| 1743 | `dlc2_transmise_repairIronRod` | Iron crankshaft | 0 | 2350 | `cf66512b-c384-408d-8dcd-e6c361f1997b` |
| 1744 | `dlc2_zasilkyGenericke_guildSeal01` | Blacksmiths’ Guild seal | 0 | 2600 | `98b1cba8-1415-425d-b58e-a23e7bf0a873` |
| 1745 | `dlc2_zasilkyGenericke_guildSeal02` | Blacksmiths’ sealing tongs | 0 | 2600 | `e55dc490-12b1-41f3-b8fb-abbeb2faefbd` |
| 1746 | `dlc2_zasilkyGenericke_guildStamp01` | Stolen guild die | 0 | 2450 | `7bc530fa-d51a-4281-a164-1230b27dbe54` |
| 1747 | `dlc2_zasilkyGenericke_guildStamp02` | Stolen guild die | 0 | 2230 | `96d07230-15fd-4c7a-8f25-f6929b666f78` |
| 1748 | `dlc2_zasilkyGenericke_journeymanPaper` | Blacksmith's apprentice certificate | 0 | 1450 | `4f80cd25-f1e3-48b0-adaf-ac7d43ac6b9c` |
| 1749 | `dlc2_zasilkyGenericke_letter01` | Sealed guild letter | 0 | 1200 | `1e97b452-f46d-4862-8dc5-673e694876d3` |
| 1750 | `dlc2_zasilkyGenericke_letter02` | Sealed guild letter | 0 | 1100 | `b0bddd64-3829-4ce9-a5a3-6a9b3929e9ae` |
| 1751 | `dlc2_zasilkyGenericke_letter03` | Sealed guild letter | 0 | 950 | `3afe58c8-b237-4d95-a971-50cac2363e52` |
| 1752 | `dlc2_zlodejskeZakazky_apprenticeProperty` | Apprentice's belongings | 0 | 720 | `9be39c3d-b67b-4894-8c5c-4c5310e4be99` |
| 1753 | `dlc2_zlodejskeZakazky_blackMarket` | Black market goods | 0 | 2400 | `69f0da2a-bbb6-4516-b3f4-5db948d6a469` |
| 1754 | `dlc2_zlodejskeZakazky_brideCaducum` | Wedding dowry | 0 | 1450 | `a78d1be0-e42c-402c-be6a-f536d35bdda5` |
| 1755 | `dlc2_zlodejskeZakazky_inscriptionBox` | Chest of debt notes | 0 | 1220 | `8fa5f3e2-0ec7-45e1-bd0c-23fa26d24a4d` |
| 1756 | `dlc2_zlodejskeZakazky_maidsProperty` | Rejected maid's belongings. | 0 | 780 | `3c067981-4a9e-43b6-823a-17c7d4ae5a5f` |
| 1757 | `dlc2_zlodejskeZakazky_minersPapers` | Mining notes | 0 | 220 | `09f28b3d-1c86-48c3-9f52-9ce1a1858339` |
| 1758 | `dlc2_zlodejskeZakazky_orphanProperty` | Escheat | 0 | 680 | `4b190f80-717c-4ce3-933f-0b32941fc703` |
| 1759 | `dlc2_zlodejskeZakazky_rogueTreasure` | Miser's treasure | 0 | 2240 | `6aef90e0-b86e-44c3-9c7c-b497be69859f` |
| 1760 | `dlc2_zlodejskeZakazky_saintThief` | Saintly thief | 0 | 3240 | `8c784d11-fa74-4e3a-ada0-1f5acc0ddcb3` |
| 1761 | `dlc2_zlodejskeZakazky_valuableEvidence` | Stolen jewellery | 0 | 3220 | `00cad7d7-cee7-40ac-a104-c3c1d127c91d` |
| 1762 | `dlc2_zlodejskeZakazky_widowParchment` | Promissory note | 0 | 1250 | `5df283e8-55e0-4ea3-99df-c0b6a8c3d75b` |
| 1765 | `dlc2zasilkyIniciace_guildPapers` | Lost guild contract | 0 | 1650 | `0562d736-f4dd-4b68-a157-8637e286a2d1` |
| 1766 | `dlc2zasilkyIniciace_guildPapers02` | Lost guild document | 0 | 1150 | `bacc6cdf-1843-4a1b-8425-a0722c9f6b3e` |
| 1773 | `dlc3_zasobovani_supplies` | Sack of supplies | 0 | 0 | `f868bc60-5c64-476f-be88-11b8879619de` |
| 1783 | `drak_dragonBone1` | Huge dragon bone | 0 | 0 | `fc43bd66-f504-478f-8b90-5c47b5b28b19` |
| 1784 | `drak_dragonBone2` | Strange dragon bone | 0 | 0 | `2d3b3fd0-f566-4788-9b8f-8dd09dccd105` |
| 1785 | `drak_dragonBone3` | Dragon claw | 0 | 0 | `893b1c5b-785e-4e22-a446-1cdda3324846` |
| 1786 | `drak_letterForAbbot` | Letter for the Abbot | 0 | 0 | `9960d4db-344a-4e9e-98e2-e68318139c8a` |
| 1795 | `dvojityAgent_janovaListina` | Jan's letter | 0 | 0 | `622fbf42-ac2e-4867-8d2a-a2f1ce141155` |
| 1811 | `easteregg_OldPointySpindle` | Old pointy spindle | 0.2 | 50 | `58993f70-9608-41db-97e1-3912687e9a3c` |
| 1843 | `eventKamenec` | Alum | 0.1 | 8 | `dd7c811d-4ad3-434b-bbad-58e50b5e1195` |
| 2431 | `hadkaKonaru_crossCountryChestKey` | Key to the racing bet chest | 0.1 | 40 | `07dffc7c-0fca-4144-b249-fc6ea278fc31` |
| 2433 | `hadkaKonaru_mixtureOfTengri` | Tengri's mixture | 1.5 | 100 | `dd4acad1-41f0-4328-9cd7-62b5f5662391` |
| 2434 | `hadkaKonaru_mountedArcheryChestKey` | Key to the mounted archery bet chest | 0.1 | 40 | `10ce0e05-fa67-4dfe-b9ff-619ba8d13d2f` |
| 2435 | `hadkaKonaru_sackOfCowrie` | Cowrie shells | 0.5 | 10 | `262d21ac-5405-4469-b649-ec9e88ec8f26` |
| 2436 | `hadkaKonaru_sackOfRibbons` | Racing ribbons | 0.5 | 600 | `7fe8f88e-7058-42a2-923a-0ccea849682a` |
| 2503 | `hladAZmar_frenclovaChestKey` | Frenzls' chest key | 0 | 0 | `d5710d94-2eff-45a0-831e-d927dc0cbd98` |
| 2504 | `hladAZmar_lambskinShoes` | Lambskin shoes | 0 | 500 | `085317a2-c9e8-4c05-8e74-78e271d15127` |
| 2811 | `hromovyKamen_exposedFakeThunderstone` | Fake thunderstone | 0 | 1 | `9c4f369b-ee4b-4abb-8b4f-11ab75038e1c` |
| 2812 | `hromovyKamen_fakeThunderstone` | Thunderstone | 0 | 300 | `184bcee5-bacd-4c9e-a11c-afa6e3848680` |
| 2815 | `hromovyKamen_thunderstone` | Thunderstone | 0 | 300 | `6f6fc0a8-71f6-428d-9adf-a3f32312b998` |
| 2837 | `kejkliri_lute` | Lute | 0 | 2500 | `ba28e776-5941-4f1e-9b20-dbbbd2375ee8` |
| 2838 | `kejkliri_luteStrings` | Lute strings | 0 | 0 | `b28fa13a-81e2-4126-84b2-109e64b00326` |
| 2839 | `kejkliri_poeticIntestine` | Poet's gut | 0 | 0 | `d9ad5a58-8850-4d4a-9bbe-6c9f0abeafae` |
| 2840 | `kejkliri_sackcarryable` | Sack of scrap | 80 | 1 | `048fff11-3356-4cef-867e-a15a8b79d6f2` |
| 2892 | `klaster_haystackNeedle` | Needle | 0.1 | 42 | `1a3a507a-1750-4773-8860-58933f27bc33` |
| 2897 | `klasterniTajemstvi_sackcarryable` | Sack of waste | 10 | 1 | `31c87d7f-6d8c-4285-80e7-5b69878ac025` |
| 2898 | `klasterniTajemstvi_sulphurWick` | Sulphur wicks | 0 | 5 | `48ad9fe6-328e-446e-a46d-d63240fb974e` |
| 2899 | `klasterniTajemstvi_vineyardCellarKey` | Vineyard cellar key | 0 | 0 | `a46daff3-dcbf-4ac9-a80b-906f3773fdc4` |
| 2908 | `kocovnickaCest_tiborsPrisonDoor_key` | Key to Tibor's prison | 0 | 0 | `50a690b9-dcd1-49b8-abf1-d7f89d66be33` |
| 2909 | `konecZabomysichValek_borderPeg` | Old nail | 0 | 10 | `8648e136-a8fa-46a2-a72b-9256df46d76a` |
| 2910 | `korenarkaZachrana_jakesCompensation` | Jakesh's compensation | 0 | 0 | `56cb0489-6199-4ae3-8530-f30af45b5be6` |
| 2911 | `korenarkaZachrana_killerStone` | Bloody stone | 0 | 0 | `68aa778b-9c3f-4c11-8c76-b68b617c58ab` |
| 2913 | `korenarkaZachrana_pavlenaTornDress` | Torn piece of dress | 0 | 1 | `5a2c4707-9ec5-4cac-b209-58b7f85b6d17` |
| 2941 | `kovaniRelikvie_toothOfSaintApollonia` | St. Apollonia's tooth | 0 | 420 | `cda5c7d7-4218-480a-9b08-79fd07adba6c` |
| 2951 | `kovaniZavodniPodkovy_caulkinHorseshoeOrigin` | Spiked horseshoes | 4.2 | 42 | `8d46a6b3-d1b8-48a1-aa92-3d4ae20c69a2` |
| 2954 | `kovarskeZakazky_armoryKey` | Weapons chest key | 0.1 | 40 | `d8d5c3af-9f11-4223-9d60-023326b266b0` |
| 2955 | `kovarskeZakazky_chastityBelt` | Metal breeches | 0 | 5600 | `4a82fcd0-b28e-4220-b403-a767bf58393a` |
| 2967 | `kovarskeZakazky_sniffableRag` | Disgusting rag | 0.1 | 50 | `a31f9a82-db0c-428a-ad98-5dfb9abad72d` |
| 2973 | `kralovskeStribro_maslosBeerStash` | Miner's chest key | 0 | 10 | `ec5eccfb-333d-48da-a7f9-cd16f0fdd3bb` |
| 2975 | `kralovskeStribro_mintDie` | Minting die | 0 | 42000 | `94f335e3-ae54-49b3-a9f8-762bf2f68620` |
| 2976 | `kralovskeStribro_minterJailKey` | Secret preghaus key | 0 | 10 | `e38a7692-c34b-4ed4-a65e-057e274931af` |
| 2978 | `kralovskeStribro_sackcarryable` | Sack of silver ore | 120 | 1 | `b9474efa-28a7-44e5-8a6b-23f2f3d5e121` |
| 2980 | `kralovskeStribro_secretMintChestKey` | Records chest key | 0 | 10 | `8f654b16-cf8c-457d-a88e-0b88aa8d823c` |
| 2981 | `kubaParalu_goclinsKey` | Gotzlin's chest key | 0 | 10 | `3e6a1958-38f7-4191-9391-91ca91735eea` |
| 2982 | `kubaParalu_hendlsKey` | Hendl's chest key | 0 | 10 | `3865dd5f-af9e-4f9c-8147-d6d005c9a695` |
| 2983 | `kubaParalu_murderTrophies` | Trophies from victims | 0 | 0 | `f4968961-b925-4599-918f-d6f1b8ca7aa8` |
| 2984 | `kubaParalu_zdenasRing` | Zdena's ring | 0 | 0 | `1c393063-3db3-43f3-8b8e-56c91ff8c33c` |
| 2985 | `kubaParalu_ZdenasSatek` | Zdena's scarf | 0 | 0 | `e4fce5a2-4518-4e06-9cee-102de0d77c03` |
| 3013 | `legacyOfTheForge_guildKey` | Guild chamber key | 0 | 10 | `75b3eb7c-6cae-42db-83c0-3c4baff738ff` |
| 3014 | `legacyOfTheForge_sellingChestKey` | Sales chest key | 0.3 | 10 | `09202546-bc64-4f7f-926b-966b17424540` |
| 3149 | `listovniTajemstvi_letterToMarkolt` | Letter for Markold | 0 | 0 | `52a1e5ca-ab02-4d10-814c-72ba2a817394` |
| 3184 | `loot_brocade` | Brocade | 3 | 1800 | `0ae9eb7d-d57f-4f4b-8949-8f37c39f553e` |
| 3185 | `loot_candle` | Candle | 0.1 | 40 | `643000ee-d9ad-4501-8e07-b8fb2dd9aaed` |
| 3186 | `loot_cloth` | Linen | 3 | 85 | `5c9aa2cf-0117-46cc-a7c7-1eb8bcc59dc6` |
| 3187 | `loot_comb` | Bone comb | 0.1 | 120 | `c23d1d05-6915-4bb0-8698-80089d49c352` |
| 3188 | `loot_copperJug` | Copper jug | 0.5 | 320 | `f9648337-4f47-470b-9967-2677e326fa18` |
| 3189 | `loot_copperPlate` | Copper plate | 0.5 | 450 | `fececd0c-712b-43be-8ce2-0acd91f7d971` |
| 3190 | `loot_dogToy_duck` | Wooden duck | 0.1 | 1 | `781627f1-b0b4-4553-8132-41ebcd11a065` |
| 3191 | `loot_flute` | Flute | 0.25 | 30 | `872fd123-42e0-4fac-a578-0cc1bb821fe1` |
| 3192 | `loot_goldenChalice` | Golden chalice | 1 | 5800 | `40411559-a4bc-44e7-8f2e-8d4d510426e5` |
| 3193 | `loot_goldenCross` | Golden crucifix | 2 | 14300 | `8411acde-9099-499c-8dbf-b493eb6b4452` |
| 3194 | `loot_goldenCup` | Golden cup | 0.6 | 7700 | `4a88571e-396b-4dd9-b032-746a32aa607e` |
| 3195 | `loot_gooseFeathers` | Goose quills | 0.1 | 40 | `4ef86f81-b16c-4b42-a9f4-1463113c09c1` |
| 3196 | `loot_hairBuckle_bone` | Hairpin of bone | 0.1 | 500 | `238d1cd1-5990-4065-b574-58653b9edaca` |
| 3197 | `loot_lamp` | Lamp | 0.5 | 820 | `34380658-48a8-4726-94f6-51ad4d69cce8` |
| 3198 | `loot_necklace_gem` | Lady's gemstone necklace | 0.1 | 1500 | `f76aeb4b-3c0b-4169-b9ef-a8b688eee9a6` |
| 3199 | `loot_necklace_jasperBeads` | Jasper beads | 0.1 | 500 | `3ad25b4d-bedd-45d3-8371-ccf5314f9af5` |
| 3200 | `loot_necklace_riverPearl` | River pearl necklace | 0.1 | 1000 | `64780844-4257-4d10-8d28-f3898221e11c` |
| 3201 | `loot_oakBark` | Oak bark | 0.2 | 30 | `7bc9ff60-3fab-45ff-a563-83460c2f351b` |
| 3202 | `loot_oakGallInk` | Oakgall ink | 0.2 | 140 | `0a3b4b8b-bfef-4411-b122-bdc537fa125b` |
| 3203 | `loot_pepper` | Pepper | 0.25 | 240 | `3e49c0cb-1c91-4aba-9e2c-985f666283f9` |
| 3204 | `loot_pewterCan` | Tin pitcher | 0.5 | 320 | `ceed31ff-3db3-4e0f-b3e3-b95efdc49260` |
| 3205 | `loot_pewterJug` | Tin pitcher | 0.45 | 280 | `ac7659a2-eb1a-4a9a-8af2-6601173b7522` |
| 3206 | `loot_pewterJugDecorated` | Ornate tin pitcher | 0.45 | 360 | `3fb953ff-bf19-431e-a20c-5600d6d69b96` |
| 3207 | `loot_pewterJugRound` | Rounded pewter jug | 0.45 | 340 | `257385ea-8857-4fff-a43a-42aff71fe4d7` |
| 3208 | `loot_pin_decorative` | Decorative pins | 0.1 | 1500 | `2ef1cf0f-c821-4d5c-9e6c-071f30bdbaac` |
| 3209 | `loot_pitch` | Wheel grease | 0.2 | 35 | `f42045ac-2eec-4835-91d2-1093231b1ae9` |
| 3212 | `loot_rosary` | Wooden rosary | 0.1 | 180 | `ef5a9b45-a6e5-4738-960d-f701c5e94c9a` |
| 3213 | `loot_rosary_bone` | Bone rosary | 0.1 | 380 | `7b34c172-9e0c-4ab4-b4e2-8ccb8665e853` |
| 3214 | `loot_rosary_detrich` | Father Dietrich's rosary | 0.1 | 65 | `2feed599-4d8a-4567-ab7f-d73febe542d1` |
| 3215 | `loot_rosary_expensive` | Lavish rosary | 0.1 | 640 | `fa168685-f367-47a0-8d12-a6df841560b7` |
| 3216 | `loot_rosary_hroznata` | Hroznata's rosary | 0.1 | 640 | `846e3bca-9deb-427f-a5d5-c46f4663506b` |
| 3217 | `loot_rosary_old` | Worn rosary | 0.1 | 65 | `276e407e-960a-421e-b8d9-8ee8318655df` |
| 3218 | `loot_sackOfNails` | Bag of nails | 1.2 | 120 | `009a655e-189d-4519-b437-ccc4b92be48d` |
| 3219 | `loot_salt` | Salt | 0.25 | 120 | `b9ed56a7-7965-48e3-ab35-78aec6733f3d` |
| 3220 | `loot_satin` | Satin | 3 | 1200 | `703a5c80-733e-4733-acc9-0e01d07ffe82` |
| 3221 | `loot_sedlecMortuaryKey` | Key to the Sedletz mortuary | 0.1 | 40 | `043dbb89-6a87-4dd7-a6ee-ca8c094acc18` |
| 3222 | `loot_silverChalice` | Silver chalice | 0.6 | 650 | `6dc80a04-dad0-4259-a854-e085caa74cc1` |
| 3223 | `loot_silverCup` | Silver cup | 0.4 | 400 | `5d44aaf8-9a56-4e9c-b5e3-ae9c6feecb03` |
| 3224 | `loot_tar` | Pitch | 0.2 | 30 | `af751ab8-f6c1-4180-bc2c-46a6d3a8e6a0` |
| 3225 | `loot_threeleggedChalice` | Three-legged cup | 0.4 | 960 | `3f4dbb92-5d5b-44cf-a7b6-59581aef391e` |
| 3226 | `loot_tinPlate` | Tin plate | 0.3 | 350 | `c039a209-0175-4b6a-95dc-c5a6b0b28e6f` |
| 3227 | `loot_troskyArmoryKey` | Trosky armoury key | 0.1 | 40 | `75a79bb7-9f5f-432d-b910-d97bea2b22d0` |
| 3291 | `lovVlku_brokenArrow` | Bloodied broken arrow | 0 | 0 | `ff29ea1e-dcef-43bd-ab06-b454d7894ccd` |
| 3292 | `lovVlku_sheepEar` | Sheep ear | 0 | 0 | `0af9edaa-3393-46a3-b5d2-9a750828e428` |
| 3293 | `lovVlku_sheepRemains` | Sheep remains | 0 | 0 | `6ea0d39d-e4b2-4621-b400-177d03fe1036` |
| 3326 | `magickySip_brokenBolt` | Magic arrowhead | 0 | 0 | `20aa1daf-9edf-4c37-9594-1b0c6d7123bb` |
| 3327 | `magickySip_magicArrow` | Magic arrowhead | 0 | 0 | `b28dce7d-6d2e-4c62-84e5-282158fdeab6` |
| 3330 | `magickySip_sackcarryable` | Sack of charcoal | 0.1 | 1 | `d277dee6-cc66-4199-9be1-9489c433cd7d` |
| 3331 | `magicShop_nepomukNeedle` | Pomuk vicar's needle | 0.1 | 940 | `d043ea80-3852-4186-9950-1f91930b0f3f` |
| 3333 | `magicShop_sackOfHolyNails` | Bag of Holy nails | 1.2 | 500 | `17033e0e-4164-42d8-9178-7b5aad65aa38` |
| 3335 | `magicShop_veilOfSaintVeronica` | Saint Veronica's veil | 3 | 450 | `af02af84-0fdf-4270-9a44-f28380c33b87` |
| 3355 | `malir_paintbrushes` | Set of paintbrushes | 0.4 | 150 | `e3ba0fee-b3a3-4b99-858d-11d0e855d62d` |
| 3356 | `malir_skull` | Painter's muse | 0.5 | 100 | `aad9ef70-5ef7-43f7-ab9a-e45b31335d2b` |
| 3357 | `maliruvLek_emptyPotionBottle` | Strange potion bottle | 0.1 | 250 | `ba84689f-2f69-442a-8c6a-9ec3fdd13781` |
| 3360 | `maliruvLek_mandrakeStashKey` | Key to the mandrake chest | 0 | 0 | `ea814c6e-d6f3-4c2c-af1a-6947e5317a0f` |
| 3365 | `malovanoJest_lapisLazuli` | Lapis lazuli | 0 | 10000 | `c7760ceb-acbe-4b57-9d3b-54f600c14546` |
| 3381 | `mlynaruvUcen_lockpickingTutorialDeadRat` | Dead rat | 0.5 | 10 | `b156e3e0-5686-49f6-b795-b0ecf10f024c` |
| 3382 | `mlynaruvUcen_sackcarryable` | Sack of flour | 30 | 1 | `19ef3d80-59c4-4f20-bee6-d915aaabefb4` |
| 3383 | `mlynaruvUcen_stealthClothesChestKey` | Dorothy's laundry chest key | 0 | 5 | `75ed6ef0-ba24-45c4-95f6-1602aeb2c816` |
| 3385 | `mlynaruvUcen_zinkChestKey` | Zinek's forged key | 0 | 10 | `3a813885-1e00-4576-a62e-322edbcc0525` |
| 3396 | `mysi1_paintForBull` | Bull paint | 0 | 50 | `622b27fa-3b5a-4c25-be4b-798b5774087d` |
| 3397 | `mysi_bullsBarn` | Bull pen key | 0 | 0 | `45b0f7d3-95bd-454a-805a-6a8a1b58d8e2` |
| 3398 | `nakaza_bastRope` | Flax rope | 0 | 100 | `83251f8c-6264-4fd7-b9df-33490cb3e416` |
| 3399 | `nakaza_cryptKey` | Crypt key | 0 | 0 | `0d60ded3-ab7b-4c17-81b0-11a8a4438d80` |
| 3401 | `nakaza_hungarianMoney` | Hungarian florin | 0.1 | 50 | `dd10cedc-c635-4636-b424-ec20bf308b1c` |
| 3404 | `nakaza_templeKey` | Monastery key | 0 | 0 | `01815967-dad4-47ff-b5fe-46d385b21d82` |
| 3405 | `nakaza_valuableStatue` | Golden crucifix | 2 | 14300 | `6b7d781d-73bb-4203-a072-6285ef33bd7f` |
| 3407 | `nalezeniDelnici_hopStorageKey` | Lost key | 0.1 | 40 | `8447e1b1-19d9-485b-81a2-b1e2d877977f` |
| 3408 | `nalezeniDelnici_keyToBodies` | Key to the hops storage | 0 | 0 | `478aa3af-c2dc-49ad-9964-8cee79eb28d1` |
| 3410 | `nalezeniDelnici_oilFlask` | Oil flask | 0 | 0 | `14989547-a6e3-4b9a-a2ba-923aaefa14fb` |
| 3413 | `naTroskach_koldaChestKey` | Kolda's key | 0 | 0 | `d8baa065-5fa3-4746-b3ae-dfd174f14d72` |
| 3414 | `naTroskach_sackcarryable` | Sack of charcoal | 112 | 1 | `36af95a7-6be3-47c8-a2fd-6bff523492a0` |
| 3415 | `naTroskach_turqoiseRosary` | Turqoise rosary | 0 | 0 | `7a8ae393-45e3-4a7f-b1dc-7b8f5b6bd589` |
| 3419 | `nebakovObrana_sackcarryable` | Sack of supplies | 30 | 1 | `70b471e1-8770-4bfc-bac2-65e46d39d4b6` |
| 3422 | `nebakovPruzkum_lowerTowerKey` | Lower tower key | 0 | 0 | `f16698f4-089b-4bc2-a8d6-d205b2f62478` |
| 3423 | `nebakovPruzkum_prisonKey` | Nebakov jail key | 0 | 0 | `3400df4e-8956-4a4c-a665-3d9294b36eaf` |
| 3424 | `nebakovPruzkum_storageKey` | Nebakov storage key | 0 | 0 | `d1748789-49c1-43bd-86fa-9c5444f7bab0` |
| 3437 | `nemcuvPoklad_BloodyWeddingDressWoman` | Bloodied wedding dress | 0 | 10 | `7edcd587-f3ec-496b-87c4-0eee3b759acb` |
| 3440 | `nemcuvPoklad_PaintedStatueSaintMagdaleine` | Old painted statuette | 0 | 30 | `e6288ed0-45d6-499e-860d-9f612b0e723a` |
| 3441 | `nemcuvPoklad_treasureChestKey1` | Key from nest | 0.1 | 0 | `d5a4df05-3497-487b-b2a0-2f6fbfde76a4` |
| 3686 | `papezskyLegat_treasuryKey` | Mint master's key | 0 | 0 | `a6219b9c-d834-40f1-b91d-314e7918fe43` |
| 3723 | `pickpocketingTutorial_trainingItem` | Training item | 0 | 0 | `b122508a-959a-4bde-9de2-fe20cb7b4c79` |
| 3744 | `player_lockpick` | Lockpick | 0.1 | 120 | `8d76f58e-a521-4205-a7e8-9ac077eee5f0` |
| 3746 | `player_shovel` | Spade | 4 | 67 | `85409fc6-36ff-4de7-b337-e2889e435f1b` |
| 3747 | `player_shovel_wolfram` | Wolfram's spade | 4 | 67 | `713b9ee5-0611-4e5c-afa4-341d1e9f35eb` |
| 3751 | `pocestny_bookPageRhyme` | Page with nursery rhyme | 0 | 10 | `25e52a3f-174f-4643-9884-3055ff3c2a8c` |
| 3753 | `poi_duelOstrostrelcu_key` | Key to wager chest | 0 | 0 | `9a05a648-5c75-4d2e-a876-f65cf60b29c8` |
| 3756 | `poi_dvaLapkoveNaKopanine_key` | Deserting soldier's key | 0 | 0 | `e41aadea-3e52-4da5-8fc7-73736195635c` |
| 3758 | `poi_havarovanyDvoukolak_stashKey` | Sunken chest key | 0 | 0 | `feed8566-ede4-4096-95a5-3518ee0dbb50` |
| 3759 | `poi_hroby_noose` | Noose remnants | 1 | 10 | `8e5db048-68ee-4fd8-9a04-dca3b3b44c16` |
| 3764 | `poi_matkaADite_childsSkull` | Child's skull | 0 | 0 | `bd17a696-1f7b-46df-b717-1986cc64b757` |
| 3765 | `poi_matkaADite_mothersSkull` | Adult's skull | 0 | 0 | `44ab51be-5e5d-446d-815a-4c46bc72d1dc` |
| 3766 | `poi_mezholezy_HerbalistStashKey` | Chicken coop key | 0.1 | 0 | `3f45bb8e-f190-42b4-a2fb-4f3392d47c7c` |
| 3769 | `poi_nedostavenaChalupa_key` | Key from half-built cottage | 0 | 0 | `84007a37-4b69-488c-a010-deb4d2e1764a` |
| 3770 | `poi_opustenaChalupa_key` | Forgotten key | 0 | 0 | `6c612eeb-92b2-4129-a6fe-4e072d01adeb` |
| 3771 | `poi_opustenaZemnice_key` | Apollonia skeleton's key | 0 | 0 | `52cade93-f5dc-48c5-814d-d49646c0a8d8` |
| 3772 | `poi_opusteneOpatovice_burnedKey` | Scorched key | 0.1 | 0 | `0f22a6b2-8cca-4fed-adad-064463c328b5` |
| 3774 | `poi_opustenyLom_drenchedMap` | Soaked map | 0 | 0 | `13123522-c6b1-44aa-93ac-b7ed3292238b` |
| 3775 | `poi_podMostem_key_fisherman` | Fisherman's lost key | 0 | 100 | `e70519f9-578c-474f-b5fb-849e81884073` |
| 3776 | `poi_podMostem_key_hunter` | Huntsman's lost key | 0 | 100 | `8675c3c9-c719-47b4-8e08-362292f6cbd5` |
| 3777 | `poi_podMostem_key_zelejovHouse` | Lost farmhouse key | 0 | 100 | `adcf08a9-c253-4562-803f-8afc65e4684b` |
| 3779 | `poi_pokladPodTroskami_key` | Key from below Trosky | 0 | 0 | `d2dbf222-1f9a-4a27-90be-7d9d937d02bc` |
| 3781 | `poi_prchajiciMnich_key` | Key from chest by Sedletz | 0 | 0 | `23ae895e-48b8-4150-9d21-8dad2e9eb371` |
| 3784 | `poi_ruinaRabstejnky_alchemistChestkey` | Alchemist's key | 0.1 | 0 | `0c057351-28f6-418a-95ab-66d0010dedbe` |
| 3791 | `poi_troskovickyHrbitov_key` | Mortuary chest key | 0 | 0 | `73f70c33-c24f-4053-8ea4-c5a8ed5ac358` |
| 3802 | `poi_vuzVJezirku_key` | Rusty key | 0 | 0 | `d5bb035c-ac7b-4222-acc7-b4fe33a0e8e5` |
| 3803 | `poi_vyplataDrevorubcu_key` | Nest key | 0 | 0 | `23402f53-0fff-4c2f-8995-4cb42f04b106` |
| 3805 | `poi_vyplavenyPoklad_treasureChestKey` | Bandit's key | 0 | 0 | `cee7b43d-424d-4c0a-879f-1f1a9ab64cfd` |
| 3806 | `poi_vyrabovanaHajovna_stashKey` | Hanged man's key | 0 | 0 | `8f4968a8-ce4b-4ece-9211-988fd47857b3` |
| 3807 | `poi_zarostlaZemince_chestKey` | Old chest key | 0 | 0 | `63942ce5-8009-4a68-b8a1-2c3038c7d21e` |
| 3808 | `poi_zasypanyDobrodruh_stolenSilver` | Silver nuggets | 0 | 7590 | `676cabb4-cc25-4798-9175-dbd5904d071d` |
| 3809 | `poi_zavrenyDul_key` | Old key | 0.1 | 0 | `11998443-a033-4f6d-b982-bd6a7f8e676a` |
| 3835 | `poPytlackeStezce_machKey` | Mach's chest key | 0 | 0 | `c37418d7-a4d9-4ede-b570-16dcff9aa3b6` |
| 3836 | `poPytlackeStezce_squirrelTail` | Poacher's squirrel tail | 0 | 25 | `b9640f22-5789-4948-833c-89f2197a776f` |
| 3837 | `poPytlackeStezce_whiteDeerHide` | White buck's hide | 3.5 | 5000 | `b6097763-5301-43ef-ae67-5313a1a1fc29` |
| 3838 | `poPytlackeStezce_youngWhiteDeerHide` | White roebuck's hide | 3.5 | 4000 | `bbedb444-648b-408b-81c9-1cf96c75ae84` |
| 3928 | `poustevnik_newCloakOfAmbroz` | Crusader cloak | 0.1 | 2 | `2e19ecc3-59fa-4dd4-b15b-6bf427e7ea69` |
| 3929 | `poustevnik_oldBonesOfAmbrozBrother` | Old bones | 0 | 0 | `236c69a4-1dd4-4402-92d4-e0d054a8f6f6` |
| 3933 | `poustevnik_sackcarryable` | Sack of supplies | 50 | 1 | `c3463bc9-3e00-4eaf-89d3-c9bdd4c31619` |
| 3936 | `poustevnik_woodenCrossAmbrozWidow` | Ambrose's cross | 0 | 5 | `112b1baa-8fbc-4465-a68d-a64437edab52` |
| 3939 | `pracharna_emptyPotionBottle` | Empty vial | 0.1 | 250 | `d7bb6617-9b14-41d2-8e59-93b7aaa08fd7` |
| 3943 | `predaniVChramu_fakeWenceslasMedicalRecord` | Wenceslas' fake medical records | 0 | 0 | `23a72c19-304c-4391-ab67-2e33c2cce3c9` |
| 3944 | `predaniVChramu_pursuitBasementKey` | Key to the door in the cellar | 0 | 0 | `169647ff-fa6d-433a-b49e-06ad7ce01b2a` |
| 3953 | `prepadeniVlasskehoDvora_armoryKey` | Italian Court Armoury key | 0 | 0 | `3d9aebf4-1a5e-466c-a19a-67cae4788848` |
| 3954 | `prepadeniVlasskehoDvora_barboraStatue` | Statuette of St. Barbara | 2 | 4200 | `c3d270af-c3c3-4a2c-9d2c-b2ed4716738e` |
| 3955 | `prepadeniVlasskehoDvora_csabasStashKey` | Csaba's key | 0 | 0 | `f5da4bd9-9f62-4cd5-8117-d9cfec70bfb1` |
| 3956 | `prepadeniVlasskehoDvora_fakeCross` | Suspicious relic | 2 | 4200 | `a30fa551-7a28-41b7-a2e2-c8e1eef84108` |
| 3957 | `prepadeniVlasskehoDvora_fakeTheodorik` | Tavern drawing | 0.1 | 4200 | `4e15eca9-4a27-4f9f-89db-b1040f11b262` |
| 3958 | `prepadeniVlasskehoDvora_fancyJailKey` | Prison chambers key | 0 | 0 | `d2c247f8-c5fa-480f-b6c2-93a4dcc0fef2` |
| 3960 | `prepadeniVlasskehoDvora_mintersTools` | Minter's tools | 16 | 420 | `5b300677-a3e2-4aab-b30b-54b25de03d39` |
| 3961 | `prepadeniVlasskehoDvora_silverBits` | Silver scraps | 2 | 100 | `9977bb72-3e9c-47b9-8a39-3ab77b8f911a` |
| 4036 | `puvodNemoci_keyToCenfessorsRoom` | Brother Stephen's cell key | 0 | 0 | `d14a857c-e2fb-4a8a-a54b-79dde42d06cd` |
| 4037 | `puvodNemoci_keyToChestInCellar` | Steward’s key | 0 | 0 | `102f39c9-a648-4f45-8774-ce945fcda377` |
| 4038 | `puvodNemoci_keyToDilutingRoom` | Zdenyek's key | 0 | 0 | `d196f253-90c6-49bf-a510-499378def6d3` |
| 4039 | `puvodNemoci_keyToPantry` | Key to the pantry | 0 | 0 | `320acf66-2d98-49e0-b34a-4d54058bc0bc` |
| 4040 | `puvodNemoci_keyToSecretRoom` | Blazhena's key | 0 | 0 | `41cfdcc0-82ea-4b6e-9536-638d4fad8cce` |
| 4041 | `puvodNemoci_keyToTranslatorsChest` | Key to Jaroslav's chest | 0 | 0 | `d0ce7d3b-8167-44ac-bdb6-af7a57255e51` |
| 4042 | `puvodNemoci_keyToWardensRoom` | Key to Ernest's cell | 0 | 0 | `e545612e-2acc-458c-b59f-cefe0ae38cd0` |
| 4049 | `pytlakPtacek_caponEvidence` | Capon's poaching kit | 0 | 500 | `5e97a0ba-5442-49b0-9c2d-55895d514b34` |
| 4050 | `pytlakPtacek_kopaninaSniffableClue` | Poacher's gear from Kopanina | 0 | 500 | `aa11dbd6-bdeb-4341-b5d1-a7a7c5319fbb` |
| 4051 | `pytlakPtacek_poachersHuntingKnife` | Poacher's hunting knife | 0 | 250 | `1756d9ba-257e-438e-b060-cc79bd60805f` |
| 4052 | `pytlakPtacek_podseminEvidence` | Poacher's gear from Lower Semine | 0 | 500 | `18101147-8e52-41fb-893c-e7fb2d4b5fbe` |
| 4053 | `pytlakPtacek_podseminEvidenceOnBody` | Lower Semine poacher's kit | 0 | 500 | `ec39b293-d3e4-4469-a28e-42e22d4dce7c` |
| 4054 | `pytlakPtacek_slatejovSniffableClue` | Poacher's knife from Slatego | 0 | 500 | `44ecbd68-f083-46bc-be86-b917e9529bf2` |
| 4055 | `pytlakPtacek_vezakEvidenceOnBody` | Rocktower Pond poacher's kit | 0 | 500 | `c4eb9980-d2bc-4148-a02a-bde35f6e3b19` |
| 4056 | `pytlakPtacek_vezakSniffableClue` | Rocktower Pond poacher's kit | 0 | 500 | `e7377e4a-a588-441e-b1cc-56817421fa99` |
| 4057 | `pytlakPtacek_vidlakChestKey` | Key to Vidlak poacher's chest | 0.1 | 40 | `57aef27d-5eec-40fa-839f-70d9db7aea4a` |
| 4058 | `pytlakPtacek_vidlakEvidenceOnBody` | Vidlak poacher's gear | 0 | 500 | `854a719a-ac44-4447-8c8a-5ed857053589` |
| 4059 | `pytlakPtacek_vidlakSniffableClue` | Vidlak Pond poacher's gear | 0 | 500 | `8b1abf32-b28f-465e-8e52-a20267efb140` |
| 4070 | `rasuvUcen_dogsShed` | Veisar's doghouse key | 0 | 50 | `c29ff7ab-978d-4874-964e-36b5bc023197` |
| 4072 | `rasuvUcen_sackcarryable` | Carrion sack | 110 | 1 | `c25a4e91-550e-4fa1-a46d-071ee4760f4d` |
| 4073 | `rasuvUcen_slatejovRuinsKey` | Key to the ruins of Slatego | 0 | 10 | `38652784-56d9-48f9-ba18-d5b218ec24f5` |
| 4141 | `relikviarProCimburky_reliquary` | Zimburg reliquary | 0 | 50 | `eb24b1dc-044c-4db5-b783-4aba2a07ab55` |
| 4142 | `relikviarProCimburky_sarkansChestKey` | Sharkan's chest key | 0 | 0 | `dbc21be4-2854-42a6-9e34-2d619edf525e` |
| 4168 | `rodinnaChlouba_astrolabe` | Heart of the astronomical clock | 0 | 8300 | `43f04f3a-3094-4cb3-acaa-2bc526278294` |
| 4192 | `rutina_eatingFork` | Fork | 0.5 | 42 | `363f67fd-1f8c-4ff9-8e66-69df1ff00e7b` |
| 4193 | `rutina_eatingKnife` | Cutlery knife | 0.5 | 42 | `5e1f8bc7-a8c6-4763-bdd9-843d73fcdc16` |
| 4194 | `rutina_oldHorseshoe` | Old horseshoe | 0.8 | 42 | `0171d2f2-75f1-474c-8b75-07e08d64345b` |
| 4195 | `rutina_ruinedPickaxe` | Broken pickaxe | 10 | 42 | `48a89050-6c16-48fe-beeb-1b00a82e1c80` |
| 4196 | `rutina_rustyAxe` | Rusty axe | 3 | 42 | `60df738c-dd40-4711-8816-8fbb741d87ac` |
| 4197 | `rutina_rustyShackles` | Rusty shackles | 5 | 42 | `cd61edb8-2674-4c3f-aa3b-c5067e6e2052` |
| 4199 | `rytiriVeSpitale_moneyPouch` | Leather purse | 0 | 1000 | `10ffaed1-1651-405a-bddf-3f6879857eba` |
| 4200 | `s201_debris` | Rock | 1 | 1 | `23e34573-c465-44ba-b797-05a713fa6f86` |
| 4201 | `sabotazLazni_exoticFragrantOil` | Foreign fragrant oil | 0 | 10000 | `a55d34e5-6127-469c-a4cd-838b86df074e` |
| 4202 | `sabotazLazni_fleabittenQuilt` | Flea-ridden blanket | 0 | 0 | `242ba713-bb2b-4664-b4a6-4ad89b91576b` |
| 4226 | `sedmStatecnych2_pillory` | Pillory key | 0 | 0 | `d30d5f9d-346b-493c-be18-b5f3ea91731a` |
| 4228 | `sedmStatecnych_bundleOfWeapons` | Carefully wrapped handgonnes | 0 | 0 | `49a3c635-3131-4584-adef-1aebd771c52c` |
| 4235 | `semin_blackmithChest` | Blacksmith's chest key | 0 | 0 | `b68c8442-fb20-4b33-90e2-e9eed751dca9` |
| 4236 | `sermiri_fencingHallKey` | Fechthalle key | 0 | 0 | `0cc2f8ae-d406-4260-819a-e7d6edc376c9` |
| 4246 | `sesivaniTonici_freshFlowersHidden` | Freshly picked bouquet | 0 | 12 | `001d1fff-a2d1-4dd3-8340-71150610c91e` |
| 4247 | `sesivaniTonici_sestakBraies` | Sixer's braies | 0 | 2 | `6c901be7-2769-4a78-ae78-c0bcf4056a3f` |
| 4255 | `setkaniVRatbori1_fineGloves` | Lambskin gloves | 0 | 42 | `e6139051-e56d-447b-8bf5-171ef171e558` |
| 4257 | `setkaniVRatbori1_stolenGoblet` | Stolen cup | 0 | 42 | `7bac4681-ec39-4521-ba88-cda1df928917` |
| 4258 | `setkanivRatbori_Annas_Documents` | Real documents about Anna of Waldstein | 0.1 | 6 | `144a106b-b3e9-4ab1-94c0-f8aa88f9b04f` |
| 4259 | `setkanivRatbori_Annas_Documents_Fake` | Forged documents about Anna of Waldstein | 0.1 | 6 | `5c51abfe-42b2-47b8-9fa9-623e1c67d3c4` |
| 4260 | `setkaniVRatbori_apprenticeshipCertificate` | Royal waiter's certificate | 0 | 500 | `a9ecabe4-cd0c-4f13-a0dd-c32621f10a4a` |
| 4261 | `setkaniVRatbori_copperJug` | Copper ewer | 10 | 180 | `919c26be-59eb-45e5-ba63-9938e9bc7719` |
| 4262 | `setkaniVRatbori_copperJug_big` | Large copper kettle | 10 | 150 | `a4e0109a-8f79-45af-b21a-2c34a34edef9` |
| 4263 | `setkaniVRatbori_tinJug` | Tin pitcher | 10 | 180 | `91899c3f-36b5-44c2-a229-7f0dca4de277` |
| 4264 | `setkaniVRatbori_tinJug_big` | Rounded pewter jug | 10 | 160 | `c854ba94-bbed-4611-bc87-8f499dd951be` |
| 4782 | `skin_boar` | Boar hide | 4 | 900 | `e0a9faa2-46d4-4b4e-a619-9a56c1c29007` |
| 4783 | `skin_dog` | Dog skin | 2 | 80 | `c0dd0e15-8cb8-4342-9a4b-eb3d217421c9` |
| 4784 | `skin_hare` | Hare pelt | 1 | 110 | `87a65e52-dfa1-4b45-9306-0b7083f93c90` |
| 4785 | `skin_horse` | Horse hide | 6 | 180 | `2f5c4392-46cd-4319-a710-f50edd0c2adf` |
| 4786 | `skin_roe` | Roe-deer hide | 3.5 | 600 | `d1d1b932-4b23-4622-bd7e-b77ad40e29cd` |
| 4787 | `skin_sheep` | Sheepskin | 3 | 250 | `bc12d87c-542b-4de0-a3cf-b6fbff67a966` |
| 4789 | `skin_wolf` | Wolf pelt | 3.5 | 350 | `6dc82f14-f86d-4e37-99e6-34b4f3408e12` |
| 4812 | `sMlynariNejsouZerty_goldenRing` | Gold ring from Margaret | 0 | 42 | `1cb1cdc2-461a-4bf3-aab0-a180bffcc1fe` |
| 4813 | `sMlynariNejsouZerty_keyFromShed` | Shed key | 0 | 50 | `9f0855c6-76a4-4fcf-af00-e07d1831cf04` |
| 4816 | `socky_sackcarryable` | Sack of flour | 40 | 1 | `59198cec-bad7-4f70-aa44-f6721433d197` |
| 4825 | `special_featherBlack` | Black feathers | 0.1 | 8 | `c5b24e5e-69f0-4ed9-bc74-96c3de9dc677` |
| 4826 | `special_featherRaven` | Raven feathers | 0.1 | 12 | `2bf46965-a851-4602-8282-cbefe7f24945` |
| 4827 | `special_featherRed` | Red feathers | 0.1 | 22 | `ce3b63c5-b749-423a-b189-d98d0e14f781` |
| 4828 | `special_featherRooster` | Rooster tail feather | 0.1 | 4 | `d2a23942-45c1-4d5a-bcbc-96a09611af75` |
| 4829 | `special_featherWhite` | White feathers | 0.1 | 7 | `20774cbd-f9f8-48c8-99ab-632985b7ea56` |
| 4830 | `special_horn` | Horn | 0.4 | 80 | `83ddc936-0659-44d0-a16e-0a3e187c5027` |
| 4831 | `special_lard` | Lard | 1 | 18 | `b979154f-5b69-45dd-848d-b56a1d3e6e0e` |
| 4839 | `special_teethWolf` | Wolf fangs | 0.1 | 65 | `7b1c57a3-54fd-441f-8cad-21157bd1a85b` |
| 4840 | `specialInventory_eatenBone` | Undigested bone | 0.2 | 0 | `3803a2b8-6327-4678-8343-8b452c7600be` |
| 4841 | `specialInventory_eatenSkull` | Undigested skull | 0.3 | 0 | `ff13ef87-dedc-4dac-98a7-bd8b0b616f5c` |
| 4848 | `spizovaciOddil_fakeMilk` | Fresh milk | 0 | 100 | `be4f009b-f2f7-4b26-912a-b53812f1635a` |
| 4850 | `spizovaciOddil_hiddenValuables` | Hidden valuables | 0 | 2300 | `1657b964-9a6b-4e74-af81-7fe06d50cf12` |
| 4851 | `spizovaciOddil_keyToBeerDoor` | Cellar key | 0 | 0 | `8cea8859-e4a5-425c-9614-59d6af57afee` |
| 4857 | `spravedlnost_rosary` | Gemstone rosary | 0.1 | 1950 | `b30d901c-d6b5-4518-895d-bcc148ecef29` |
| 4858 | `spravedlnost_silverBracelet` | Vejmola's medallion | 0 | 1300 | `ff67dd26-5f5a-4850-b700-7f2647ce4024` |
| 4859 | `spravedlnost_vejmolaHouseKey` | Vejmola's house key | 0 | 0 | `9402402a-e0e9-4541-a90d-2a75e7c8abd0` |
| 4865 | `stareKosti_brokenBone` | Thigh bone | 0.2 | 0 | `d89732d2-b2e9-4b12-986d-5cbf642f4864` |
| 4866 | `stareKosti_brokenSkull` | Cracked skull | 0.3 | 0 | `58938d62-627d-44f2-bf3e-fb728370d9f8` |
| 4868 | `stareKosti_skull` | Human skull | 0.5 | 0 | `2b6858db-8eb4-49fa-86ba-70ca2b9e4d8c` |
| 4873 | `staryMistr_hideoutBasement` | Cellar door key | 0 | 0 | `c1871a11-e31a-49f7-906e-9d4cd2ba5768` |
| 4880 | `stealthMiseZaJindru_aulitzHouseKey` | Von Aulitz's house key | 0 | 0 | `6a64daf1-e6f8-40ca-80f8-584f8c058fde` |
| 4884 | `stealthMiseZaJindru_brabantsChestKey` | Brabant's chest key | 0 | 0 | `6899bb3d-1805-0681-c4f9-b0ec5b9a01fa` |
| 4891 | `strasidlo_krasekKey` | Key to the chest in Bellissimo's workshop | 0 | 0 | `d7ed1fc1-f721-4b8e-a0b1-658b277d7cee` |
| 4892 | `strasidlo_scaryThings` | Spooking equipment | 0 | 0 | `62f6af36-b72d-472a-b1a6-3110f60441e8` |
| 4896 | `svatba_drinkForMoravians` | Moravian schnaps | 0 | 0 | `e411cfbe-2ecd-46e2-a554-6cdfd6919130` |
| 4897 | `svatba_foodForPoor` | Cooking scraps | 0 | 0 | `b043c763-0918-4085-96e3-08b24d7871db` |
| 4907 | `svatyAntonin_horseYoke` | Horse collar | 4 | 50 | `f224e38e-b2a4-4455-a497-6a3cad0078af` |
| 4908 | `svatyAntonin_saintGameSign` | Player mark | 0 | 0 | `a2f2589a-aa7e-4f6d-a27e-8fb3f8af3577` |
| 4910 | `svatyAntonin_tavernSvatychCellarDoor` | Key to the Cellar of All Saints' tavern | 0 | 0 | `0c8f2af6-6e37-45de-8782-1f083dc526ee` |
| 4912 | `swordTutorialStepFakeObject` | A suspicious bag | 0 | 0 | `5420f246-7688-4f4e-8efe-9a9c29c34e47` |
| 4913 | `taborCertovka_exoticItem_glassWare` | Glass container | 0.1 | 580 | `1cee8ae5-b821-4a8b-9ad3-f751f7b96b10` |
| 4914 | `taborCertovka_exoticItem_romanCoins` | Old coins | 0.1 | 380 | `4a151376-087e-4b29-86e7-3b7a95cfe5c8` |
| 4915 | `taborCertovka_exoticItem_sfinx` | Marble head | 2 | 420 | `807cb386-d194-48b5-a9b6-1c6679c5ae33` |
| 4916 | `taborOdboje_keyBandageChest` | Chest key | 0 | 0 | `ce9eb029-8f0d-498c-9565-6ba75d665b70` |
| 4924 | `taboryUCesty_barnabasSilverRing` | Barnabas' ring | 0.1 | 480 | `469034fe-952c-47a4-b6df-d7be3651f438` |
| 4927 | `taboryUcesty_ostatkyBotySvaty` | Relics of cloth scraps | 0.1 | 310 | `fcf968a7-ec9e-4290-bbdb-69367d985bc8` |
| 4928 | `taboryUcesty_ostatkyKostSvaty` | Finger bone relic | 0.1 | 550 | `95f97b05-8a66-4695-a9c1-b3ca18ed9ee1` |
| 4929 | `taboryUcesty_ostatkylebkaSvaty` | Skull fragment relic | 0.1 | 650 | `51304f56-c5b4-466d-8aaa-2b1a485f445a` |
| 4930 | `taboryUcesty_ostatkyNehetSvaty` | Nail fragment relic | 0.1 | 280 | `2505bb9f-58af-47c1-9c6b-49c637b888fc` |
| 4931 | `taboryUcesty_ostatkyVlasySvaty` | Hair strand relic | 0.1 | 420 | `8ee40993-eb24-4ee3-bbd7-8138bbd510d1` |
| 4939 | `tarasMura_foodForTaras` | Sacrifice to the demon | 0 | 0 | `b1743a22-07c7-4758-8f3b-a8f86e70b37a` |
| 4941 | `tarasMura_tarasContractKey` | Knight's key | 0 | 0 | `ba8c023a-735e-4878-acdf-2f45f82c46cf` |
| 4946 | `test stealth back` | A suspicious bag | 0 | 0 | `340d4edd-cfc7-4468-8393-7255708fde80` |
| 4947 | `test stealth chest` | A suspicious bag | 0 | 0 | `7fc59505-3216-4f58-afa2-a6ad626a056f` |
| 4948 | `test stealth front` | A suspicious bag | 0 | 0 | `a16e6c86-2970-4106-a25b-9b4fba181972` |
| 4949 | `test stealth indoors` | A suspicious bag | 0 | 0 | `494c8365-2984-4514-a80a-2ba575c9a2f2` |
| 4950 | `test stealth treasure` | A suspicious bag | 0 | 0 | `4c7ba4e3-0fd4-4efa-b751-5f35fc0ebcc0` |
| 5039 | `test_ondra_fifty` | A suspicious bag | 0 | 50 | `c5c2ef8d-e481-498f-b99f-19550b418118` |
| 5076 | `traskavePoselstvi_gunpowderChestKey` | Barrel chest key | 0 | 0 | `45be2e1e-8f43-41e9-a2aa-e815d4e038de` |
| 5077 | `traskavePoselstvi_gunpowderKeg` | Black powder keg | 0 | 4200 | `6a7ecaa7-6a74-4fb3-aec1-3cb7be8b3a22` |
| 5080 | `treasureHunter_map1dup` | Wayfarer's map II | 0 | 100 | `b182e5b9-db3f-4e21-af56-dddbd3429df5` |
| 5082 | `treasureHunter_map2dup` | Wayfarer's map IV | 0 | 100 | `be401ede-1550-449a-aae5-3c0a5ce705d5` |
| 5084 | `treasureHunter_map3dup` | Wayfarer's map I | 0 | 100 | `6bdd6ed2-0de9-476a-94ea-e434215b4932` |
| 5086 | `treasureHunter_map4dup` | Wayfarer's map III | 0 | 100 | `b334b8ad-8ecf-4ff6-b951-39b7d28cc391` |
| 5092 | `truhlari_handplane` | Chrudosh's chisel | 0 | 120 | `3eca5a74-f38c-41ab-ae1c-29da3879c752` |
| 5093 | `truhlari_motherMaryStatue` | Mother Mary statuette | 0 | 8200 | `16111e29-9b21-4206-91b9-0932870bfe61` |
| 5256 | `uchazec_floorKey` | Key to the forge's upper floor | 0 | 10 | `d4418392-2769-4020-9014-c6593d7a2a76` |
| 5262 | `uchazec_sackcarryableAnvil` | Sack of rubble | 30 | 1 | `c43f2eff-1908-41b7-9804-beb8b7e25e3b` |
| 5263 | `uchazec_sackcarryableBed` | Sack of rubble | 30 | 1 | `9d976ea7-b024-4161-9a86-f2f5eb85727e` |
| 5264 | `uchazec_sackcarryableGate` | Sack of rubble | 30 | 1 | `b92a1615-54d2-416d-8cfd-59736cd28c6b` |
| 5265 | `uchazec_sackcarryableWindow` | Sack of rubble | 30 | 1 | `f2adaa07-0fbe-47dc-a2a3-3bc629c858a6` |
| 5266 | `utokNaNebakov_osinaStash` | Osina's key | 0 | 0 | `0d55463a-6a15-4aa1-9d8c-de476c287e6b` |
| 5268 | `utokNebakov_FridusSilverRing` | Florian's silver ring | 0 | 10 | `408b6a4a-b430-4cf0-bafc-abb35935a09c` |
| 5276 | `vezniNaTroskach_godwinStuff` | Godwin's personal belongings | 0 | 0 | `fe78bf19-30ed-4263-8c46-0cc26a745e17` |
| 5277 | `vezniNaTroskach_Keys` | Trosky Castle master keys | 0 | 0 | `eeaac8c8-0913-4687-8762-4856617c968d` |
| 5278 | `vezniNaTroskach_Orders` | Sigismund's orders | 0 | 0 | `4ac40ef0-f190-43bd-a3da-f0b05490e0a5` |
| 5281 | `vezniNaTroskach_zizkaStuff` | Zizka's personal belongings | 0 | 0 | `f1456d0a-fa7b-4f8d-b821-7c0da6d28dfd` |
| 5283 | `viktorka_strangeHerbs` | Victoria's herbs | 0 | 0 | `721c3333-c48e-4306-8709-69b085bba566` |
| 5284 | `viktorka_viktorkaScarf` | Victoria's scarf | 0 | 420 | `432f22d2-b7cb-45d6-9866-216ac34cc1c5` |
| 5539 | `zaby_heniksCellar` | Henik's cellar key | 0 | 0 | `ea34acfb-e165-481a-9c51-1930f3ecebcb` |
| 5540 | `zaby_laxativeForAlsik` | Laxative for Alshik | 0 | 0 | `86b5ee8c-f9c2-4e35-8faa-11ac3a1ce71d` |
| 5541 | `zaby_tachovMaypole` | Tachov maypole | 0 | 400 | `468011bd-3f8b-4d56-ad94-20df49af6f93` |
| 5547 | `zachranaPtacka_hastalChestKey` | Hashtal's chest key | 0 | 0 | `36d330df-f8dd-4402-8033-484525b6a815` |
| 5548 | `zachranaPtacka_keyMalessovFortress` | Maleshov fortress key | 0 | 0 | `21f01a75-49e4-43cb-809e-2d45ad64d7ab` |
| 5549 | `zachranaPtacka_keyMalessovNoblemanRooms` | Maleshov chambers key | 0 | 0 | `440bb296-a04a-414e-8928-be00305f1df7` |
| 5550 | `zachranaPtacka_keyMalessovTopFortressFloor` | Maleshov tower key | 0 | 0 | `fe0ee8bb-ad21-4091-be60-c8c176d47e12` |
| 5556 | `zakopanyZitrek_familyHeirloom` | Family heirloom | 0 | 0 | `eee0d1b8-8f9a-4dc9-a54a-463e084eaafd` |
| 5558 | `zakopanyZitrek_preciousCloths` | Rare fabrics | 7 | 500 | `ca304b96-b9f7-41bb-a2a5-124f88670556` |
| 5568 | `zikmunduvTabor_catherineShoe` | Katherine's shoe | 0 | 420 | `28d4df0c-fda3-493e-b71c-6c030d026e0b` |
| 5569 | `zikmunduvTabor_cherthanChestKey` | Chertan's key | 0 | 0 | `dce2273d-64be-48ec-b9de-118cdc5c8863` |
| 5571 | `zikmunduvTabor_defectorsKey` | Key to painted chest | 0 | 1 | `87025dc2-eab0-427d-8a4c-8c7559286ef7` |
| 5573 | `zikmunduvTabor_musasChestKey` | Key to Musa's chest | 0 | 200 | `2c08d9d1-a824-4f90-b62e-5c90cf474c5e` |
| 5575 | `zikmunduvTabor_stolenShoe` | Stolen shoe | 0 | 420 | `444ea7e1-cd53-40b0-8523-3b671379462a` |
| 5579 | `zlatyMedailon_basketWithNeedlework` | Sewing basket | 0 | 0 | `ea94ceea-ba8e-4312-b16b-22a9e45c18f9` |
| 5580 | `zlatyMedailon_sapphireRing` | Sapphire ring | 0 | 0 | `ff0b037f-7325-4ec6-9b04-3bdd224c550f` |
| 5581 | `zlatyMedailon_vojtasScarf` | Voyta's scarf | 0 | 0 | `12374aa6-5a8b-4486-8d53-8046b8220b4b` |
| 5582 | `zranenyLovci_emptyWaterSkin` | Vostatek's empty waterskin | 0 | 5 | `56ec599f-1207-4bbb-bf9a-64b853a5927d` |
| 5583 | `zranenyLovci_filledWaterSkin` | Vostatek's waterskin | 0 | 5 | `73404591-f72d-44a5-91ed-e729ef7a3cef` |
| 5584 | `zranenyLovci_pepikHorseBriddle` | Pepik's old bridle | 0 | 15 | `df301b6e-2f43-40ab-9fae-52c8560bd9da` |
| 5594 | `ztracenaCest_zavisChest` | Zavish's chest key | 0 | 0 | `4acc4a3f-89ba-408f-a3fd-b0ac92f709b9` |
| 5599 | `ztratyANalezy_knife` | Mushroom picker's knife | 0 | 1 | `2bb1b2ed-63b3-4906-8f22-31dcf0a2a3df` |
| 5600 | `ztratyANalezy_purse` | Lost purse | 0 | 500 | `9d92cb27-4bc0-49dc-8b99-2fd26afd651b` |
# Items: Bows, crossbows and guns
> The 57 item classes of the game's MissileWeapon table: id, name, English name, weight, price and class GUID.
The game's **`MissileWeapon`** rows - 57 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 87 | `archery_bloodTrail_kafkaCrossbow` | Raven's field crossbow | 3 | 24457 | `527027ff-a48d-4b81-9ebc-29d8176eca8f` |
| 592 | `bow_a` | Hazel longbow | 3 | 7750 | `5c23394a-3300-4570-a8b7-ef1c11519047` |
| 593 | `bow_a_empty` | Hazel longbow | 3 | 7750 | `5e7bca7b-844f-4d95-a122-1ce537d7e8be` |
| 594 | `bow_b` | Village hazel bow | 2 | 2000 | `0fffb172-2183-4545-bbdb-01e04a3ff32f` |
| 595 | `bow_b_a` | Village dogwood bow | 2 | 2000 | `db354284-2cf9-40a4-bcfc-e78d020204af` |
| 596 | `bow_b_b` | Village elm bow | 2 | 4880 | `41f61fe6-c890-4b56-ab59-54492f6b62ec` |
| 597 | `bow_b_b_empty` | Village elm bow | 2 | 4880 | `ab49c45d-1012-4400-90ab-bd57aa10a72f` |
| 598 | `bow_b_empty` | Village hazel bow | 2 | 2000 | `9f79ce5e-ed24-4b21-97ae-7c921544f240` |
| 599 | `bow_c` | Ash hunting bow | 3 | 14940 | `d2011311-2315-43a1-a953-76432df04329` |
| 600 | `bow_c_b` | Dogwood hunting bow | 3 | 7750 | `f54e6116-6c6c-4712-99a9-8a11e3416e2b` |
| 601 | `bow_c_c` | Elm hunting bow | 3 | 7750 | `c6367565-6518-4b7c-8ca1-2dfb0c7a2055` |
| 602 | `bow_d` | Elm longbow | 4 | 20690 | `b4a0b9c9-bf92-4cce-ad43-f20f57c892b9` |
| 603 | `bow_d_a` | Ash longbow | 4 | 25000 | `77262956-daee-4a0e-9035-517569f18ef4` |
| 604 | `bow_e` | Yew hunting bow | 3 | 13500 | `ae873e17-3e99-4dac-830b-3b484b9f887f` |
| 605 | `bow_e_a` | Ash village bow | 3 | 6310 | `cd1fe169-bc3b-4c46-96d1-49d9109fbe5e` |
| 1518 | `combattest_crossbow_heavy` | A suspicious bag | 3 | 1333 | `f03dd358-be33-4469-a427-b6d2f81d8ac8` |
| 1519 | `combattest_crossbow_heavy_bad` | A suspicious bag | 3 | 1333 | `8c28b925-014d-43d3-95e2-5e2349e312b6` |
| 1520 | `combattest_crossbow_light` | A suspicious bag | 3 | 1333 | `cf767ede-b3f3-498f-a666-4e88f80da701` |
| 1521 | `combattest_crossbow_light_bad` | A suspicious bag | 3 | 1333 | `f9e192a7-0eee-4d2b-a6d3-b23e2d00b421` |
| 1522 | `combattest_crossbow_medium` | A suspicious bag | 3 | 1333 | `c3c7b6c3-de2d-4398-87b4-32a8228fbd5b` |
| 1523 | `combattest_crossbow_medium_bad` | A suspicious bag | 3 | 1333 | `be0b20c6-5d3a-49d7-8d61-0f1ace8453ef` |
| 1532 | `combattest_rifle_bad` | A suspicious bag | 3 | 1333 | `eae7440b-d78c-4771-bd7a-a5444c916ad1` |
| 1561 | `crossbowHeavyCheap01` | Heavy crossbow | 3 | 23170 | `588c12c6-f0fb-4b3e-847d-ce1df2739e73` |
| 1562 | `crossbowHeavyNormal01` | Reinforced heavy crossbow | 3 | 20467 | `f0fb0494-6ebd-4c6a-bb9e-ef396db3c5d4` |
| 1563 | `crossbowLightArtemis01` | Artemis' crossbow | 3 | 21497 | `54ec9f69-6a42-44f3-aa83-836cc2e9a8f3` |
| 1564 | `crossbowLightCheap01` | Old hunting crossbow | 3 | 3205 | `7673efc2-0566-4dde-9e18-f96c7790ce2e` |
| 1565 | `crossbowLightFancy01` | Ornate hunting crossbow | 3 | 21497 | `a6fc95eb-9cf2-4554-ad72-9a9c09aae177` |
| 1566 | `crossbowLightNormal01` | Hunting crossbow | 3 | 4183 | `cb6ee20b-6eee-434c-af4c-8031502e2bec` |
| 1567 | `crossbowMediumCheap01` | Old field crossbow | 3 | 5998 | `b77f912a-042b-47ca-8f42-5fddbcad3763` |
| 1568 | `crossbowMediumFancy01` | Decorated field crossbow | 3 | 24457 | `56287624-0cbb-48ff-bf0a-d61144f1a3a8` |
| 1569 | `crossbowMediumNormal01` | Field crossbow | 3 | 8482 | `48f25a62-e787-490e-83e9-9335bf303ef9` |
| 1639 | `cuman_bow_a` | Ornate Cuman bow | 3 | 14940 | `0077dfa2-b9be-4ae3-ae59-2803ba49dfcb` |
| 1640 | `cuman_bow_a_a` | Cuman chief's bow | 3 | 17810 | `feea3905-8f49-4098-83b5-7f5a572a45a8` |
| 1641 | `cuman_bow_a_b` | Cuman folded bow | 3 | 13500 | `ddf6c62b-75b6-47c7-b287-38269670815e` |
| 1642 | `cuman_bow_b` | Worn Cuman bow | 3 | 6310 | `7b77a0e9-91cd-403f-be3e-6be6bac8e589` |
| 2444 | `handgonneNormal01` | Pistole | 6 | 21754 | `ea78735d-b371-46d4-a039-bef0ebbb088e` |
| 2445 | `handgunFancy01` | Master's handgonne | 11 | 27804 | `2694bfef-be40-4fb2-901b-e010eaede3ec` |
| 2452 | `havirskyTurnajMediumCrossbow` | Miners' crossbow | 3 | 21625 | `2ba148d1-d33b-4e88-837c-5cc1e12c32ff` |
| 2659 | `hookgunFancy01` | Marksman's hook gun | 12 | 30790 | `842c178a-54b8-4c2b-8255-77d430165320` |
| 2660 | `hookgunNormal01` | Hook gun | 6 | 25873 | `d9ccf323-7ca7-4d05-b8fb-213c748bb23e` |
| 2661 | `hookgunPushek` | Pushko's Push'em | 9 | 35873 | `4ed3c017-59d9-46d2-9c8c-0754365324ef` |
| 3329 | `magickySip_pechCrossbow` | Pasha's crossbow | 2 | 6137 | `94de53e1-8874-4a64-9837-ae758cb62e8b` |
| 3786 | `poi_skrysStarehoPytlaka_poachersBow` | Poacher's bow | 3 | 16380 | `dbe25684-b1e2-4310-8156-e2da9bb60c0d` |
| 3946 | `prepadeni_banditBow` | Footpad's bow | 4 | 13500 | `1c7c82d9-ba66-4702-8988-e018df1d6200` |
| 4227 | `sedmStatecnych2_raneksBow` | Ranyek's bow | 4 | 20690 | `e3d153b7-352d-4e0d-a998-6577d7aa6389` |
| 4963 | `test_barbora_bow` | A suspicious bag | 3 | 1333 | `e44eeaf7-734d-44dc-8c55-ec5eaa56c1e9` |
| 4965 | `test_barbora_coolBow` | A suspicious bag | 3 | 460 | `4d3ab56f-92dc-45ea-805d-a570ef2dca76` |
| 4969 | `test_barbora_lameBow` | A suspicious bag | 3 | 666 | `b4dad9f9-ea29-4718-87f3-624430eac6f3` |
| 4999 | `test_bow` | A suspicious bag | 3 | 1333 | `e4f05e67-803e-4189-a09e-ad934db0ecad` |
| 5000 | `test_bow_brokable` | A suspicious bag | 3 | 1333 | `392878eb-090a-4fe9-a1c9-e5030b1bc5db` |
| 5009 | `test_crossbow_heavy` | A suspicious bag | 3 | 1333 | `e4f05e67-803e-4189-a09e-ad934db0ecdf` |
| 5010 | `test_crossbow_light` | A suspicious bag | 3 | 1333 | `e4f05e67-803e-4189-a09e-ad934db0ecaf` |
| 5011 | `test_crossbow_medium` | A suspicious bag | 3 | 1333 | `e4f05e67-803e-4189-a09e-ad934db0ecbf` |
| 5019 | `test_hookgun` | A suspicious bag | 3 | 1333 | `eed20f9b-84de-4628-920c-28abe13935bd` |
| 5044 | `test_rifle` | A suspicious bag | 3 | 1333 | `e4f05e67-803e-4189-a09e-ad934db0ec00` |
| 5542 | `zachranaPtacka_caponRewardBow` | Hunting bow from Hans Capon | 3 | 17810 | `71eb8e1d-86a9-47a4-8d75-9f4a2d76e813` |
| 5560 | `zbranePanaSemina_sukCrossbow` | Gnarly's crossbow | 3 | 5406 | `808f9b56-d847-4e04-ba12-5a434012c6ff` |
# Items: Money
> The 1 item classes of the game's Money table: id, name, English name, weight, price and class GUID.
The game's **`Money`** rows - 1 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 3386 | `money` | Groschen | 0 | 1 | `5ef63059-322e-4e1b-abe8-926e100c770e` |
# Items: NPC tools
> The 258 item classes of the game's NPCTool table: id, name, English name, weight, price and class GUID.
The game's **`NPCTool`** rows - 258 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 6 | `alchemy_base_container` | | 1 | 1 | `71e9cfaf-ac10-4514-8307-90ddc0518420` |
| 89 | `armorsmith_helmet` | | 1 | 1 | `17090aac-a7f4-44c1-bb3b-ba179e29dd8c` |
| 146 | `artefakt_relicHidingShield` | | 1 | 1 | `d001167d-91b4-4345-bcfa-90d1fae34a80` |
| 147 | `artefakt_sarcophagusLid` | | 1 | 1 | `0068c2ff-ce55-4e64-ae77-e48829d4d0ee` |
| 152 | `autotests_leather_scraper` | | 1 | 1 | `7fe4fb3d-dc73-4cbc-9813-d8ba8f1c063c` |
| 153 | `axe_chopping` | | 7 | 1 | `dac299a2-8651-4839-8244-9e9eb8ef0701` |
| 188 | `bacon_spawned` | | 1 | 1 | `c8e694d8-8df2-4c76-9f52-96d968d9b37a` |
| 192 | `baker_mixingbowl` | | 1 | 1 | `2a95e7f8-d175-4bea-a1ef-d2e40744dd57` |
| 204 | `barber_comb` | | 1 | 1 | `174e1baa-0fcb-4da1-ac78-330708cb7752` |
| 205 | `barber_razor` | | 1 | 1 | `952ad1f4-38c2-4584-bd93-f44a55d79a51` |
| 206 | `barber_scissors` | | 1 | 1 | `d4df2f7a-4413-4fdb-8e6e-c30b5648a82e` |
| 207 | `barrel` | | 1 | 1 | `fa316dc5-9168-4e0f-b330-1d8b3bcb6ff0` |
| 404 | `basket_b_apples` | | 1 | 1 | `33195061-1fe6-48d2-adfa-6f7d04d17503` |
| 405 | `basket_b_bread` | | 1 | 1 | `dc8b7d4d-115f-4156-890a-3bf065d7bcbc` |
| 406 | `basket_b_coal` | | 1 | 1 | `dfe982b8-1a9f-4fc1-8ef0-3b5fc6c3801d` |
| 407 | `basket_b_hay` | | 1 | 1 | `56d09485-290f-485e-9bf8-946f516f2f88` |
| 408 | `basket_b_stones` | | 1 | 1 | `1a2b2144-1d4f-4710-8046-669f912073f5` |
| 409 | `basket_empty` | | 1 | 1 | `2551ce9f-9369-4679-8cba-4d6df2361546` |
| 410 | `basket_empty_b` | | 1 | 1 | `ae882e5f-b0a7-42b1-9a9f-ef064e97ef7d` |
| 411 | `basket_full_sticks` | | 1 | 1 | `f541aba7-7cf2-4fcf-a276-ea3881fcecd0` |
| 412 | `basket_full_wood` | | 1 | 1 | `f864a24a-152c-462e-a8f3-6760f7ce7329` |
| 413 | `basket_transfer_apples` | | 1 | 1 | `554d0e6a-b6e1-4bb1-986d-ddc83c2e71a4` |
| 414 | `basket_transfer_bread` | | 1 | 1 | `b1f11fd1-6c84-499b-b889-4c764dfef023` |
| 415 | `basket_transfer_coal` | | 1 | 1 | `120060ed-212d-475e-acb1-476a170bb40d` |
| 416 | `basket_transfer_hay` | | 1 | 1 | `a5f8ad38-4f38-402a-9083-e7cd17a45d3a` |
| 417 | `basket_transfer_stones` | | 1 | 1 | `3ed9c851-a2e8-4f98-aef1-09745419388d` |
| 418 | `basket_unfinished` | | 1 | 1 | `b2ea4bcf-12e8-4445-82e2-af58e9d4641e` |
| 421 | `battle_gate_axe` | | 1 | 1 | `818d0dde-d4f1-4bdb-b8d3-9754d52f5799` |
| 422 | `battle_pavise` | | 10 | 1 | `46ba3dae-536a-4c8f-b999-1d315a26ab18` |
| 423 | `battle_pavise_prague_1` | | 10 | 1 | `649ae438-76d4-49c4-ae75-bd90c2aa9157` |
| 424 | `battle_pavise_prague_2` | | 10 | 1 | `6425ed61-6d6d-4200-beef-4fa4e247800d` |
| 425 | `battle_pavise_prague_3` | | 10 | 1 | `4a8dc80a-1de9-4d74-9d69-4eacbe7dc5a6` |
| 426 | `battle_pavise_prague_4` | | 10 | 1 | `f97302fa-2637-4ae8-b616-077783d62e22` |
| 427 | `battle_pavise_prague_5` | | 10 | 1 | `34553584-17de-408d-b11d-bd91e225bdb1` |
| 428 | `battle_pavise_proxyLow` | | 10 | 1 | `805c5b78-d92d-4ae8-ae09-fd208e391231` |
| 429 | `battle_pavise_suchdol_1` | | 10 | 1 | `64e2778c-7f6e-4114-ad17-c889dc78e646` |
| 430 | `battle_pavise_suchdol_2` | | 10 | 1 | `6602ad92-3ec3-4353-8e19-e5201dde3272` |
| 431 | `battle_pavise_suchdol_3` | | 10 | 1 | `81264679-025e-4ca8-b92f-c492e2bcce03` |
| 432 | `battle_pavise_suchdol_4` | | 10 | 1 | `3979bcb8-b438-432a-8631-f853fba00dc4` |
| 453 | `bench_rustic_210` | | 1 | 1 | `5676f760-5197-4c15-95ee-be988ea4aecc` |
| 454 | `big_blacksmith_hammer` | | 1 | 1 | `5ba2dba8-d850-42ef-8a11-eda45911e497` |
| 455 | `big_hammer` | | 5 | 1 | `4eabf7d8-3a3f-47db-8401-c2df38820706` |
| 459 | `blade` | | 1 | 1 | `f438e542-8ef1-424b-9bbb-58f6a62b3993` |
| 491 | `book_show_anim` | | 1 | 1 | `fffd284f-53d8-4c69-acce-f44d05d30256` |
| 606 | `bowl` | | 1 | 1 | `578a6bb7-4eae-4d06-9272-bdf692b249c6` |
| 607 | `bowl_bakery` | | 1 | 1 | `d009026e-5fac-4414-8183-592f0b133c2b` |
| 608 | `bowl_beans` | | 1 | 1 | `a49439a3-85cc-a14f-db92-9e17bee76c81` |
| 609 | `bowl_flour` | | 1 | 1 | `24082e66-fb9d-4b9d-9d71-07a504dc7bb4` |
| 610 | `bowl_goulash` | | 1 | 1 | `25f04aba-b197-426f-b849-be874521a1c0` |
| 611 | `bowl_lentil` | | 1 | 1 | `b11b000d-c50e-4565-b8ec-1bf0ac518fc9` |
| 612 | `bowl_noPhaseReset` | | 1 | 1 | `9fc559a6-5de1-4287-a153-0afb42cc9f0d` |
| 613 | `bowl_sausages` | | 1 | 1 | `73db7525-5a1e-87dd-fb58-e82ddfb53f2d` |
| 614 | `bowl_soup` | | 1 | 1 | `6f6cdb4c-0382-49ab-bb2e-04ae2e254479` |
| 615 | `bowl_tin_goulash` | | 1 | 1 | `323bd9fb-3a36-4573-bb04-03dd79f16585` |
| 616 | `bowl_tin_goulash_full` | | 1 | 1 | `19b82138-d77f-4c51-9092-fd2c24e48a30` |
| 617 | `bowl_tin_lentil` | | 1 | 1 | `5cea8cf0-a340-4137-9d3c-7c37ebf26ea7` |
| 618 | `bowl_tin_lentil_full` | | 1 | 1 | `7438b30c-5e99-4622-bf03-7914e81a2d26` |
| 619 | `bowl_tin_soup` | | 1 | 1 | `22910894-1c8e-4567-878a-8afc93ffd98b` |
| 620 | `bowl_tin_soup_full` | | 1 | 1 | `decc97ec-1861-448c-9c19-6160a39a05a4` |
| 621 | `branch_a` | | 1 | 1 | `994d61fb-7e0a-4d8a-924c-724c35172ea4` |
| 627 | `breadTool` | | 1 | 1 | `8a046c31-9b1f-4451-9511-7dca13c11181` |
| 629 | `bridle_test` | | 1 | 1 | `8d6d4efb-f776-44da-8ac6-d7da39678cb8` |
| 730 | `broom` | | 1 | 1 | `af459a00-7a61-4444-936c-5eb27403107a` |
| 731 | `broom_small` | | 1 | 1 | `cd2382b8-4e87-4460-bb2d-526f770a7222` |
| 767 | `bundle_of_wooden_sticks` | | 1 | 1 | `ad363284-24fb-4a66-b088-fc51d222b65b` |
| 768 | `butcher_cleaver` | | 1 | 1 | `a0a2e39a-ea6b-4cc8-90a4-27047696fbb1` |
| 769 | `butcher_cleaver_small` | | 1 | 1 | `3e533ef1-f62a-4751-b1d3-f1c9b4e05b87` |
| 770 | `butcher_knife` | | 1 | 1 | `ec9399a5-3995-455f-81a5-9e9afec59e53` |
| 771 | `butcher_meat` | | 1 | 1 | `87cdb842-3ed3-4e34-a589-95775ecbc9d0` |
| 772 | `butcher_two_handed_knife` | | 1 | 1 | `a5566ffb-8a3f-4d85-b3c5-088038aa95a1` |
| 831 | `cage_right_hand` | | 1 | 1 | `8695b1fc-fedd-4962-8f10-03a0bd55b1e8` |
| 1214 | `carpenter_saw` | | 1 | 1 | `49200aeb-5676-45eb-9fb2-402df0d09aa9` |
| 1215 | `carpenter_saw_a` | | 1 | 1 | `549f6482-bea2-490a-8b75-d8cac51dd926` |
| 1222 | `casting_tongs` | | 1 | 1 | `225d1011-65c2-45ff-8fdc-3827df972a3d` |
| 1223 | `ceiling_shackles` | | 1 | 1 | `2d81dc6e-9c21-4f6e-9036-6e999b2b7018` |
| 1224 | `ceramic_tankard` | | 1 | 1 | `2b4ca587-d32b-4648-af09-dec3dab18261` |
| 1226 | `chair_test` | | 10 | 100 | `4df9b037-ca0f-42db-a897-c9e73139efb2` |
| 1233 | `chicken_thigh_bowl` | | 1 | 1 | `6f7e6c6a-4483-4d2f-a0ad-f837ae7dbfdf` |
| 1234 | `chicken_thigh_bowl_tin` | | 1 | 1 | `552c39c0-c5ce-4fbb-9a6d-768ac081274a` |
| 1235 | `chicken_thigh_spawned` | | 1 | 1 | `5863190f-0439-44a7-830a-2dc09279bd4e` |
| 1240 | `chisel` | | 1 | 1 | `4343eb87-1966-4594-a205-299da2a0fef1` |
| 1241 | `chisel_npc_spawned` | | 1 | 1 | `23f73bbf-1d3c-432f-8cff-ec88cdf2af7b` |
| 1244 | `churnHandle` | | 1 | 1 | `c929d791-1911-4099-93ba-5e5a343747d0` |
| 1484 | `coining_tool` | | 1 | 1 | `549f6482-bea2-490a-8b75-d8cac51dd927` |
| 1550 | `crate_with_silver` | | 1 | 1 | `53ac7c3d-6cbf-4403-b861-086cb038604a` |
| 1556 | `creamPot` | | 1 | 1 | `babce3ac-ea4f-4fcc-a716-686e3217e425` |
| 1557 | `creamSkimmingLadle` | | 1 | 1 | `f60980f7-a835-475b-847b-4a3c691ac277` |
| 1668 | `dice_cup` | | 1 | 1 | `9359acc9-884e-4aac-bde0-b9b0a45932e7` |
| 1669 | `dice_cup_leather` | | 1 | 1 | `ab46991f-069b-4e7f-9a4c-2c27a87ea522` |
| 1782 | `dough_piece` | | 1 | 1 | `948f44e3-6a37-4826-bcd7-eec3ba7f10cb` |
| 1837 | `eggbasket` | | 1 | 1 | `8ff44ee6-55ad-4796-9193-c2402bf22634` |
| 1839 | `eggTool` | | 1 | 1 | `7a9f5d9f-0ad5-4671-879b-e83d5016a7aa` |
| 1840 | `embroidery_cap` | | 1 | 1 | `2274da3f-e0b4-461d-9c89-46d6b73edb74` |
| 1841 | `embroidery_frame_half_finished` | | 1 | 1 | `2274da3f-e0b4-461d-9c89-46d6b73edb73` |
| 2177 | `fireplace_hook_shabby` | | 1 | 1 | `b9e07608-e6bb-4d79-adfd-ed8e582e9ae5` |
| 2178 | `firewoodChipsHand` | | 1 | 1 | `9baf48df-6673-4131-9a46-34770b44009e` |
| 2179 | `firewoodChipsSingle` | | 1 | 1 | `b53bf152-3de3-411d-bf43-deee49340140` |
| 2180 | `fishing_rod` | | 2 | 1 | `227b822e-750e-4cd1-a6ed-0823a5ed2ab3` |
| 2181 | `fishing_rod_test` | | 2 | 1 | `227b822e-750e-4cd1-a6ed-0823a5ed2abf` |
| 2182 | `flask` | | 1 | 30 | `47c3bd7b-1411-4da7-83e7-669385331d90` |
| 2183 | `flour_scoop` | | 1 | 1 | `700410e9-a4c2-4a57-bfe6-b7d49954ab5a` |
| 2184 | `flower_wreath` | | 1 | 1 | `a16839b1-5005-4d63-a37f-cca2d1e62641` |
| 2185 | `flute` | | 1 | 1 | `47c3bd7b-1411-4da7-83e7-669385331d92` |
| 2189 | `fortress_gate_latch_01` | | 1 | 1 | `073ff6d6-cc37-48c7-828d-a3a421af9b6d` |
| 2391 | `goblet_gold` | | 1 | 1 | `778f0ba4-f04c-4ca8-a443-d50acf95fa89` |
| 2392 | `goblet_silver` | | 1 | 1 | `4d1f1d19-dc87-4ff6-8ca5-9219ce9f6621` |
| 2395 | `gunpowder_pouch` | | 1 | 1 | `a85dca06-2041-4258-b687-936a088838db` |
| 2440 | `haler` | | 1 | 1 | `f94a2972-aae2-4504-a525-84f341fe01aa` |
| 2441 | `hammer` | | 3 | 100 | `8804ce02-0648-4efd-9637-334db5ed5e25` |
| 2442 | `hammer_npc_spawned` | | 3 | 100 | `b53cd35f-8008-48a1-8ce4-ccc3efe3a3f4` |
| 2443 | `hammer_pulling` | | 3 | 100 | `bf39f4d9-b3ba-42c7-8258-fd9a0c9ca37b` |
| 2450 | `hare_dead` | | 1 | 1 | `c9d724d8-24db-4c2d-b293-35affdf29c83` |
| 2453 | `hay_unloading_pile` | | 1 | 1 | `122abce4-50e2-4891-a74d-aafc2d6892d4` |
| 2457 | `henGrainSack` | | 1 | 1 | `60c3a0ca-3854-4137-aa1a-06d28a5a3994` |
| 2463 | `herb_coltsfoot` | | 1 | 1 | `7bc30751-042e-4472-a485-e3ffda106572` |
| 2464 | `herb_coltsfoot_ingredience` | | 1 | 1 | `7bc30751-042e-4472-a485-e3ffda106573` |
| 2500 | `herbSack` | | 1 | 1 | `881c5fd0-fe28-404b-af17-790e3ca7c305` |
| 2501 | `herding_stick` | | 1 | 1 | `8a814c90-a32e-4d5d-98d2-b808064ae603` |
| 2658 | `hoofpick_spawned` | | 1 | 1 | `b071f80b-804b-42ca-bc3c-c218ac60a5aa` |
| 2662 | `horse_curry_comb` | | 1 | 1 | `d6cb249b-0eeb-4c47-a307-1ab73ecaddfb` |
| 2663 | `horse_whip` | | 1 | 1 | `a9e33741-31c7-43c2-8478-a49cbe306cd0` |
| 2816 | `hunting_horn` | | 1 | 1 | `babce3ac-ea4f-4fcc-a716-686e3217e426` |
| 2830 | `iron_hoe` | | 4 | 150 | `4d444b36-afde-42c9-8107-88ec448d4158` |
| 2834 | `jug_pewter_small_copper` | | 1 | 1 | `6e1856e0-57c4-4377-a39c-61ba151241c3` |
| 2835 | `jug_pewter_small_tin` | | 1 | 1 | `3c04dec3-4de3-4de8-a5e0-4b4a6460ca76` |
| 2841 | `kettle` | | 1 | 1 | `83a854f3-95f9-4ba5-b907-76434cf61c32` |
| 2842 | `kettle_a` | | 1 | 1 | `9c1d93cf-461b-25be-04f3-a00a4b8ee975` |
| 2890 | `kielbasas_smoked_single_bit_smaller` | | 1 | 1 | `56a33f87-4df8-4f5e-880c-894b7340d737` |
| 2902 | `knife` | | 1 | 1 | `e319c3a6-e202-48ef-8c2d-3d1922544554` |
| 3006 | `lamp_tool` | | 1 | 10 | `bdf14d9c-7264-434c-96af-748ff2779c1b` |
| 3007 | `lamp_toolFancy` | | 1 | 10 | `d1a6946e-4184-42b7-bc15-1172e0c7de93` |
| 3008 | `laundryBasket` | | 1 | 1 | `7a9f5d9f-0ad5-4671-879b-e83d5016a7ac` |
| 3009 | `laundryBundle` | | 1 | 1 | `21dfed98-995c-418d-a22e-3c456b68410f` |
| 3010 | `laundrySmacker` | | 1 | 1 | `6bf72347-1874-46ea-b48a-a4807407b688` |
| 3011 | `leather_scraper` | | 1 | 1 | `5b51dca1-4307-4612-98d6-1cbd5458ebc7` |
| 3138 | `letter` | | 1 | 1 | `2c163861-9b28-458f-b274-fe2d041738da` |
| 3151 | `log_cut` | | 1 | 1 | `e86d0798-f855-45a4-acbc-db82a1133ccd` |
| 3152 | `log_cut_half` | | 1 | 1 | `8867336e-80c8-4e2f-9ee5-3b1cd610a2d8` |
| 3294 | `lumberjack_axe` | | 1 | 1 | `00c582c8-d3a4-40ef-a24c-e9ea4a6066c6` |
| 3295 | `lumberjack_axe_big` | | 1 | 1 | `824c060b-99e3-4475-96ca-ff008ce7b6ef` |
| 3296 | `lumberjack_collecting_branch` | | 1 | 1 | `517d2c60-b5c2-4d66-a6d1-d20bb50c4072` |
| 3297 | `lumberjack_saw` | | 1 | 1 | `d480283d-bb27-42f2-a529-31708ea598d9` |
| 3298 | `lumberjack_saw_a` | | 1 | 1 | `2ffdd32a-91eb-4ad6-81af-edc094b3208e` |
| 3374 | `meal_tray_empty` | | 1 | 1 | `a4cb5d0c-a982-4634-80e2-3a8d7355491e` |
| 3375 | `meal_tray_large` | | 1 | 1 | `ded5173a-82e0-4caf-a3ff-6b6529a7fd05` |
| 3376 | `melting_pot` | | 1 | 1 | `49a1899c-7621-4ee9-a8fd-967ac46a154a` |
| 3377 | `metal_piece` | | 1 | 1 | `2490e8ec-f4b3-4860-a049-37875d354d89` |
| 3379 | `milkBucket` | | 1 | 1 | `103d0347-3728-471d-84ec-738eb19d9fe1` |
| 3387 | `mortar` | | 1 | 1 | `0bce49e7-5dc1-4cea-a1ec-e26098f95ee9` |
| 3388 | `mortar_a` | | 1 | 1 | `5f51dc5a-4c41-4f00-a516-ea2222080330` |
| 3607 | `normalHammer` | | 1 | 1 | `415b1a6a-6df5-4908-8284-7bbae333f708` |
| 3608 | `npc_needle` | | 1 | 1 | `7155a238-7fb3-4219-a5f7-7a9ef3152d81` |
| 3684 | `painter_brush` | | 1 | 1 | `65395f1b-ab1f-44ce-a977-4a07ab35618e` |
| 3685 | `painter_skull` | | 1 | 1 | `dbf3e0a1-ce26-4d44-a09f-ce387b5acced` |
| 3693 | `party_lute` | | 1 | 1 | `1bf1bb07-2484-4244-97c8-068f147bf64c` |
| 3694 | `pavise_stick` | | 1 | 1 | `f3d25372-35e6-46bf-bdb4-9c47c14813d4` |
| 3718 | `pestle` | | 1 | 1 | `2069b83f-4f5d-4e7b-a96c-db87ca0aee84` |
| 3719 | `pestle_a` | | 1 | 1 | `1369293c-1ce4-4d83-8d80-5fa65accd275` |
| 3720 | `physics_test` | | 1 | 1 | `8e820272-e878-44e9-bac1-0566654d7982` |
| 3721 | `pick` | | 1 | 1 | `ff0f08c5-886b-4100-9f08-283f082fe12d` |
| 3722 | `pick_a` | | 1 | 1 | `7bc30751-042e-4472-a485-e3ffda106571` |
| 3724 | `pigEatingBowl` | | 1 | 1 | `ac06be39-1b91-47f5-9c51-5f4cc5eddb92` |
| 3725 | `pigFeedBucket` | | 1 | 1 | `979b2602-f161-4b9d-8774-738119196ba2` |
| 3726 | `pigFoodBasket` | | 1 | 1 | `484158f8-79b1-4309-aecc-432ae3f0df9f` |
| 3737 | `pile_of_coins` | | 1 | 1 | `57cd0c74-67a8-4cb1-ad76-eda57678b308` |
| 3738 | `pile_of_woodchips_chopping_block` | | 1 | 1 | `90f01aca-5dcb-410c-ab1e-97094f137d8c` |
| 3739 | `pillory_bar` | | 1 | 1 | `ece2e8d9-b9c8-4005-8460-a832ffb584b6` |
| 3740 | `pitchfork` | | 1 | 1 | `4d45f922-7974-4852-8465-79fa2f67e0c2` |
| 3741 | `pitchfork_straw` | | 1 | 1 | `91ed1623-40e7-4b64-9de2-92d9d5873990` |
| 3743 | `player_cup` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd55` |
| 3745 | `player_potion` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd56` |
| 3748 | `player_wooden_spoon` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd57` |
| 3749 | `pluckingHen` | | 1 | 1 | `21dfed98-995c-418d-a22e-3c456b68412f` |
| 3886 | `potion_healer` | | 1 | 1 | `15e5e6ce-ab31-4d8e-8124-78d13f2be843` |
| 3963 | `prib_ladder` | | 5 | 1 | `aa417ffe-4609-42d8-b52e-58c1ef5a3678` |
| 3964 | `prib_ram` | | 5 | 1 | `070173f1-1437-49a4-82c3-559665b76174` |
| 4046 | `pyramide_femur` | | 1 | 1 | `4a516b2a-406b-4fb0-a92e-d0068c67bd50` |
| 4047 | `pyramide_skull_broken` | | 1 | 1 | `723b4c6d-9ee0-4b93-acc9-63d71ca6618b` |
| 4048 | `pyramide_skull_whole` | | 1 | 1 | `001a16a8-2d51-467c-9949-f152ac34fed5` |
| 4060 | `quill` | | 1 | 1 | `47c3bd7b-1411-4da7-83e7-669385331d91` |
| 4061 | `quiver` | | 1 | 1 | `29b2be5f-551e-44e3-9218-4c0c07429ae4` |
| 4068 | `rag_cleaning` | | 1 | 1 | `fa621ab1-f972-4ac6-88f9-67bef66b0aa8` |
| 4069 | `rasp` | | 1 | 1 | `bd19f94d-804f-4cac-bf1d-38ba1b8495ce` |
| 4143 | `repairArrow` | | 1 | 1 | `8d4d346d-c190-4807-85c6-1c6f97ccde8e` |
| 4161 | `ring_package` | | 1 | 1 | `b09688cb-4fe4-4381-b8a8-527cc07aad97` |
| 4180 | `rope_cuffs_back` | | 1 | 1 | `4ec42492-9f9c-4261-adbd-5de9d92bd07f` |
| 4181 | `rope_cuffs_front` | | 1 | 1 | `a32d7473-f883-49a2-b929-2611f5f31ce3` |
| 4182 | `rope_cuffs_small_back` | | 1 | 1 | `417ddcb8-51cc-4c45-b2b8-ff95fedc5dc1` |
| 4209 | `sack` | | 1 | 1 | `8519a72d-b2da-4938-8aed-2df96e8e1b34` |
| 4210 | `sack_a` | | 1 | 1 | `ad2db45b-3378-4937-918a-871319dc72a8` |
| 4211 | `sack_miller` | | 1 | 1 | `596ccaec-2415-4754-8a39-eaaccb27361b` |
| 4212 | `sack_miller_dark` | | 1 | 1 | `fe313554-eb9d-4197-9b06-b07106ba2eb2` |
| 4217 | `samuels_pouch` | | 1 | 1 | `a8a64d79-9bf8-4ed2-b744-4339b57421d4` |
| 4219 | `sausage` | | 1 | 1 | `97eaa9b1-0fa0-4de2-a547-4a8ed570fa9e` |
| 4220 | `sausage_smoked` | | 1 | 1 | `36235c05-a733-484b-872d-eecdc245a7de` |
| 4221 | `scarf_food_close` | | 1 | 1 | `aac4b102-f039-4e6c-afa5-67b59df2cc11` |
| 4222 | `Scoop` | | 1 | 1 | `6cf01d7b-f6d4-4a9d-aa27-4667ea77da94` |
| 4223 | `Scoop_a` | | 1 | 1 | `0647f9fa-4f36-a586-5f91-85e6d1973896` |
| 4224 | `scribe_book` | | 1 | 1 | `4ce6d8d4-bee3-4b7d-87e8-00fffb587e0e` |
| 4225 | `scrubBrush` | | 1 | 1 | `a7c45c96-0b6f-46e3-8ab3-3e147be5dc92` |
| 4232 | `seller_sack` | | 1 | 1 | `8c51ad03-84a1-4d65-b327-30880d84ad74` |
| 4233 | `semifinished_helmet` | | 3 | 100 | `057f6222-3d05-4a41-84bb-6cab917e8076` |
| 4234 | `semifinished_sword` | | 1 | 1 | `4ce95b2e-d0ed-439a-a705-ab051c499927` |
| 4617 | `shoe_single_spawned` | | 1 | 1 | `f119692d-774a-4701-a57d-ac0e84591891` |
| 4618 | `shoemaker_hammer` | | 1 | 1 | `8fb83fd8-1996-45fb-9b71-a9d689544275` |
| 4666 | `shoppingbasket` | | 1 | 1 | `8ff44ee6-55ad-4796-9193-c2402bf22635` |
| 4690 | `shovel` | | 1 | 1 | `d6c313d8-a464-4a4c-aa03-5fd1aba7fb4d` |
| 4691 | `shovel_a` | | 1 | 1 | `717dd863-e555-433d-8c90-7a74b5ac29b8` |
| 4692 | `siegeLadder` | | 1 | 1 | `4e4eb4be-b314-4357-b22b-cbe370bb34ee` |
| 4693 | `siegeLadder10000` | | 1 | 1 | `7b48df55-ee12-4bf4-895d-c38d3c443302` |
| 4694 | `siegeLadder10000_long` | | 1 | 1 | `a385c357-4e27-4d20-af2d-bb1b5651c939` |
| 4695 | `siegeLadder225` | | 1 | 1 | `18de0f3c-7946-4ef9-805a-ea8ac609a2ef` |
| 4696 | `siegeLadder575` | | 1 | 1 | `f8863b91-318c-4c48-9ad3-3a24d6d4ac3b` |
| 4697 | `sieve` | | 1 | 1 | `033e4236-2853-4e90-9474-0b45d23d8531` |
| 4699 | `sixDice` | | 1 | 1 | `ee14b57a-848c-4a97-84e9-9bd873902351` |
| 4788 | `skin_test` | | 1 | 1 | `c9764451-a4a4-4428-b1ee-79a41d801e19` |
| 4790 | `skinned_deer_half` | | 10 | 1 | `db813508-eb30-4241-a019-99ad6a83ff00` |
| 4791 | `skinned_deer_piece1` | | 1 | 1 | `99c04991-47fc-49cb-894c-78c93bc7da65` |
| 4792 | `skinned_deer_piece2` | | 1 | 1 | `aa07926f-2968-43e8-b0eb-085893d576f2` |
| 4793 | `skinned_deer_piece3` | | 1 | 1 | `e09ca305-4de5-46fa-abc5-df39fc2e769d` |
| 4845 | `spigot_plug` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd98` |
| 4846 | `spindle` | | 1 | 1 | `2274da3f-e0b4-461d-9c89-46d6b73edb72` |
| 4881 | `stealthMiseZaJindru_aulitzsGoblet` | | 1 | 1 | `7a3b1a22-ca21-4e64-9ad1-1219da1a2284` |
| 4882 | `stealthMiseZaJindru_aulitzsJug` | | 1 | 1 | `1a50acc7-8ed1-6ee6-f1e5-6e6f1206de22` |
| 4887 | `stich_frame` | | 1 | 1 | `ba455df4-e1d1-46eb-b791-210eb0908227` |
| 4888 | `stich_frame_spawned` | | 1 | 1 | `b7a9fe04-a6de-4d76-9488-eef80f5c8501` |
| 4889 | `stone_small` | | 1 | 1 | `51846e82-7106-4b0e-86e4-2d61201995b2` |
| 4890 | `stonebasket` | | 1 | 1 | `8ff44ee6-55ad-4796-9193-c2402bf22633` |
| 4932 | `tal_ladder` | | 5 | 1 | `577cff5d-1479-420a-88a3-f538b5da454d` |
| 4933 | `tankard_beer` | | 1 | 1 | `710eae16-0b2e-a077-86a1-6c9ef8f949ef` |
| 5063 | `tin_spoon_mash` | | 1 | 1 | `eb01336c-2ec5-468e-8293-2e7620b68f99` |
| 5064 | `tool_dog_meat` | | 1 | 1 | `578a6bb7-4eae-4d06-9272-bdf692b249c7` |
| 5065 | `torch_tool` | | 1 | 1 | `e95bb3ae-38ce-41fd-948a-e471673b47e5` |
| 5254 | `u41_wall_stone_01` | | 1 | 1 | `dd635d1b-97c1-49a3-9062-592606abdb64` |
| 5255 | `u41_wall_stone_02` | | 1 | 1 | `87053f65-0ef4-4d9e-89ef-c2e17b07a0fa` |
| 5286 | `vra_ladder` | | 1 | 1 | `0185caf5-061e-4205-9863-bc10d7c12936` |
| 5492 | `washing_stick` | | 1 | 1 | `01b1f552-9023-4a1f-842a-736cd53b71ac` |
| 5494 | `water_tube` | | 5 | 1 | `e1097afe-649e-4494-8a05-84ab079e8db3` |
| 5495 | `water_tube_test` | | 5 | 1 | `ee1fbced-67a4-49ac-85bf-e855358908ca` |
| 5496 | `waterBucket` | | 1 | 1 | `979b2602-f161-4b9d-8774-738119196ba1` |
| 5505 | `whetstone` | | 1 | 1 | `43fd458b-8e49-4ad1-8e9a-1d7e44f2ab41` |
| 5507 | `wine_spawned` | | 1 | 1 | `da7e3d8f-a480-4734-b7f4-5057cc5f15f8` |
| 5512 | `wineJug` | | 1 | 1 | `99e93d24-6ac3-49dc-9e5e-f6e24ea0d672` |
| 5513 | `wineJug_broader` | | 1 | 1 | `b79c9efa-6c1c-4ee7-a86a-8226bf203d43` |
| 5515 | `wineskin_rustic` | | 1 | 1 | `747151e4-b4f5-44de-b098-101c3d491390` |
| 5522 | `wood_whittling` | | 1 | 1 | `d39cde7b-bb73-4216-a528-921dbc8e0182` |
| 5523 | `wooden_peel` | | 1 | 1 | `87e51196-554d-409e-a5ec-f1fe5b4a07bc` |
| 5524 | `wooden_scoop` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd58` |
| 5525 | `wooden_spoon` | | 1 | 1 | `d18fc183-0af6-4a17-a274-5b06fd71bad4` |
| 5526 | `wooden_spoon_mash` | | 1 | 1 | `30b2916b-37be-4d62-ad7f-2389b137fd59` |
| 5527 | `wooden_stein` | | 1 | 1 | `ec1e9587-44c5-4c67-97cf-e35115ae2809` |
| 5528 | `wooden_stein_a` | | 1 | 1 | `32193620-be9c-4684-a06e-ee996a73a83a` |
| 5529 | `wooden_stein_b` | | 1 | 1 | `32193620-be9c-4684-a06e-ee996a73a83b` |
| 5530 | `wooden_stein_spa` | | 1 | 1 | `d8d1c3b6-a25c-4a29-b038-cebc947c86b9` |
| 5531 | `wooden_stick` | | 1 | 1 | `9c6ff7f2-eff7-4f8b-b48f-f7234493d17b` |
| 5532 | `wooden_tankard` | | 1 | 1 | `68b5653e-7a01-47a2-81ba-2f1e2143faae` |
| 5551 | `zachranaPtacka_malesov_wall_stone_01` | | 1 | 1 | `97a7528e-6c70-456b-b470-5e404172629c` |
| 5552 | `zachranaPtacka_malesov_wall_stone_02` | | 1 | 1 | `edbb00a8-3121-4e46-aca3-8495a325d6e5` |
# Items: Ointments and bandages
> The 28 item classes of the game's Ointment table: id, name, English name, weight, price and class GUID.
The game's **`Ointment`** rows - 28 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 198 | `bandage_buffedTest` | Strong bandage | 0.1 | 1 | `61f9f0db-1f71-4a5f-9970-7c1bb6e6dfb1` |
| 199 | `bandage_classic` | Bandage | 0.1 | 20 | `9fa3000e-3807-48a8-bed8-81427f0bda55` |
| 3705 | `perfume_longWeak` | Weak Mintha perfume | 0.2 | 300 | `8d171856-10a9-4588-b8d6-cec21a649b0c` |
| 3706 | `perfume_longWeak_best` | Henry's Mintha perfume | 0.2 | 600 | `455c02d2-d6f3-43bf-a2ba-b0449b206022` |
| 3707 | `perfume_longWeak_high` | Strong Mintha Perfume | 0.2 | 450 | `5a7f1d9b-6053-4116-89e7-991ef4d9839b` |
| 3708 | `perfume_longWeak_medium` | Mintha perfume | 0.2 | 350 | `5d27b4dd-f411-4813-9428-0e54bd417b75` |
| 3709 | `perfume_morovyOblek_aetherOil` | Weak fragrant oil | 0.2 | 600 | `219bb4f1-b236-41cf-ab0b-7931747f7fe6` |
| 3710 | `perfume_morovyOblek_aetherOil_best` | Henry's Fragrant oil | 0.2 | 900 | `f6f06c0f-ead9-41a2-b634-f42c23a44ab5` |
| 3711 | `perfume_morovyOblek_aetherOil_high` | Strong Fragrant oil | 0.2 | 800 | `e7dec6cb-5c26-4f96-9cf0-7588adb39a08` |
| 3712 | `perfume_morovyOblek_aetherOil_medium` | Fragrant oil | 0.2 | 700 | `375a0515-6ad4-49b8-82ac-fcbd94d5a4bc` |
| 3713 | `perfume_shortStrong` | Weak Lion perfume | 0.2 | 500 | `753ff5b2-e5f9-4866-8ff0-67d272d9ee02` |
| 3714 | `perfume_shortStrong_best` | Henry's Lion perfume | 0.2 | 900 | `8bd23228-d7f0-404a-81bd-20653463b240` |
| 3715 | `perfume_shortStrong_high` | Strong Lion Perfume | 0.2 | 700 | `45796d27-524d-43e8-9c0d-8e44890756e8` |
| 3716 | `perfume_shortStrong_medium` | Lion perfume | 0.2 | 600 | `e6987d4a-9a9d-4a31-9753-fb73417a70ae` |
| 3717 | `perfumeStink` | Stinking perfume | 0.2 | 420 | `0d3f94ef-3c04-4f5c-9d7b-362c2c339ecc` |
| 4144 | `repairKit_armourSmall` | Armourer's kit | 0.5 | 570 | `167eb312-0e9d-4c2f-8ce3-56c32f5a84cb` |
| 4145 | `repairKit_bowyerSmall` | Marksman's kit | 0.3 | 350 | `87912053-8c20-4bee-9bb2-dbc3961e94ea` |
| 4146 | `repairKit_cobblersSmall` | Cobbler's kit | 0.3 | 400 | `85310d06-2845-46ee-be8f-295503b35035` |
| 4147 | `repairKit_rifleSmall` | Gunsmith's kit | 0.3 | 520 | `268622e0-27db-448d-93c1-f3f297184caf` |
| 4148 | `repairKit_tailorsSmall` | Tailor's kit | 0.3 | 300 | `9f7a0c0a-6458-4622-9cc5-2f4dd4898b50` |
| 4149 | `repairKit_weaponSmall` | Blacksmith's kit | 0.5 | 500 | `c707733a-c0a7-4f02-b684-9392b0b15b83` |
| 4245 | `sesivaniTonici_elsePerfume` | Else's perfume | 0 | 650 | `cd05700b-8edf-4af4-ae22-09b302a14ba9` |
| 4814 | `soap` | Soap | 0.2 | 200 | `ac9b3dea-a1e6-49df-880b-7976e7d5abec` |
| 4815 | `soap_kcd` | Knight's soap | 0.2 | 200 | `99733d2b-1e54-40a9-a15b-bb637f1feed5` |
| 5040 | `test_repairKit_armourSmall` | A suspicious bag | 0.5 | 42 | `d0938bde-f547-4632-8086-46b57e4f50c7` |
| 5041 | `test_repairKit_armourSmall2` | A suspicious bag | 0.5 | 42 | `dd5e68c7-f4f4-48cd-8bed-d8d74e7efe26` |
| 5042 | `test_repairKit_weaponSmall` | A suspicious bag | 0.5 | 42 | `660aebcf-2bf5-42c6-a5ff-6d17371d5308` |
| 5043 | `test_repairKit_weaponSmall2` | A suspicious bag | 0.5 | 42 | `4f37a71d-5c25-41e2-944e-0ed80d527d48` |
# Items: Pickable items
> The 8 item classes of the game's PickableItem table: id, name, English name, weight, price and class GUID.
The game's **`PickableItem`** rows - 8 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 197 | `ball_broken` | | 0.1 | 5 | `e70ae821-5ae9-4504-b923-276eacd20857` |
| 1516 | `combattest_brokenshield` | | 5 | 666 | `77113673-6977-421f-be00-8fc644fba289` |
| 1559 | `crossbow_goat_foot` | | 0 | 0 | `1e283d52-3d33-4324-ad4c-6dc936624797` |
| 1560 | `crossbow_lever` | | 0 | 0 | `1e283d52-3d33-4324-ad4c-6dc936624796` |
| 3700 | `pellet_broken` | | 0.1 | 5 | `4ff9039f-374c-432d-ad2a-8969c9b957f9` |
| 3937 | `powder_flask` | | 0 | 0 | `3c3b3ce1-f12b-4a11-afbb-89b9f3d60496` |
| 4155 | `rifle_ignition` | | 0 | 0 | `373bb32d-ea3a-40a6-8529-db8a33aec14e` |
| 4156 | `rifle_ramrod` | | 0 | 0 | `1e283d52-3d33-4324-ad4c-6dc936624798` |
# Items: Poisons
> The 15 item classes of the game's Poison table: id, name, English name, weight, price and class GUID.
The game's **`Poison`** rows - 15 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 200 | `banePoison` | Weak Bane poison | 0.2 | 300 | `42e54d97-6e63-4e50-a09d-325ef4dd2286` |
| 201 | `banePoison_best` | Henry's Bane poison | 0.2 | 700 | `de4fa13c-def3-4b1f-b4f9-eb8a21f0adb3` |
| 202 | `banePoison_high` | Strong Bane poison | 0.2 | 500 | `272357ec-8722-4b1d-9ee7-03f29ab465ef` |
| 203 | `banePoison_medium` | Bane poison | 0.2 | 400 | `fed2dff1-eefe-41a7-93a9-1c2a3801774c` |
| 2904 | `kocovnickaCest_horsePotion` | Aranka's concoction | 0.2 | 42 | `d7647722-61db-4250-bd1b-0091be96a16e` |
| 2907 | `kocovnickaCest_sleepingPotion` | Aranka's potion | 0.2 | 42 | `4c3e263a-3aaa-4453-9910-325c300c0ae2` |
| 3688 | `paralysisPoison` | Weak Dollmaker poison | 0.2 | 250 | `5c17d1d9-70ec-49d9-9b05-ae23247c045f` |
| 3689 | `paralysisPoison_best` | Henry's Dollmaker poison | 0.2 | 600 | `c4109e90-e359-4803-b78e-20ce73be34e6` |
| 3690 | `paralysisPoison_high` | Strong Dollmaker poison | 0.2 | 450 | `633bcf78-58fa-4cb0-a229-876c61d61389` |
| 3691 | `paralysisPoison_medium` | Dollmaker poison | 0.2 | 350 | `b86a7329-ac5b-4a85-b77f-b226b938310a` |
| 4807 | `sleepingPoison` | Weak Lullaby potion | 0.2 | 250 | `31148cbb-8592-4b26-a1ae-8a9e07e309e6` |
| 4808 | `sleepingPoison_best` | Henry's Lullaby potion | 0.2 | 600 | `c4755706-216b-447e-ba4e-a7e51a7c04d1` |
| 4809 | `sleepingPoison_high` | Strong Lullaby potion | 0.2 | 450 | `6ef253ae-ec6d-4755-a194-9b763e361b42` |
| 4810 | `sleepingPoison_medium` | Lullaby potion | 0.2 | 350 | `299754d2-8e74-4f95-8919-b4cfc42d3285` |
| 4811 | `sleepingPoisonOpened` | Weak Lullaby potion | 0.2 | 250 | `c46ab027-7f06-4935-a92d-ed103739eb2c` |
# Items: Quick-slot containers
> The 8 item classes of the game's QuickSlotContainer table: id, name, English name, weight, price and class GUID.
The game's **`QuickSlotContainer`** rows - 8 classes. Any of the keys names the item in a script or a chat command: the **id**,
the **name** (case-insensitive), the **English name** or the **GUID**; see [the item catalogue](/reference/items/) for the rules.
Weight in the game's units, price in Groschen.
| id | name | English name | weight | price | class GUID |
|---:|---|---|---:|---:|---|
| 449 | `belt_2slot` | Hunter's belt | 1 | 320 | `7da54a04-67c4-4767-8b60-ee9211cc465e` |
| 450 | `belt_3slot` | Knight's belt | 1 | 1357 | `7da54a04-67c4-4767-8b50-ee9211cc465d` |
| 451 | `belt_4slot` | Noble's belt | 1 | 2200 | `7da54a04-67c4-4767-8b40-ee9211cc465c` |
| 452 | `Belt_autotest_4slot` | A suspicious bag | 3.8 | 120 | `7da54a04-67c4-4767-8b40-dd9211cc465c` |
| 3917 | `Pouch_test_1slot` | Wanderer's pouch | 1 | 500 | `0d40444a-c79e-4436-b71f-9574a856cef5` |
| 3918 | `Pouch_test_2slot` | Hunter's pouch | 1 | 815 | `0d40444a-c79e-4426-b71f-9574a856cef4` |
| 3919 | `Pouch_test_3slot` | Knight's pouch | 1 | 1574 | `0d40444a-c79e-4416-b71f-9574a856cef3` |
| 3920 | `Pouch_test_4slot` | Noble's pouch | 1 | 2200 | `0d40444a-c79e-4406-b71f-9574a856cef2` |