diff --git a/scripts/fetch-data.mjs b/scripts/fetch-data.mjs new file mode 100644 index 0000000..83673c0 --- /dev/null +++ b/scripts/fetch-data.mjs @@ -0,0 +1,181 @@ +// Regenerates src/data/*.json from the KCD2 "Cheat" mod repository +// (https://github.com/pryans/kcd2-cheat — source of the Nexus "Cheat" mod). +// +// Usage: node scripts/fetch-data.mjs +// +// Output is committed to the repo so builds are offline; re-run to refresh +// when the mod updates its item/perk/buff/skill dumps or command docs. + +import { mkdir, writeFile } from 'node:fs/promises'; +import { dirname, join } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const BASE = 'https://raw.githubusercontent.com/pryans/kcd2-cheat/main/docs/'; +const OUT_DIR = join(dirname(fileURLToPath(import.meta.url)), '..', 'src', 'data'); + +async function fetchText(name) { + const res = await fetch(BASE + name); + if (!res.ok) throw new Error(`Fetching ${name} failed: HTTP ${res.status}`); + return (await res.text()).replaceAll('\r\n', '\n'); +} + +// The mod's CSV dialect: fields are double-quoted (header and empty trailing +// fields are bare), commas inside fields are backslash-escaped, and quoted +// fields may contain literal newlines. +function parseCsv(text) { + const rows = []; + let row = []; + let field = ''; + let inQuotes = false; + for (let i = 0; i < text.length; i++) { + const c = text[i]; + if (inQuotes) { + if (c === '\\' && i + 1 < text.length) { + field += text[++i]; + } else if (c === '"') { + inQuotes = false; + } else { + field += c; + } + } else if (c === '"') { + inQuotes = true; + } else if (c === ',') { + row.push(field); + field = ''; + } else if (c === '\n') { + row.push(field); + if (row.some((f) => f !== '')) rows.push(row); + row = []; + field = ''; + } else { + field += c; + } + } + row.push(field); + if (row.some((f) => f !== '')) rows.push(row); + return rows.slice(1); // drop header +} + +// Skill/perk descriptions are HTML-entity-encoded rich text; flatten to plain +// text with paragraph breaks. +function cleanText(s) { + return s + .replaceAll('<', '<') + .replaceAll('>', '>') + .replaceAll('"', '"') + .replaceAll(''', "'") + .replaceAll(''', "'") + .replaceAll('&', '&') + .replace(/<\/p>\s*
/g, '\n\n')
+ .replace(/
/g, '\n')
+ .replace(/<[^>]+>/g, '')
+ .trim();
+}
+
+const CATEGORY_RULES = [
+ [/money/, 'Money'],
+ [/item|inventory|stash|gear|stolen/, 'Items & Inventory'],
+ [/skill|stat/, 'Skills & Stats'],
+ [/perk/, 'Perks'],
+ [/buff|potion/, 'Buffs'],
+ [/horse/, 'Horse'],
+ [/teleport|_loc$|clip|phys_|checkpoint/, 'Movement & Teleport'],
+ [/npc|kill|spawn|charm|target|revive/, 'NPCs'],
+ [/time|weather|map/, 'World & Time'],
+ [/lockpick|pickpocket/, 'Minigames'],
+ [/hud|compass|statusbar|reticle|third_person|regen|wash|save|state/, 'Player & UI'],
+ [/action|alias|localization|find_/, 'Utility'],
+];
+
+function categorize(name) {
+ for (const [re, cat] of CATEGORY_RULES) if (re.test(name)) return cat;
+ return 'Misc';
+}
+
+function stripBbcode(s) {
+ return s.replace(/\[\/?(?:b|i|u|size|color|url)(?:=[^\]]*)?\]/g, '').trim();
+}
+
+// docs.txt: intro + command index, then one block per command:
+// [size=4][b]name[/b][/size]
+// description lines
+// [b]Arguments:[/b] (optional section, tab-indented "arg: (required type) desc")
+// [b]Examples:[/b] (optional section, tab-indented caption/command groups)
+function parseCommandDocs(text) {
+ const version = text.match(/Cheat version ([\d.]+)/)?.[1] ?? null;
+ const commands = [];
+ const blockRe = /^\[size=4\]\[b\](\w+)\[\/b\]\[\/size\]$/gm;
+ const headers = [...text.matchAll(blockRe)];
+ for (let h = 0; h < headers.length; h++) {
+ const name = headers[h][1];
+ const start = headers[h].index + headers[h][0].length;
+ const end = h + 1 < headers.length ? headers[h + 1].index : text.length;
+ const lines = text.slice(start, end).split('\n');
+
+ let section = 'desc';
+ const descLines = [];
+ const args = [];
+ const examples = [];
+ let example = null;
+ for (const rawLine of lines) {
+ const line = rawLine.replace(/\s+$/, '');
+ if (/^\[b\]Arguments:\[\/b\]$/.test(line)) { section = 'args'; continue; }
+ if (/^\[b\]Examples:\[\/b\]$/.test(line)) { section = 'examples'; continue; }
+ if (section === 'desc') {
+ descLines.push(stripBbcode(line));
+ } else if (section === 'args') {
+ const m = line.match(/^\t(\w+): \((required|optional)(?: (\w+))?\)\s*(.*)$/);
+ if (m) args.push({ name: m[1], required: m[2] === 'required', type: m[3] ?? 'string', desc: m[4] });
+ } else if (section === 'examples') {
+ const t = line.replace(/^\t/, '');
+ if (t === '') {
+ if (example?.command) { examples.push(example); example = null; }
+ } else if (t.startsWith(name)) {
+ example ??= { caption: '' };
+ example.command = t;
+ } else {
+ example ??= { caption: '' };
+ example.caption = (example.caption ? example.caption + ' ' : '') + t.replace(/:$/, '');
+ }
+ }
+ }
+ if (example?.command) examples.push(example);
+ commands.push({
+ name,
+ desc: descLines.join('\n').replace(/\n{3,}/g, '\n\n').trim(),
+ args,
+ examples,
+ category: categorize(name),
+ source: 'cheatmod',
+ });
+ }
+ return { version, commands };
+}
+
+async function writeJson(name, data) {
+ await writeFile(join(OUT_DIR, name), JSON.stringify(data));
+ console.log(`${name}: ${Array.isArray(data) ? data.length : data.commands?.length ?? ''} records`);
+}
+
+await mkdir(OUT_DIR, { recursive: true });
+
+const [itemsCsv, perksCsv, buffsCsv, skillsCsv, docsTxt] = await Promise.all(
+ ['items.csv', 'perks.csv', 'buffs.csv', 'skills.csv', 'docs.txt'].map(fetchText),
+);
+
+const items = parseCsv(itemsCsv).map(([id, name, desc]) => ({ id, name, desc: cleanText(desc ?? '') }));
+const perks = parseCsv(perksCsv).map(([id, name, desc]) => ({ id, name, desc: cleanText(desc ?? '') }));
+const buffs = parseCsv(buffsCsv).map(([id, name, params, desc]) => ({ id, name, params: params ?? '', desc: cleanText(desc ?? '') }));
+const skills = parseCsv(skillsCsv).map(([id, name, desc]) => ({ id, name, desc: cleanText(desc ?? '') }));
+const { version, commands } = parseCommandDocs(docsTxt);
+
+await writeJson('items.json', items);
+await writeJson('perks.json', perks);
+await writeJson('buffs.json', buffs);
+await writeJson('skills.json', skills);
+await writeJson('commands-mod.json', commands);
+await writeJson('meta.json', {
+ source: 'https://github.com/pryans/kcd2-cheat',
+ cheatModDocsVersion: version,
+ fetchedAt: new Date().toISOString(),
+});
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
new file mode 100644
index 0000000..ac63046
--- /dev/null
+++ b/src-tauri/Cargo.lock
@@ -0,0 +1,4889 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "adler2"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
+
+[[package]]
+name = "aho-corasick"
+version = "1.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "alloc-no-stdlib"
+version = "2.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
+
+[[package]]
+name = "alloc-stdlib"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
+dependencies = [
+ "alloc-no-stdlib",
+]
+
+[[package]]
+name = "android_system_properties"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "anyhow"
+version = "1.0.103"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
+
+[[package]]
+name = "async-broadcast"
+version = "0.7.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-channel"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
+dependencies = [
+ "concurrent-queue",
+ "event-listener-strategy",
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-executor"
+version = "1.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
+dependencies = [
+ "async-task",
+ "concurrent-queue",
+ "fastrand",
+ "futures-lite",
+ "pin-project-lite",
+ "slab",
+]
+
+[[package]]
+name = "async-io"
+version = "2.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
+dependencies = [
+ "autocfg",
+ "cfg-if",
+ "concurrent-queue",
+ "futures-io",
+ "futures-lite",
+ "parking",
+ "polling",
+ "rustix",
+ "slab",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "async-lock"
+version = "3.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
+dependencies = [
+ "event-listener",
+ "event-listener-strategy",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "async-process"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
+dependencies = [
+ "async-channel",
+ "async-io",
+ "async-lock",
+ "async-signal",
+ "async-task",
+ "blocking",
+ "cfg-if",
+ "event-listener",
+ "futures-lite",
+ "rustix",
+]
+
+[[package]]
+name = "async-recursion"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "async-signal"
+version = "0.2.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
+dependencies = [
+ "async-io",
+ "async-lock",
+ "atomic-waker",
+ "cfg-if",
+ "futures-core",
+ "futures-io",
+ "rustix",
+ "signal-hook-registry",
+ "slab",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "async-task"
+version = "4.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
+
+[[package]]
+name = "async-trait"
+version = "0.1.89"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "atk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
+dependencies = [
+ "atk-sys",
+ "glib",
+ "libc",
+]
+
+[[package]]
+name = "atk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "atomic-waker"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
+
+[[package]]
+name = "autocfg"
+version = "1.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
+
+[[package]]
+name = "base64"
+version = "0.21.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
+
+[[package]]
+name = "base64"
+version = "0.22.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+[[package]]
+name = "bit-set"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
+dependencies = [
+ "bit-vec",
+]
+
+[[package]]
+name = "bit-vec"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
+
+[[package]]
+name = "bitflags"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+
+[[package]]
+name = "bitflags"
+version = "2.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "block-buffer"
+version = "0.10.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
+dependencies = [
+ "generic-array",
+]
+
+[[package]]
+name = "block2"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
+dependencies = [
+ "objc2",
+]
+
+[[package]]
+name = "blocking"
+version = "1.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
+dependencies = [
+ "async-channel",
+ "async-task",
+ "futures-io",
+ "futures-lite",
+ "piper",
+]
+
+[[package]]
+name = "brotli"
+version = "8.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
+dependencies = [
+ "alloc-no-stdlib",
+ "alloc-stdlib",
+ "brotli-decompressor",
+]
+
+[[package]]
+name = "brotli-decompressor"
+version = "5.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
+dependencies = [
+ "alloc-no-stdlib",
+ "alloc-stdlib",
+]
+
+[[package]]
+name = "bs58"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
+dependencies = [
+ "tinyvec",
+]
+
+[[package]]
+name = "bumpalo"
+version = "3.20.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
+
+[[package]]
+name = "bytemuck"
+version = "1.25.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
+
+[[package]]
+name = "byteorder"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+[[package]]
+name = "bytes"
+version = "1.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "cairo-rs"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
+dependencies = [
+ "bitflags 2.13.0",
+ "cairo-sys-rs",
+ "glib",
+ "libc",
+ "once_cell",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "cairo-sys-rs"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
+dependencies = [
+ "glib-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "camino"
+version = "1.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5f2d30e4173c4026932d51d31d6b0613b1fd3014bf3f9f8943d4ba139c437ba0"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "cargo-platform"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "cargo_metadata"
+version = "0.19.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
+dependencies = [
+ "camino",
+ "cargo-platform",
+ "semver",
+ "serde",
+ "serde_json",
+ "thiserror 2.0.18",
+]
+
+[[package]]
+name = "cargo_toml"
+version = "0.22.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
+dependencies = [
+ "serde",
+ "toml 0.9.12+spec-1.1.0",
+]
+
+[[package]]
+name = "cc"
+version = "1.2.67"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
+dependencies = [
+ "find-msvc-tools",
+ "shlex",
+]
+
+[[package]]
+name = "cesu8"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
+
+[[package]]
+name = "cfb"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
+dependencies = [
+ "byteorder",
+ "fnv",
+ "uuid",
+]
+
+[[package]]
+name = "cfg-expr"
+version = "0.15.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
+dependencies = [
+ "smallvec",
+ "target-lexicon",
+]
+
+[[package]]
+name = "cfg-if"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
+
+[[package]]
+name = "chrono"
+version = "0.4.45"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
+dependencies = [
+ "iana-time-zone",
+ "num-traits",
+ "serde",
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "combine"
+version = "4.6.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
+dependencies = [
+ "bytes",
+ "memchr",
+]
+
+[[package]]
+name = "concurrent-queue"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "cookie"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
+dependencies = [
+ "time",
+ "version_check",
+]
+
+[[package]]
+name = "core-foundation"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
+dependencies = [
+ "core-foundation-sys",
+ "libc",
+]
+
+[[package]]
+name = "core-foundation-sys"
+version = "0.8.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
+
+[[package]]
+name = "core-graphics"
+version = "0.25.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
+dependencies = [
+ "bitflags 2.13.0",
+ "core-foundation",
+ "core-graphics-types",
+ "foreign-types",
+ "libc",
+]
+
+[[package]]
+name = "core-graphics-types"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
+dependencies = [
+ "bitflags 2.13.0",
+ "core-foundation",
+ "libc",
+]
+
+[[package]]
+name = "cpufeatures"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "crc32fast"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
+dependencies = [
+ "cfg-if",
+]
+
+[[package]]
+name = "crossbeam-channel"
+version = "0.5.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
+dependencies = [
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-utils"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
+
+[[package]]
+name = "crypto-common"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
+dependencies = [
+ "generic-array",
+ "typenum",
+]
+
+[[package]]
+name = "cssparser"
+version = "0.36.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
+dependencies = [
+ "cssparser-macros",
+ "dtoa-short",
+ "itoa",
+ "phf",
+ "smallvec",
+]
+
+[[package]]
+name = "cssparser-macros"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
+dependencies = [
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "ctor"
+version = "0.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
+dependencies = [
+ "ctor-proc-macro",
+ "dtor",
+]
+
+[[package]]
+name = "ctor-proc-macro"
+version = "0.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
+
+[[package]]
+name = "darling"
+version = "0.23.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
+dependencies = [
+ "darling_core",
+ "darling_macro",
+]
+
+[[package]]
+name = "darling_core"
+version = "0.23.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
+dependencies = [
+ "ident_case",
+ "proc-macro2",
+ "quote",
+ "strsim",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "darling_macro"
+version = "0.23.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
+dependencies = [
+ "darling_core",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "dbus"
+version = "0.9.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3ab69f03cc8c4340c9c8e315114e1658e6775a9b16a04357973aa21cec22b32e"
+dependencies = [
+ "libc",
+ "libdbus-sys",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "deranged"
+version = "0.5.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "derive_more"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
+dependencies = [
+ "derive_more-impl",
+]
+
+[[package]]
+name = "derive_more-impl"
+version = "2.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "rustc_version",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "digest"
+version = "0.10.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+dependencies = [
+ "block-buffer",
+ "crypto-common",
+]
+
+[[package]]
+name = "dirs"
+version = "6.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
+dependencies = [
+ "dirs-sys",
+]
+
+[[package]]
+name = "dirs-sys"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
+dependencies = [
+ "libc",
+ "option-ext",
+ "redox_users",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "dispatch2"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "libc",
+ "objc2",
+]
+
+[[package]]
+name = "displaydoc"
+version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "dlopen2"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
+dependencies = [
+ "dlopen2_derive",
+ "libc",
+ "once_cell",
+ "winapi",
+]
+
+[[package]]
+name = "dlopen2_derive"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "dom_query"
+version = "0.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
+dependencies = [
+ "bit-set",
+ "cssparser",
+ "foldhash",
+ "html5ever",
+ "precomputed-hash",
+ "selectors",
+ "tendril",
+]
+
+[[package]]
+name = "dpi"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "dtoa"
+version = "1.0.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
+
+[[package]]
+name = "dtoa-short"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
+dependencies = [
+ "dtoa",
+]
+
+[[package]]
+name = "dtor"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
+dependencies = [
+ "dtor-proc-macro",
+]
+
+[[package]]
+name = "dtor-proc-macro"
+version = "0.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
+
+[[package]]
+name = "dunce"
+version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
+
+[[package]]
+name = "dyn-clone"
+version = "1.0.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
+
+[[package]]
+name = "embed-resource"
+version = "3.0.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fbfdaacccebec3b28e4866b8973543c7647797db5ada1bdab552e48fe665fbbd"
+dependencies = [
+ "cc",
+ "memchr",
+ "rustc_version",
+ "toml 1.1.2+spec-1.1.0",
+ "vswhom",
+ "winreg",
+]
+
+[[package]]
+name = "embed_plist"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
+
+[[package]]
+name = "endi"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
+
+[[package]]
+name = "enumflags2"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
+dependencies = [
+ "enumflags2_derive",
+ "serde",
+]
+
+[[package]]
+name = "enumflags2_derive"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "equivalent"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
+
+[[package]]
+name = "erased-serde"
+version = "0.4.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
+dependencies = [
+ "serde",
+ "serde_core",
+ "typeid",
+]
+
+[[package]]
+name = "errno"
+version = "0.3.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
+dependencies = [
+ "libc",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "event-listener"
+version = "5.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
+dependencies = [
+ "concurrent-queue",
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "event-listener-strategy"
+version = "0.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
+dependencies = [
+ "event-listener",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "fastrand"
+version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
+
+[[package]]
+name = "fdeflate"
+version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
+dependencies = [
+ "simd-adler32",
+]
+
+[[package]]
+name = "field-offset"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
+dependencies = [
+ "memoffset",
+ "rustc_version",
+]
+
+[[package]]
+name = "find-msvc-tools"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
+
+[[package]]
+name = "flate2"
+version = "1.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
+dependencies = [
+ "crc32fast",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "fnv"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+[[package]]
+name = "foldhash"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
+
+[[package]]
+name = "foreign-types"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
+dependencies = [
+ "foreign-types-macros",
+ "foreign-types-shared",
+]
+
+[[package]]
+name = "foreign-types-macros"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "foreign-types-shared"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
+
+[[package]]
+name = "form_urlencoded"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
+dependencies = [
+ "percent-encoding",
+]
+
+[[package]]
+name = "futures-channel"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "futures-core"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
+
+[[package]]
+name = "futures-executor"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
+dependencies = [
+ "futures-core",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
+name = "futures-io"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
+
+[[package]]
+name = "futures-lite"
+version = "2.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
+dependencies = [
+ "fastrand",
+ "futures-core",
+ "futures-io",
+ "parking",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "futures-macro"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "futures-sink"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
+
+[[package]]
+name = "futures-task"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
+
+[[package]]
+name = "futures-util"
+version = "0.3.32"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
+dependencies = [
+ "futures-core",
+ "futures-io",
+ "futures-macro",
+ "futures-sink",
+ "futures-task",
+ "memchr",
+ "pin-project-lite",
+ "slab",
+]
+
+[[package]]
+name = "gdk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
+dependencies = [
+ "cairo-rs",
+ "gdk-pixbuf",
+ "gdk-sys",
+ "gio",
+ "glib",
+ "libc",
+ "pango",
+]
+
+[[package]]
+name = "gdk-pixbuf"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
+dependencies = [
+ "gdk-pixbuf-sys",
+ "gio",
+ "glib",
+ "libc",
+ "once_cell",
+]
+
+[[package]]
+name = "gdk-pixbuf-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
+dependencies = [
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "gdk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
+dependencies = [
+ "cairo-sys-rs",
+ "gdk-pixbuf-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pango-sys",
+ "pkg-config",
+ "system-deps",
+]
+
+[[package]]
+name = "gdkwayland-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
+dependencies = [
+ "gdk-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pkg-config",
+ "system-deps",
+]
+
+[[package]]
+name = "gdkx11"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
+dependencies = [
+ "gdk",
+ "gdkx11-sys",
+ "gio",
+ "glib",
+ "libc",
+ "x11",
+]
+
+[[package]]
+name = "gdkx11-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
+dependencies = [
+ "gdk-sys",
+ "glib-sys",
+ "libc",
+ "system-deps",
+ "x11",
+]
+
+[[package]]
+name = "generic-array"
+version = "0.14.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
+dependencies = [
+ "typenum",
+ "version_check",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "wasi",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "r-efi 5.3.0",
+ "wasip2",
+]
+
+[[package]]
+name = "getrandom"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "r-efi 6.0.0",
+]
+
+[[package]]
+name = "gio"
+version = "0.18.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
+dependencies = [
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-util",
+ "gio-sys",
+ "glib",
+ "libc",
+ "once_cell",
+ "pin-project-lite",
+ "smallvec",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "gio-sys"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+ "winapi",
+]
+
+[[package]]
+name = "glib"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
+dependencies = [
+ "bitflags 2.13.0",
+ "futures-channel",
+ "futures-core",
+ "futures-executor",
+ "futures-task",
+ "futures-util",
+ "gio-sys",
+ "glib-macros",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "memchr",
+ "once_cell",
+ "smallvec",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "glib-macros"
+version = "0.18.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
+dependencies = [
+ "heck 0.4.1",
+ "proc-macro-crate 2.0.2",
+ "proc-macro-error",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "glib-sys"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
+dependencies = [
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "glob"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
+
+[[package]]
+name = "gobject-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
+dependencies = [
+ "glib-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "gtk"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
+dependencies = [
+ "atk",
+ "cairo-rs",
+ "field-offset",
+ "futures-channel",
+ "gdk",
+ "gdk-pixbuf",
+ "gio",
+ "glib",
+ "gtk-sys",
+ "gtk3-macros",
+ "libc",
+ "pango",
+ "pkg-config",
+]
+
+[[package]]
+name = "gtk-sys"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
+dependencies = [
+ "atk-sys",
+ "cairo-sys-rs",
+ "gdk-pixbuf-sys",
+ "gdk-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "pango-sys",
+ "system-deps",
+]
+
+[[package]]
+name = "gtk3-macros"
+version = "0.18.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
+dependencies = [
+ "proc-macro-crate 1.3.1",
+ "proc-macro-error",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.12.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
+
+[[package]]
+name = "hashbrown"
+version = "0.17.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
+
+[[package]]
+name = "heck"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+
+[[package]]
+name = "heck"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
+[[package]]
+name = "hermit-abi"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
+
+[[package]]
+name = "hex"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
+
+[[package]]
+name = "html5ever"
+version = "0.38.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
+dependencies = [
+ "log",
+ "markup5ever",
+]
+
+[[package]]
+name = "http"
+version = "1.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
+dependencies = [
+ "bytes",
+ "itoa",
+]
+
+[[package]]
+name = "http-body"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+dependencies = [
+ "bytes",
+ "http",
+]
+
+[[package]]
+name = "http-body-util"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "http",
+ "http-body",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "httparse"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
+
+[[package]]
+name = "hyper"
+version = "1.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
+dependencies = [
+ "atomic-waker",
+ "bytes",
+ "futures-channel",
+ "futures-core",
+ "http",
+ "http-body",
+ "httparse",
+ "itoa",
+ "pin-project-lite",
+ "smallvec",
+ "tokio",
+ "want",
+]
+
+[[package]]
+name = "hyper-util"
+version = "0.1.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "futures-channel",
+ "futures-util",
+ "http",
+ "http-body",
+ "hyper",
+ "ipnet",
+ "libc",
+ "percent-encoding",
+ "pin-project-lite",
+ "socket2",
+ "tokio",
+ "tower-service",
+ "tracing",
+]
+
+[[package]]
+name = "iana-time-zone"
+version = "0.1.65"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
+dependencies = [
+ "android_system_properties",
+ "core-foundation-sys",
+ "iana-time-zone-haiku",
+ "js-sys",
+ "log",
+ "wasm-bindgen",
+ "windows-core 0.62.2",
+]
+
+[[package]]
+name = "iana-time-zone-haiku"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "ico"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
+dependencies = [
+ "byteorder",
+ "png 0.17.16",
+]
+
+[[package]]
+name = "icu_collections"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
+dependencies = [
+ "displaydoc",
+ "potential_utf",
+ "utf8_iter",
+ "yoke",
+ "zerofrom",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_locale_core"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
+dependencies = [
+ "displaydoc",
+ "litemap",
+ "tinystr",
+ "writeable",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
+dependencies = [
+ "icu_collections",
+ "icu_normalizer_data",
+ "icu_properties",
+ "icu_provider",
+ "smallvec",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_normalizer_data"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
+
+[[package]]
+name = "icu_properties"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
+dependencies = [
+ "icu_collections",
+ "icu_locale_core",
+ "icu_properties_data",
+ "icu_provider",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "icu_properties_data"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
+
+[[package]]
+name = "icu_provider"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
+dependencies = [
+ "displaydoc",
+ "icu_locale_core",
+ "writeable",
+ "yoke",
+ "zerofrom",
+ "zerotrie",
+ "zerovec",
+]
+
+[[package]]
+name = "ident_case"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
+
+[[package]]
+name = "idna"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
+dependencies = [
+ "idna_adapter",
+ "smallvec",
+ "utf8_iter",
+]
+
+[[package]]
+name = "idna_adapter"
+version = "1.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
+dependencies = [
+ "icu_normalizer",
+ "icu_properties",
+]
+
+[[package]]
+name = "indexmap"
+version = "1.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
+dependencies = [
+ "autocfg",
+ "hashbrown 0.12.3",
+ "serde",
+]
+
+[[package]]
+name = "indexmap"
+version = "2.14.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
+dependencies = [
+ "equivalent",
+ "hashbrown 0.17.1",
+ "serde",
+ "serde_core",
+]
+
+[[package]]
+name = "infer"
+version = "0.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
+dependencies = [
+ "cfb",
+]
+
+[[package]]
+name = "ipnet"
+version = "2.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
+
+[[package]]
+name = "is-docker"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
+name = "is-wsl"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
+dependencies = [
+ "is-docker",
+ "once_cell",
+]
+
+[[package]]
+name = "itoa"
+version = "1.0.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
+
+[[package]]
+name = "javascriptcore-rs"
+version = "1.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
+dependencies = [
+ "bitflags 1.3.2",
+ "glib",
+ "javascriptcore-rs-sys",
+]
+
+[[package]]
+name = "javascriptcore-rs-sys"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "jni"
+version = "0.21.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
+dependencies = [
+ "cesu8",
+ "cfg-if",
+ "combine",
+ "jni-sys 0.3.1",
+ "log",
+ "thiserror 1.0.69",
+ "walkdir",
+ "windows-sys 0.45.0",
+]
+
+[[package]]
+name = "jni-sys"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
+dependencies = [
+ "jni-sys 0.4.1",
+]
+
+[[package]]
+name = "jni-sys"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
+dependencies = [
+ "jni-sys-macros",
+]
+
+[[package]]
+name = "jni-sys-macros"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
+dependencies = [
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "js-sys"
+version = "0.3.103"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
+dependencies = [
+ "cfg-if",
+ "futures-util",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "json-patch"
+version = "3.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
+dependencies = [
+ "jsonptr",
+ "serde",
+ "serde_json",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "jsonptr"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
+dependencies = [
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "kcd2-overlay"
+version = "0.1.0"
+dependencies = [
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-build",
+ "tauri-plugin-opener",
+]
+
+[[package]]
+name = "keyboard-types"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
+dependencies = [
+ "bitflags 2.13.0",
+ "serde",
+ "unicode-segmentation",
+]
+
+[[package]]
+name = "libappindicator"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
+dependencies = [
+ "glib",
+ "gtk",
+ "gtk-sys",
+ "libappindicator-sys",
+ "log",
+]
+
+[[package]]
+name = "libappindicator-sys"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
+dependencies = [
+ "gtk-sys",
+ "libloading",
+ "once_cell",
+]
+
+[[package]]
+name = "libc"
+version = "0.2.186"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
+
+[[package]]
+name = "libdbus-sys"
+version = "0.2.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
+dependencies = [
+ "pkg-config",
+]
+
+[[package]]
+name = "libloading"
+version = "0.7.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
+dependencies = [
+ "cfg-if",
+ "winapi",
+]
+
+[[package]]
+name = "libredox"
+version = "0.1.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "linux-raw-sys"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
+
+[[package]]
+name = "litemap"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
+
+[[package]]
+name = "lock_api"
+version = "0.4.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
+dependencies = [
+ "scopeguard",
+]
+
+[[package]]
+name = "log"
+version = "0.4.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
+
+[[package]]
+name = "markup5ever"
+version = "0.38.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
+dependencies = [
+ "log",
+ "tendril",
+ "web_atoms",
+]
+
+[[package]]
+name = "memchr"
+version = "2.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
+
+[[package]]
+name = "memoffset"
+version = "0.9.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "mime"
+version = "0.3.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+
+[[package]]
+name = "miniz_oxide"
+version = "0.8.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
+dependencies = [
+ "adler2",
+ "simd-adler32",
+]
+
+[[package]]
+name = "mio"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
+dependencies = [
+ "libc",
+ "wasi",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "muda"
+version = "0.19.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1dd04e60bc0b07438a6771710ee1698f98f6ebbc7f89b61264af1563b8aeb878"
+dependencies = [
+ "crossbeam-channel",
+ "dpi",
+ "gtk",
+ "keyboard-types",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation",
+ "once_cell",
+ "png 0.18.1",
+ "serde",
+ "thiserror 2.0.18",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "ndk"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
+dependencies = [
+ "bitflags 2.13.0",
+ "jni-sys 0.3.1",
+ "log",
+ "ndk-sys",
+ "num_enum",
+ "raw-window-handle",
+ "thiserror 1.0.69",
+]
+
+[[package]]
+name = "ndk-sys"
+version = "0.6.0+11769913"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
+dependencies = [
+ "jni-sys 0.3.1",
+]
+
+[[package]]
+name = "new_debug_unreachable"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
+
+[[package]]
+name = "num-conv"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
+
+[[package]]
+name = "num-traits"
+version = "0.2.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "num_enum"
+version = "0.7.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
+dependencies = [
+ "num_enum_derive",
+ "rustversion",
+]
+
+[[package]]
+name = "num_enum_derive"
+version = "0.7.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
+dependencies = [
+ "proc-macro-crate 3.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "objc2"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
+dependencies = [
+ "objc2-encode",
+ "objc2-exception-helper",
+]
+
+[[package]]
+name = "objc2-app-kit"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "objc2",
+ "objc2-core-foundation",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-cloud-kit"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
+dependencies = [
+ "bitflags 2.13.0",
+ "objc2",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-core-data"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
+dependencies = [
+ "objc2",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-core-foundation"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
+dependencies = [
+ "bitflags 2.13.0",
+ "dispatch2",
+ "objc2",
+]
+
+[[package]]
+name = "objc2-core-graphics"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
+dependencies = [
+ "bitflags 2.13.0",
+ "dispatch2",
+ "objc2",
+ "objc2-core-foundation",
+ "objc2-io-surface",
+]
+
+[[package]]
+name = "objc2-core-image"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
+dependencies = [
+ "objc2",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-core-location"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
+dependencies = [
+ "objc2",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-core-text"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
+dependencies = [
+ "bitflags 2.13.0",
+ "objc2",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+]
+
+[[package]]
+name = "objc2-encode"
+version = "4.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
+
+[[package]]
+name = "objc2-exception-helper"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "objc2-foundation"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "objc2",
+ "objc2-core-foundation",
+]
+
+[[package]]
+name = "objc2-io-surface"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
+dependencies = [
+ "bitflags 2.13.0",
+ "objc2",
+ "objc2-core-foundation",
+]
+
+[[package]]
+name = "objc2-quartz-core"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
+dependencies = [
+ "bitflags 2.13.0",
+ "objc2",
+ "objc2-core-foundation",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-ui-kit"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "objc2",
+ "objc2-cloud-kit",
+ "objc2-core-data",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-core-image",
+ "objc2-core-location",
+ "objc2-core-text",
+ "objc2-foundation",
+ "objc2-quartz-core",
+ "objc2-user-notifications",
+]
+
+[[package]]
+name = "objc2-user-notifications"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
+dependencies = [
+ "objc2",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "objc2-web-kit"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation",
+]
+
+[[package]]
+name = "once_cell"
+version = "1.21.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
+
+[[package]]
+name = "open"
+version = "5.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a0b3d059e795d52b8a72fef45658620edd4d9c359b338564aa14391ffa511ed5"
+dependencies = [
+ "dunce",
+ "is-wsl",
+ "libc",
+]
+
+[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
+[[package]]
+name = "ordered-stream"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+]
+
+[[package]]
+name = "pango"
+version = "0.18.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
+dependencies = [
+ "gio",
+ "glib",
+ "libc",
+ "once_cell",
+ "pango-sys",
+]
+
+[[package]]
+name = "pango-sys"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
+dependencies = [
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "parking"
+version = "2.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
+
+[[package]]
+name = "parking_lot"
+version = "0.12.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
+dependencies = [
+ "lock_api",
+ "parking_lot_core",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.9.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
+dependencies = [
+ "cfg-if",
+ "libc",
+ "redox_syscall",
+ "smallvec",
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "percent-encoding"
+version = "2.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
+
+[[package]]
+name = "phf"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
+dependencies = [
+ "phf_macros",
+ "phf_shared",
+ "serde",
+]
+
+[[package]]
+name = "phf_codegen"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
+dependencies = [
+ "phf_generator",
+ "phf_shared",
+]
+
+[[package]]
+name = "phf_generator"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
+dependencies = [
+ "fastrand",
+ "phf_shared",
+]
+
+[[package]]
+name = "phf_macros"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
+dependencies = [
+ "phf_generator",
+ "phf_shared",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "phf_shared"
+version = "0.13.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
+dependencies = [
+ "siphasher",
+]
+
+[[package]]
+name = "pin-project-lite"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
+
+[[package]]
+name = "piper"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
+dependencies = [
+ "atomic-waker",
+ "fastrand",
+ "futures-io",
+]
+
+[[package]]
+name = "pkg-config"
+version = "0.3.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
+
+[[package]]
+name = "plist"
+version = "1.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
+dependencies = [
+ "base64 0.22.1",
+ "indexmap 2.14.0",
+ "quick-xml",
+ "serde",
+ "time",
+]
+
+[[package]]
+name = "png"
+version = "0.17.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
+dependencies = [
+ "bitflags 1.3.2",
+ "crc32fast",
+ "fdeflate",
+ "flate2",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "png"
+version = "0.18.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
+dependencies = [
+ "bitflags 2.13.0",
+ "crc32fast",
+ "fdeflate",
+ "flate2",
+ "miniz_oxide",
+]
+
+[[package]]
+name = "polling"
+version = "3.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
+dependencies = [
+ "cfg-if",
+ "concurrent-queue",
+ "hermit-abi",
+ "pin-project-lite",
+ "rustix",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "potential_utf"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
+dependencies = [
+ "zerovec",
+]
+
+[[package]]
+name = "powerfmt"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+[[package]]
+name = "precomputed-hash"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
+
+[[package]]
+name = "proc-macro-crate"
+version = "1.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
+dependencies = [
+ "once_cell",
+ "toml_edit 0.19.15",
+]
+
+[[package]]
+name = "proc-macro-crate"
+version = "2.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
+dependencies = [
+ "toml_datetime 0.6.3",
+ "toml_edit 0.20.2",
+]
+
+[[package]]
+name = "proc-macro-crate"
+version = "3.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
+dependencies = [
+ "toml_edit 0.25.12+spec-1.1.0",
+]
+
+[[package]]
+name = "proc-macro-error"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
+dependencies = [
+ "proc-macro-error-attr",
+ "proc-macro2",
+ "quote",
+ "syn 1.0.109",
+ "version_check",
+]
+
+[[package]]
+name = "proc-macro-error-attr"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "version_check",
+]
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.106"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "quick-xml"
+version = "0.41.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.46"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "r-efi"
+version = "5.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
+
+[[package]]
+name = "r-efi"
+version = "6.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
+
+[[package]]
+name = "raw-window-handle"
+version = "0.6.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
+
+[[package]]
+name = "redox_syscall"
+version = "0.5.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
+dependencies = [
+ "bitflags 2.13.0",
+]
+
+[[package]]
+name = "redox_users"
+version = "0.5.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
+dependencies = [
+ "getrandom 0.2.17",
+ "libredox",
+ "thiserror 2.0.18",
+]
+
+[[package]]
+name = "ref-cast"
+version = "1.0.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
+dependencies = [
+ "ref-cast-impl",
+]
+
+[[package]]
+name = "ref-cast-impl"
+version = "1.0.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "regex"
+version = "1.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-automata",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-automata"
+version = "0.4.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
+dependencies = [
+ "aho-corasick",
+ "memchr",
+ "regex-syntax",
+]
+
+[[package]]
+name = "regex-syntax"
+version = "0.8.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
+
+[[package]]
+name = "reqwest"
+version = "0.13.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
+dependencies = [
+ "base64 0.22.1",
+ "bytes",
+ "futures-core",
+ "futures-util",
+ "http",
+ "http-body",
+ "http-body-util",
+ "hyper",
+ "hyper-util",
+ "js-sys",
+ "log",
+ "percent-encoding",
+ "pin-project-lite",
+ "serde",
+ "serde_json",
+ "sync_wrapper",
+ "tokio",
+ "tokio-util",
+ "tower",
+ "tower-http",
+ "tower-service",
+ "url",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "wasm-streams",
+ "web-sys",
+]
+
+[[package]]
+name = "rustc-hash"
+version = "2.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
+
+[[package]]
+name = "rustc_version"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
+dependencies = [
+ "semver",
+]
+
+[[package]]
+name = "rustix"
+version = "1.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
+dependencies = [
+ "bitflags 2.13.0",
+ "errno",
+ "libc",
+ "linux-raw-sys",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "rustversion"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
+
+[[package]]
+name = "same-file"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
+name = "schemars"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
+dependencies = [
+ "dyn-clone",
+ "indexmap 1.9.3",
+ "schemars_derive",
+ "serde",
+ "serde_json",
+ "url",
+ "uuid",
+]
+
+[[package]]
+name = "schemars"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
+dependencies = [
+ "dyn-clone",
+ "ref-cast",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "schemars"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
+dependencies = [
+ "dyn-clone",
+ "ref-cast",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "schemars_derive"
+version = "0.8.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde_derive_internals",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "scopeguard"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+
+[[package]]
+name = "selectors"
+version = "0.36.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
+dependencies = [
+ "bitflags 2.13.0",
+ "cssparser",
+ "derive_more",
+ "log",
+ "new_debug_unreachable",
+ "phf",
+ "phf_codegen",
+ "precomputed-hash",
+ "rustc-hash",
+ "servo_arc",
+ "smallvec",
+]
+
+[[package]]
+name = "semver"
+version = "1.0.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
+dependencies = [
+ "serde",
+ "serde_core",
+]
+
+[[package]]
+name = "serde"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
+dependencies = [
+ "serde_core",
+ "serde_derive",
+]
+
+[[package]]
+name = "serde-untagged"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
+dependencies = [
+ "erased-serde",
+ "serde",
+ "serde_core",
+ "typeid",
+]
+
+[[package]]
+name = "serde_core"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.228"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "serde_derive_internals"
+version = "0.29.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.150"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
+dependencies = [
+ "itoa",
+ "memchr",
+ "serde",
+ "serde_core",
+ "zmij",
+]
+
+[[package]]
+name = "serde_repr"
+version = "0.1.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "serde_spanned"
+version = "0.6.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "serde_spanned"
+version = "1.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "serde_with"
+version = "3.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
+dependencies = [
+ "base64 0.22.1",
+ "bs58",
+ "chrono",
+ "hex",
+ "indexmap 1.9.3",
+ "indexmap 2.14.0",
+ "schemars 0.9.0",
+ "schemars 1.2.1",
+ "serde_core",
+ "serde_json",
+ "serde_with_macros",
+ "time",
+]
+
+[[package]]
+name = "serde_with_macros"
+version = "3.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
+dependencies = [
+ "darling",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "serialize-to-javascript"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
+dependencies = [
+ "serde",
+ "serde_json",
+ "serialize-to-javascript-impl",
+]
+
+[[package]]
+name = "serialize-to-javascript-impl"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "servo_arc"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
+dependencies = [
+ "stable_deref_trait",
+]
+
+[[package]]
+name = "sha2"
+version = "0.10.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
+dependencies = [
+ "cfg-if",
+ "cpufeatures",
+ "digest",
+]
+
+[[package]]
+name = "shlex"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
+
+[[package]]
+name = "signal-hook-registry"
+version = "1.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
+dependencies = [
+ "errno",
+ "libc",
+]
+
+[[package]]
+name = "simd-adler32"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
+
+[[package]]
+name = "siphasher"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
+
+[[package]]
+name = "slab"
+version = "0.4.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
+
+[[package]]
+name = "smallvec"
+version = "1.15.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
+
+[[package]]
+name = "socket2"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
+dependencies = [
+ "libc",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "softbuffer"
+version = "0.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
+dependencies = [
+ "bytemuck",
+ "js-sys",
+ "ndk",
+ "objc2",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-foundation",
+ "objc2-quartz-core",
+ "raw-window-handle",
+ "redox_syscall",
+ "tracing",
+ "wasm-bindgen",
+ "web-sys",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "soup3"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
+dependencies = [
+ "futures-channel",
+ "gio",
+ "glib",
+ "libc",
+ "soup3-sys",
+]
+
+[[package]]
+name = "soup3-sys"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
+dependencies = [
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "libc",
+ "system-deps",
+]
+
+[[package]]
+name = "stable_deref_trait"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
+
+[[package]]
+name = "string_cache"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
+dependencies = [
+ "new_debug_unreachable",
+ "parking_lot",
+ "phf_shared",
+ "precomputed-hash",
+]
+
+[[package]]
+name = "string_cache_codegen"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
+dependencies = [
+ "phf_generator",
+ "phf_shared",
+ "proc-macro2",
+ "quote",
+]
+
+[[package]]
+name = "strsim"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
+
+[[package]]
+name = "swift-rs"
+version = "1.0.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
+dependencies = [
+ "base64 0.21.7",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "syn"
+version = "1.0.109"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+dependencies = [
+ "proc-macro2",
+ "unicode-ident",
+]
+
+[[package]]
+name = "syn"
+version = "2.0.118"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "sync_wrapper"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
+dependencies = [
+ "futures-core",
+]
+
+[[package]]
+name = "synstructure"
+version = "0.13.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "system-deps"
+version = "6.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
+dependencies = [
+ "cfg-expr",
+ "heck 0.5.0",
+ "pkg-config",
+ "toml 0.8.2",
+ "version-compare",
+]
+
+[[package]]
+name = "tao"
+version = "0.35.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d1c93047acf68669466a34690ac58cca7010bd1b201e1ec86f1fd0a75d3dd4a9"
+dependencies = [
+ "bitflags 2.13.0",
+ "block2",
+ "core-foundation",
+ "core-graphics",
+ "crossbeam-channel",
+ "dbus",
+ "dispatch2",
+ "dlopen2",
+ "dpi",
+ "gdkwayland-sys",
+ "gdkx11-sys",
+ "gtk",
+ "jni",
+ "libc",
+ "log",
+ "ndk",
+ "ndk-sys",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-foundation",
+ "objc2-ui-kit",
+ "once_cell",
+ "parking_lot",
+ "percent-encoding",
+ "raw-window-handle",
+ "tao-macros",
+ "unicode-segmentation",
+ "url",
+ "windows",
+ "windows-core 0.61.2",
+ "windows-version",
+ "x11-dl",
+]
+
+[[package]]
+name = "tao-macros"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "target-lexicon"
+version = "0.12.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
+
+[[package]]
+name = "tauri"
+version = "2.11.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "667b20e2726d572dea2de7370da16e188eb06008faf9a92fab7cdc46791190b5"
+dependencies = [
+ "anyhow",
+ "bytes",
+ "cookie",
+ "dirs",
+ "dunce",
+ "embed_plist",
+ "getrandom 0.3.4",
+ "glob",
+ "gtk",
+ "heck 0.5.0",
+ "http",
+ "jni",
+ "libc",
+ "log",
+ "mime",
+ "muda",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-foundation",
+ "objc2-ui-kit",
+ "objc2-web-kit",
+ "percent-encoding",
+ "plist",
+ "raw-window-handle",
+ "reqwest",
+ "serde",
+ "serde_json",
+ "serde_repr",
+ "serialize-to-javascript",
+ "swift-rs",
+ "tauri-build",
+ "tauri-macros",
+ "tauri-runtime",
+ "tauri-runtime-wry",
+ "tauri-utils",
+ "thiserror 2.0.18",
+ "tokio",
+ "tray-icon",
+ "url",
+ "webkit2gtk",
+ "webview2-com",
+ "window-vibrancy",
+ "windows",
+]
+
+[[package]]
+name = "tauri-build"
+version = "2.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc9ce40b16101cb6ea63d3e221567affd1c3a9205f95d7bc574941a10636b632"
+dependencies = [
+ "anyhow",
+ "cargo_toml",
+ "dirs",
+ "glob",
+ "heck 0.5.0",
+ "json-patch",
+ "schemars 0.8.22",
+ "semver",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "tauri-winres",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-codegen"
+version = "2.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "08279169ff42f8fc45a1dbc9dcae888893ba95288142e5880c59b93a26d2cfc5"
+dependencies = [
+ "base64 0.22.1",
+ "brotli",
+ "ico",
+ "json-patch",
+ "plist",
+ "png 0.17.16",
+ "proc-macro2",
+ "quote",
+ "semver",
+ "serde",
+ "serde_json",
+ "sha2",
+ "syn 2.0.118",
+ "tauri-utils",
+ "thiserror 2.0.18",
+ "time",
+ "url",
+ "uuid",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-macros"
+version = "2.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8b394794f399a421811d06966343e7933fcae92d59f5180b9388d1174497a45"
+dependencies = [
+ "heck 0.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "tauri-codegen",
+ "tauri-utils",
+]
+
+[[package]]
+name = "tauri-plugin"
+version = "2.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "74be5dd4bed9afbd145e5716b5fa2ec28cbc29c34ffa61c258c9273d896c8020"
+dependencies = [
+ "anyhow",
+ "glob",
+ "plist",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-plugin-opener"
+version = "2.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17e1bea14edce6b793a04e2417e3fd924b9bc4faae83cdee7d714156cceeed29"
+dependencies = [
+ "dunce",
+ "glob",
+ "objc2-app-kit",
+ "objc2-foundation",
+ "open",
+ "schemars 0.8.22",
+ "serde",
+ "serde_json",
+ "tauri",
+ "tauri-plugin",
+ "thiserror 2.0.18",
+ "url",
+ "windows",
+ "zbus",
+]
+
+[[package]]
+name = "tauri-runtime"
+version = "2.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b0b4bc95aed361b0019067d189a1174a603d460d0f6c72606512d59fc9c12ec8"
+dependencies = [
+ "cookie",
+ "dpi",
+ "gtk",
+ "http",
+ "jni",
+ "objc2",
+ "objc2-ui-kit",
+ "objc2-web-kit",
+ "raw-window-handle",
+ "serde",
+ "serde_json",
+ "tauri-utils",
+ "thiserror 2.0.18",
+ "url",
+ "webkit2gtk",
+ "webview2-com",
+ "windows",
+]
+
+[[package]]
+name = "tauri-runtime-wry"
+version = "2.11.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4e6fac707727b7a2f48e4ded90976324267371073edbb415ffb73bb0458d203f"
+dependencies = [
+ "gtk",
+ "http",
+ "jni",
+ "log",
+ "objc2",
+ "objc2-app-kit",
+ "once_cell",
+ "percent-encoding",
+ "raw-window-handle",
+ "softbuffer",
+ "tao",
+ "tauri-runtime",
+ "tauri-utils",
+ "url",
+ "webkit2gtk",
+ "webview2-com",
+ "windows",
+ "wry",
+]
+
+[[package]]
+name = "tauri-utils"
+version = "2.9.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3e176a18e67764923c4f1ce66f25ae4abe5f688384d5eb1a0fa6c77f3d90f887"
+dependencies = [
+ "anyhow",
+ "brotli",
+ "cargo_metadata",
+ "ctor",
+ "dom_query",
+ "dunce",
+ "glob",
+ "http",
+ "infer",
+ "json-patch",
+ "log",
+ "memchr",
+ "phf",
+ "plist",
+ "proc-macro2",
+ "quote",
+ "regex",
+ "schemars 0.8.22",
+ "semver",
+ "serde",
+ "serde-untagged",
+ "serde_json",
+ "serde_with",
+ "swift-rs",
+ "thiserror 2.0.18",
+ "toml 1.1.2+spec-1.1.0",
+ "url",
+ "urlpattern",
+ "uuid",
+ "walkdir",
+]
+
+[[package]]
+name = "tauri-winres"
+version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6"
+dependencies = [
+ "dunce",
+ "embed-resource",
+ "toml 1.1.2+spec-1.1.0",
+]
+
+[[package]]
+name = "tempfile"
+version = "3.27.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
+dependencies = [
+ "fastrand",
+ "getrandom 0.4.3",
+ "once_cell",
+ "rustix",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "tendril"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
+dependencies = [
+ "new_debug_unreachable",
+]
+
+[[package]]
+name = "thiserror"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
+dependencies = [
+ "thiserror-impl 1.0.69",
+]
+
+[[package]]
+name = "thiserror"
+version = "2.0.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
+dependencies = [
+ "thiserror-impl 2.0.18",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "1.0.69"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "2.0.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "time"
+version = "0.3.53"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
+dependencies = [
+ "deranged",
+ "num-conv",
+ "powerfmt",
+ "serde_core",
+ "time-core",
+ "time-macros",
+]
+
+[[package]]
+name = "time-core"
+version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
+
+[[package]]
+name = "time-macros"
+version = "0.2.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
+dependencies = [
+ "num-conv",
+ "time-core",
+]
+
+[[package]]
+name = "tinystr"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
+dependencies = [
+ "displaydoc",
+ "zerovec",
+]
+
+[[package]]
+name = "tinyvec"
+version = "1.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
+dependencies = [
+ "tinyvec_macros",
+]
+
+[[package]]
+name = "tinyvec_macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+
+[[package]]
+name = "tokio"
+version = "1.52.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
+dependencies = [
+ "bytes",
+ "libc",
+ "mio",
+ "pin-project-lite",
+ "socket2",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "tokio-util"
+version = "0.7.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
+dependencies = [
+ "bytes",
+ "futures-core",
+ "futures-sink",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
+name = "toml"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
+dependencies = [
+ "serde",
+ "serde_spanned 0.6.9",
+ "toml_datetime 0.6.3",
+ "toml_edit 0.20.2",
+]
+
+[[package]]
+name = "toml"
+version = "0.9.12+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
+dependencies = [
+ "indexmap 2.14.0",
+ "serde_core",
+ "serde_spanned 1.1.1",
+ "toml_datetime 0.7.5+spec-1.1.0",
+ "toml_parser",
+ "toml_writer",
+ "winnow 0.7.15",
+]
+
+[[package]]
+name = "toml"
+version = "1.1.2+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
+dependencies = [
+ "indexmap 2.14.0",
+ "serde_core",
+ "serde_spanned 1.1.1",
+ "toml_datetime 1.1.1+spec-1.1.0",
+ "toml_parser",
+ "toml_writer",
+ "winnow 1.0.3",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "0.7.5+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "1.1.1+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.19.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
+dependencies = [
+ "indexmap 2.14.0",
+ "toml_datetime 0.6.3",
+ "winnow 0.5.40",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.20.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
+dependencies = [
+ "indexmap 2.14.0",
+ "serde",
+ "serde_spanned 0.6.9",
+ "toml_datetime 0.6.3",
+ "winnow 0.5.40",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.25.12+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
+dependencies = [
+ "indexmap 2.14.0",
+ "toml_datetime 1.1.1+spec-1.1.0",
+ "toml_parser",
+ "winnow 1.0.3",
+]
+
+[[package]]
+name = "toml_parser"
+version = "1.1.2+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
+dependencies = [
+ "winnow 1.0.3",
+]
+
+[[package]]
+name = "toml_writer"
+version = "1.1.1+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
+
+[[package]]
+name = "tower"
+version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
+dependencies = [
+ "futures-core",
+ "futures-util",
+ "pin-project-lite",
+ "sync_wrapper",
+ "tokio",
+ "tower-layer",
+ "tower-service",
+]
+
+[[package]]
+name = "tower-http"
+version = "0.6.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
+dependencies = [
+ "bitflags 2.13.0",
+ "bytes",
+ "futures-util",
+ "http",
+ "http-body",
+ "pin-project-lite",
+ "tower",
+ "tower-layer",
+ "tower-service",
+ "url",
+]
+
+[[package]]
+name = "tower-layer"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
+
+[[package]]
+name = "tower-service"
+version = "0.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
+
+[[package]]
+name = "tracing"
+version = "0.1.44"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
+dependencies = [
+ "pin-project-lite",
+ "tracing-attributes",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-attributes"
+version = "0.1.31"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "tracing-core"
+version = "0.1.36"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
+dependencies = [
+ "once_cell",
+]
+
+[[package]]
+name = "tray-icon"
+version = "0.24.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "65ba1e5f6b9ef9fd87e21b9c6f351554dbd717960089168fcfdef854686961dc"
+dependencies = [
+ "crossbeam-channel",
+ "dirs",
+ "libappindicator",
+ "muda",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-foundation",
+ "once_cell",
+ "png 0.18.1",
+ "serde",
+ "thiserror 2.0.18",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "try-lock"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
+
+[[package]]
+name = "typeid"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
+
+[[package]]
+name = "typenum"
+version = "1.20.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
+
+[[package]]
+name = "uds_windows"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
+dependencies = [
+ "memoffset",
+ "tempfile",
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "unic-char-property"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
+dependencies = [
+ "unic-char-range",
+]
+
+[[package]]
+name = "unic-char-range"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
+
+[[package]]
+name = "unic-common"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
+
+[[package]]
+name = "unic-ucd-ident"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
+dependencies = [
+ "unic-char-property",
+ "unic-char-range",
+ "unic-ucd-version",
+]
+
+[[package]]
+name = "unic-ucd-version"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
+dependencies = [
+ "unic-common",
+]
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
+
+[[package]]
+name = "unicode-segmentation"
+version = "1.13.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
+
+[[package]]
+name = "url"
+version = "2.5.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
+dependencies = [
+ "form_urlencoded",
+ "idna",
+ "percent-encoding",
+ "serde",
+ "serde_derive",
+]
+
+[[package]]
+name = "urlpattern"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
+dependencies = [
+ "regex",
+ "serde",
+ "unic-ucd-ident",
+ "url",
+]
+
+[[package]]
+name = "utf8_iter"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
+
+[[package]]
+name = "uuid"
+version = "1.23.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
+dependencies = [
+ "getrandom 0.4.3",
+ "js-sys",
+ "serde_core",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "version-compare"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
+
+[[package]]
+name = "version_check"
+version = "0.9.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
+
+[[package]]
+name = "vswhom"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
+dependencies = [
+ "libc",
+ "vswhom-sys",
+]
+
+[[package]]
+name = "vswhom-sys"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
+dependencies = [
+ "cc",
+ "libc",
+]
+
+[[package]]
+name = "walkdir"
+version = "2.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
+dependencies = [
+ "same-file",
+ "winapi-util",
+]
+
+[[package]]
+name = "want"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
+dependencies = [
+ "try-lock",
+]
+
+[[package]]
+name = "wasi"
+version = "0.11.1+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
+
+[[package]]
+name = "wasip2"
+version = "1.0.4+wasi-0.2.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
+dependencies = [
+ "wit-bindgen",
+]
+
+[[package]]
+name = "wasm-bindgen"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
+dependencies = [
+ "cfg-if",
+ "once_cell",
+ "rustversion",
+ "wasm-bindgen-macro",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-futures"
+version = "0.4.76"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
+dependencies = [
+ "quote",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
+dependencies = [
+ "bumpalo",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.126"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "wasm-streams"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
+dependencies = [
+ "futures-util",
+ "js-sys",
+ "wasm-bindgen",
+ "wasm-bindgen-futures",
+ "web-sys",
+]
+
+[[package]]
+name = "web-sys"
+version = "0.3.103"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
+dependencies = [
+ "js-sys",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "web_atoms"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297"
+dependencies = [
+ "phf",
+ "phf_codegen",
+ "string_cache",
+ "string_cache_codegen",
+]
+
+[[package]]
+name = "webkit2gtk"
+version = "2.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
+dependencies = [
+ "bitflags 1.3.2",
+ "cairo-rs",
+ "gdk",
+ "gdk-sys",
+ "gio",
+ "gio-sys",
+ "glib",
+ "glib-sys",
+ "gobject-sys",
+ "gtk",
+ "gtk-sys",
+ "javascriptcore-rs",
+ "libc",
+ "once_cell",
+ "soup3",
+ "webkit2gtk-sys",
+]
+
+[[package]]
+name = "webkit2gtk-sys"
+version = "2.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
+dependencies = [
+ "bitflags 1.3.2",
+ "cairo-sys-rs",
+ "gdk-sys",
+ "gio-sys",
+ "glib-sys",
+ "gobject-sys",
+ "gtk-sys",
+ "javascriptcore-rs-sys",
+ "libc",
+ "pkg-config",
+ "soup3-sys",
+ "system-deps",
+]
+
+[[package]]
+name = "webview2-com"
+version = "0.38.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
+dependencies = [
+ "webview2-com-macros",
+ "webview2-com-sys",
+ "windows",
+ "windows-core 0.61.2",
+ "windows-implement",
+ "windows-interface",
+]
+
+[[package]]
+name = "webview2-com-macros"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "webview2-com-sys"
+version = "0.38.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
+dependencies = [
+ "thiserror 2.0.18",
+ "windows",
+ "windows-core 0.61.2",
+]
+
+[[package]]
+name = "winapi"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+dependencies = [
+ "winapi-i686-pc-windows-gnu",
+ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
+[[package]]
+name = "winapi-util"
+version = "0.1.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
+dependencies = [
+ "windows-sys 0.61.2",
+]
+
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+
+[[package]]
+name = "window-vibrancy"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
+dependencies = [
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation",
+ "raw-window-handle",
+ "windows-sys 0.59.0",
+ "windows-version",
+]
+
+[[package]]
+name = "windows"
+version = "0.61.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
+dependencies = [
+ "windows-collections",
+ "windows-core 0.61.2",
+ "windows-future",
+ "windows-link 0.1.3",
+ "windows-numerics",
+]
+
+[[package]]
+name = "windows-collections"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
+dependencies = [
+ "windows-core 0.61.2",
+]
+
+[[package]]
+name = "windows-core"
+version = "0.61.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
+dependencies = [
+ "windows-implement",
+ "windows-interface",
+ "windows-link 0.1.3",
+ "windows-result 0.3.4",
+ "windows-strings 0.4.2",
+]
+
+[[package]]
+name = "windows-core"
+version = "0.62.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
+dependencies = [
+ "windows-implement",
+ "windows-interface",
+ "windows-link 0.2.1",
+ "windows-result 0.4.1",
+ "windows-strings 0.5.1",
+]
+
+[[package]]
+name = "windows-future"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
+dependencies = [
+ "windows-core 0.61.2",
+ "windows-link 0.1.3",
+ "windows-threading",
+]
+
+[[package]]
+name = "windows-implement"
+version = "0.60.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "windows-interface"
+version = "0.59.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "windows-link"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
+
+[[package]]
+name = "windows-link"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
+
+[[package]]
+name = "windows-numerics"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
+dependencies = [
+ "windows-core 0.61.2",
+ "windows-link 0.1.3",
+]
+
+[[package]]
+name = "windows-result"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
+dependencies = [
+ "windows-link 0.1.3",
+]
+
+[[package]]
+name = "windows-result"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
+dependencies = [
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "windows-strings"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
+dependencies = [
+ "windows-link 0.1.3",
+]
+
+[[package]]
+name = "windows-strings"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
+dependencies = [
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.45.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
+dependencies = [
+ "windows-targets 0.42.2",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.59.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
+dependencies = [
+ "windows-targets 0.52.6",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.61.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
+dependencies = [
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
+dependencies = [
+ "windows_aarch64_gnullvm 0.42.2",
+ "windows_aarch64_msvc 0.42.2",
+ "windows_i686_gnu 0.42.2",
+ "windows_i686_msvc 0.42.2",
+ "windows_x86_64_gnu 0.42.2",
+ "windows_x86_64_gnullvm 0.42.2",
+ "windows_x86_64_msvc 0.42.2",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
+dependencies = [
+ "windows_aarch64_gnullvm 0.52.6",
+ "windows_aarch64_msvc 0.52.6",
+ "windows_i686_gnu 0.52.6",
+ "windows_i686_gnullvm",
+ "windows_i686_msvc 0.52.6",
+ "windows_x86_64_gnu 0.52.6",
+ "windows_x86_64_gnullvm 0.52.6",
+ "windows_x86_64_msvc 0.52.6",
+]
+
+[[package]]
+name = "windows-threading"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
+dependencies = [
+ "windows-link 0.1.3",
+]
+
+[[package]]
+name = "windows-version"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
+dependencies = [
+ "windows-link 0.2.1",
+]
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+
+[[package]]
+name = "windows_i686_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.42.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.52.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+
+[[package]]
+name = "winnow"
+version = "0.5.40"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "winnow"
+version = "0.7.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
+
+[[package]]
+name = "winnow"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
+name = "winreg"
+version = "0.55.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
+dependencies = [
+ "cfg-if",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "wit-bindgen"
+version = "0.57.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
+
+[[package]]
+name = "writeable"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
+
+[[package]]
+name = "wry"
+version = "0.55.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "186f9871daa55fd9c016578b810d149de58367113db7fb72b462d2323ce19514"
+dependencies = [
+ "base64 0.22.1",
+ "block2",
+ "cookie",
+ "crossbeam-channel",
+ "dirs",
+ "dom_query",
+ "dpi",
+ "dunce",
+ "gdkx11",
+ "gtk",
+ "http",
+ "javascriptcore-rs",
+ "jni",
+ "libc",
+ "ndk",
+ "objc2",
+ "objc2-app-kit",
+ "objc2-core-foundation",
+ "objc2-foundation",
+ "objc2-ui-kit",
+ "objc2-web-kit",
+ "once_cell",
+ "percent-encoding",
+ "raw-window-handle",
+ "sha2",
+ "soup3",
+ "tao-macros",
+ "thiserror 2.0.18",
+ "url",
+ "webkit2gtk",
+ "webkit2gtk-sys",
+ "webview2-com",
+ "windows",
+ "windows-core 0.61.2",
+ "windows-version",
+ "x11-dl",
+]
+
+[[package]]
+name = "x11"
+version = "2.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
+dependencies = [
+ "libc",
+ "pkg-config",
+]
+
+[[package]]
+name = "x11-dl"
+version = "2.21.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
+dependencies = [
+ "libc",
+ "once_cell",
+ "pkg-config",
+]
+
+[[package]]
+name = "yoke"
+version = "0.8.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
+dependencies = [
+ "stable_deref_trait",
+ "yoke-derive",
+ "zerofrom",
+]
+
+[[package]]
+name = "yoke-derive"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "synstructure",
+]
+
+[[package]]
+name = "zbus"
+version = "5.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a28b97f866896a4be7aefd2b5a8e01bb6773d19a775d54ab28b4d094b9a4480e"
+dependencies = [
+ "async-broadcast",
+ "async-executor",
+ "async-io",
+ "async-lock",
+ "async-process",
+ "async-recursion",
+ "async-task",
+ "async-trait",
+ "blocking",
+ "enumflags2",
+ "event-listener",
+ "futures-core",
+ "futures-lite",
+ "hex",
+ "libc",
+ "ordered-stream",
+ "rustix",
+ "serde",
+ "serde_repr",
+ "tracing",
+ "uds_windows",
+ "uuid",
+ "windows-sys 0.61.2",
+ "winnow 1.0.3",
+ "zbus_macros",
+ "zbus_names",
+ "zvariant",
+]
+
+[[package]]
+name = "zbus_macros"
+version = "5.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e05ad887425eecf5e8384dc2406a4a9313eb73468712fc1cdea362eb4fe0469"
+dependencies = [
+ "proc-macro-crate 3.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "zbus_names",
+ "zvariant",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zbus_names"
+version = "4.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1039ca249fee9559680f3a9f05b55e0761fee51af4f6c1e7d8c1f31e549721d2"
+dependencies = [
+ "serde",
+ "winnow 1.0.3",
+ "zvariant",
+]
+
+[[package]]
+name = "zerofrom"
+version = "0.1.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
+dependencies = [
+ "zerofrom-derive",
+]
+
+[[package]]
+name = "zerofrom-derive"
+version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "synstructure",
+]
+
+[[package]]
+name = "zerotrie"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
+dependencies = [
+ "displaydoc",
+ "yoke",
+ "zerofrom",
+]
+
+[[package]]
+name = "zerovec"
+version = "0.11.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
+dependencies = [
+ "yoke",
+ "zerofrom",
+ "zerovec-derive",
+]
+
+[[package]]
+name = "zerovec-derive"
+version = "0.11.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "zmij"
+version = "1.0.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bd2f034a4bebf216c9e4b7083603e024cf930873fd67830cfb083c9fa33129d9"
+
+[[package]]
+name = "zvariant"
+version = "5.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7cf057bb00bf5c9ad77abb6147b0ca4818236a1858416e9d988e40d6322fefa7"
+dependencies = [
+ "endi",
+ "enumflags2",
+ "serde",
+ "winnow 1.0.3",
+ "zvariant_derive",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_derive"
+version = "5.13.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8118ca6bda77bfc0ab51d660db0c955f2505eef854c9a449435bccb616933b31"
+dependencies = [
+ "proc-macro-crate 3.5.0",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
+ "zvariant_utils",
+]
+
+[[package]]
+name = "zvariant_utils"
+version = "3.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90cb9383f9b45290407a1258b202d3f8f01db719eb60b4e4055c6375af4fc7c7"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde",
+ "syn 2.0.118",
+ "winnow 1.0.3",
+]
diff --git a/src/data/buffs.json b/src/data/buffs.json
new file mode 100644
index 0000000..08aee59
--- /dev/null
+++ b/src/data/buffs.json
@@ -0,0 +1 @@
+[{"id":"01807959-3249-40f3-a25b-9983b3d9e5cb","name":"Tortured","params":"strength*0.25,agility*0.25,vitality*0.25,srg*0.25","desc":"You were tortured at Trosky, and as a result your Strength, Agility and Vitality are reduced."},{"id":"04218e40-e756-476b-914e-03d67a24e733","name":"Poison","params":"poi=1","desc":"You've been poisoned."},{"id":"053b4122-6dfa-44d1-9a7c-70bf14c67506","name":"inDialog","params":"vision*0.8, hearing*0.8","desc":""},{"id":"0606c003-7419-4e83-b359-59d1ff5ca8f5","name":"svatba_tournamentBuffForNpc","params":"hlh*0.1,slh*0.1,ade*1.2","desc":""},{"id":"061d9f55-6652-461f-bb64-471a631f2d21","name":"item_bridle","params":"vitality+5,agility+3","desc":""},{"id":"0648c02b-ebe8-4a77-85a5-23b43f625dc5","name":"Well Rested","params":"mst*1.2","desc":"You slept well, so you have 20% more Stamina."},{"id":"068143cd-45b5-4c44-8c6c-9d2c622b75de","name":"blacksmithing_stamina","params":"","desc":""},{"id":"072de769-e653-4191-80e6-8c1fcd207d59","name":"Saliva","params":"","desc":"You have a mild alcohol habit, but so far it's had no consequences for you. Long-term abstinence will cure you."},{"id":"076c2e93-347d-4996-bef9-016c3d890008","name":"not_so_tough_guy","params":"hlh*2.5","desc":""},{"id":"07db9dfd-0e0c-4cbe-bf8a-10aaa1add262","name":"test_invisible","params":"ors=-1","desc":""},{"id":"083704b7-e238-41c3-9996-8ebd5cde89e1","name":"boar_easyKill_permanent","params":"hlh=30,slh=100, ble*3","desc":""},{"id":"084023c1-a396-4d48-aaeb-7e0f7981b66d","name":"prepadeni_ptacekBoostSpeed","params":"agility=30","desc":""},{"id":"0873fbf3-a245-4e3e-9b4a-bb2f2df09c02","name":"prepadeniVlasskehoDvora_alcoholAntidoteBooster","params":"apa=0.05","desc":""},{"id":"087ae30d-5484-4223-8814-0bc946a07172","name":"Stamina Frenzy","params":"hlh*0.5,slh*1.8","desc":""},{"id":"0902c0be-711b-40be-bc76-78d93de970aa","name":"meat_str_exp_test","params":"xst*1.1","desc":""},{"id":"09fd5ffb-4972-4b70-8c2e-02c35bd15602","name":"combat_passivity","params":"cag=0","desc":""},{"id":"0a00cd37-3769-4d0f-8f82-088d5a3f9b1b","name":"mlynaruvUcen_stealthTakedownDebuff","params":"fencing=1","desc":""},{"id":"0ba907a9-780f-4427-ba8a-a3b2a788d0bc","name":"unstream_protection_nonpersistent","params":"","desc":""},{"id":"0c903899-fcc9-4cf2-9ee3-1130ac08b0fc","name":"Bleeding","params":"","desc":"You're bleeding. Unless you bandage your wounds, you'll slowly lose health and die. The bleeding won't stop on its own."},{"id":"0d256673-3b7a-4125-a069-b40c20d5071f","name":"boar_charge","params":"cow+1200","desc":""},{"id":"0d635e3e-757d-477a-8196-f504f8afce46","name":"Time Well Spent","params":"strength+1,agility+1,vitality+1,deb+1","desc":"You've had some sweet moments which no one can take away from you. You feel refreshed and invigorated.\n \nYour Strength, Agility and Vitality are temporarily increased by 1."},{"id":"0d7ada24-d3fc-4dc9-abc8-5e57bdf747bc","name":"test_nighthawk_visual","params":"owl+1","desc":""},{"id":"0dcc7c4f-6ea3-4bd7-8f80-79249c4f5a66","name":"haggle_denial","params":"hde+1","desc":""},{"id":"0e553f9a-5da8-4050-912e-0506e4a95c18","name":"Tortured","params":"strength*0.8,agility*0.8,vitality*0.8","desc":"You were tortured at Trosky, and as a result your Strength, Agility and Vitality are reduced."},{"id":"0f6bc79a-fc67-4aab-a797-4a9d4e4c2dc5","name":"death_protection_nonpersistent","params":"imm=1,upr=1","desc":""},{"id":"0fc57667-2401-467a-82ec-90c402c22769","name":"Golden Egg","params":"charisma=20,rcw=3,pt1+0.5,pt5+0.5,dtf+0.75,dbf+0.25","desc":"You ate the golden egg! They say it brings an enormous amount of luck. On the other hand, gold is pretty heavy."},{"id":"10fc25ca-c095-44c6-b88b-d54ad58ab0a6","name":"Injured Left Leg","params":"Run-1,Walk-0.5,LimitSprint","desc":"Your left leg is injured.\n \n Once the injury level reaches 60% or more, you will not be able to run and your walk will slow down.\n \n You can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"117fe105-5c31-4e45-9e77-50993dae4472","name":"quest_utokNebakov_blur_short","params":"","desc":""},{"id":"1191c7f4-2dea-4c1c-8b7d-e1c808871e78","name":"test_extreme_digestion","params":"dig*100","desc":""},{"id":"11f44a76-21e3-4e1a-9b25-4b9341d4b8ef","name":"visualBleeding_protection","params":"btd*0","desc":""},{"id":"1385b27e-0d22-4a92-806b-3a0c94f6a813","name":"combat_morale_context","params":"","desc":""},{"id":"13d87f0e-fc80-489b-97b6-ad31458e93e3","name":"prepadeni_vorechMorale","params":"dmd*0, dmh*0, drn*0","desc":""},{"id":"14353495-866f-471a-b446-7a3e1099c35c","name":"quest_kumaniNaTrosecku_campDrinkingSecondPhaseNotSoDrunk","params":"fpd+0.6","desc":""},{"id":"151ace61-70fb-409e-8b95-57b35d6ad83f","name":"posledniPomazani_healthLossBoost","params":"hlh*10","desc":""},{"id":"1524fad6-ef2e-450c-9f96-b37a8947c025","name":"Anti-alcohol Food.","params":"apa=0.06","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-450c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.03","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-458c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.025","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-483c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.04","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-495c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.04","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-589c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.025","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-752c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.025","desc":"Anti-alcohol Food."},{"id":"1524fad6-ef2e-853c-9f96-b5d88947c025","name":"Anti-alcohol Food.","params":"apa=0.01","desc":"Anti-alcohol Food."},{"id":"16aac08d-aed6-46cd-9794-d90b836d1c01","name":"thirty_heal","params":"health+30/t","desc":""},{"id":"17899ec7-4801-4d38-8fe7-f02b8a8fa48d","name":"horse_moraleDebuff_mountedByPlayer","params":"mor*1.0","desc":""},{"id":"187d87c7-e97a-4558-ab7c-5318e441e065","name":"archery_stamina","params":"","desc":""},{"id":"18a0bd7c-214f-4107-bbc1-9e9bc09ce9db","name":"unmute_nonpersistent","params":"mut=0","desc":""},{"id":"1951e0bc-532d-4813-a64d-38ef635b3fd5","name":"interrupt_deafness","params":"hearing=0","desc":""},{"id":"196d18f7-46a7-4ad3-99ff-dd6ccd29da77","name":"infinite_unconsciousness","params":"ufo*0","desc":""},{"id":"1a42e06f-41c2-4d0a-bcf7-935b0c87a56a","name":"test_huge_inventory","params":"cap+1000","desc":""},{"id":"1aa6a7cc-4cee-4b73-8080-562bebc21443","name":"Perfume Effect","params":"charisma+1;charisma-3","desc":"This tincture makes you the best smelling bloke North of the Alps and East of the Rhine, but only for a short period of time."},{"id":"1ab50a60-821b-4c19-ace3-c296d73566da","name":"Disgraced","params":"charisma-4,con+0.4,plr+2","desc":"You were put in the pillory for your crimes. Being publicly humiliated will have an effect on your reputation. You will temporarily be more noticeable and less charismatic.\n \nYour Charisma is temporarily decreased by 4.\n\nYour Conspicuousness is temporarily increased by 20."},{"id":"1ad1650e-e565-40bf-9e99-01cefea90c2f","name":"healthEatSleep_instant","params":"health+1000/s,hunger+1000/s,exhaust=1000/s","desc":""},{"id":"1ae8375c-5027-4f37-b09f-02f39de3cb0a","name":"hare_oneshot_permanent","params":"hlh=1000,slh=1000","desc":""},{"id":"1b562bab-88fc-4e84-83fd-a5ac465c18a8","name":"sniffing","params":"","desc":""},{"id":"1b569025-da7e-44d4-a167-fa7972050085","name":"item_gloves","params":"craftsmanship+2","desc":""},{"id":"1c13fe26-3766-4f50-829f-080bb9d543b8","name":"forced_skiptime_protection","params":"exh=0,dig=0,ble=0","desc":""},{"id":"1f50033a-475f-42c8-94df-6c98b1d982a8","name":"erik_erikAngryDebuff","params":"fencing*0.85,defense*0.85,strength*0.85,agility*0.85,weapon_sword*0.85","desc":""},{"id":"1fe1dee3-d749-4a2d-b36f-4a6b9a0c412a","name":"autotest_min_might","params":"mgt=0","desc":""},{"id":"2140972b-095a-40a8-909e-c1b46e261504","name":"branding","params":"brn+0.5;brn+0.5","desc":""},{"id":"21c300a6-552c-46e5-9f52-ad89f452187c","name":"disableMasterStrike","params":"ams=0","desc":""},{"id":"227015bf-ba96-4e11-874d-5f3874b1cb3c","name":"Pepa's Sauerkraut Effect","params":"vitality+1, health+10","desc":"Pepa's sauerkraut has beneficial effects. You get a +1 vitality bonus."},{"id":"228f7520-d160-436a-8d37-97f677a21591","name":"test_suppressArmorLoad_low","params":"alo=-0.2","desc":""},{"id":"2290487b-ec89-47c1-8ac0-f1decb9cd32f","name":"Damaged Arms","params":"","desc":"Some of your weapons are in a bad shape. You'd better take care of that, else you risk permanent reduction in quality."},{"id":"22a77241-ab4c-456a-9596-ba158154ece1","name":"quest_zikmunduvTabor_ditrichBoost","params":"strength*1.2,agility*1.2,vitality*1.2,fencing*1.2,defense*1.2,weapon_sword*1.2,heavy_weapons*1.2,weapon_large*1.2,weapon_unarmed*1.2,marksmanship*1.2","desc":""},{"id":"231cf355-1fc4-48f4-b694-ccd9363a2e5e","name":"mikes_kozlik_nebakov_stats","params":"strength=18,agility=14,vitality=14,vision=16,hearing=16,courage=18,fencing=14,defense=14,weapon_sword=14,weapon_unarmed=14,weapon_large=14,heavy_weapons=14,marksmanship=14","desc":""},{"id":"24beca1b-ceee-40b0-9138-6955acdf557e","name":"autotest_min_impress","params":"imp=0","desc":""},{"id":"25222af4-f519-4baa-ac87-803e5f974d62","name":"mikes_kozlik_oblehani_suchdole_stats","params":"strength=25,agility=25,vitality=25,vision=30,hearing=30,courage=30,fencing=25,defense=25,weapon_sword=25,weapon_unarmed=25,weapon_large=25,heavy_weapons=25,marksmanship=25","desc":""},{"id":"25f95783-b9a6-4554-aab2-48b43dd9280b","name":"closed_visor_debuff","params":"srg*0.95","desc":""},{"id":"261fc53f-3ef2-4e0a-a7c8-e46bc8528977","name":"horse_throwdown_protection","params":"hml=0","desc":""},{"id":"26ddafa9-42ff-4416-bf7d-2d9aa4075ad0","name":"Appetite","params":"strength-1","desc":"You have an alcohol habit. Your strength decreases by 1 until you have a drink. Long-term abstinence will cure you."},{"id":"26e0501f-c2d6-463f-b9b8-1946e5e9b1c3","name":"robbed_angriness","params":"ran+1","desc":""},{"id":"27f2305e-8b64-4426-ae2f-203ddf38b80b","name":"Marigold Potion Effect","params":"health+50/t","desc":"Marigold concoction is regenerating your health by half."},{"id":"27f46b49-dbe7-4b42-b8f8-470e4f28fb35","name":"Increased Morale","params":"strength*1.2,agility*1.2,vitality*1.2,fencing*1.2,defense*1.2,weapon_sword*1.2,heavy_weapons*1.2,weapon_large*1.2,weapon_unarmed*1.2,marksmanship*1.2","desc":"Your morale is boosted. The Italian Court will not fall! Not today!"},{"id":"29336a21-dd76-447b-a4f0-94dd6b9db466","name":"poor_hearing","params":"hearing*0.3","desc":""},{"id":"2a37002d-b6c3-4323-a139-f2eb5ada6087","name":"quest_noBlood","params":"bld=0","desc":""},{"id":"2aef664e-3b40-4a59-bedf-6af5a83a2720","name":"item_horsePlate","params":"courage+5,agility-5","desc":""},{"id":"2c04557c-b6cf-4bfd-b815-a0204f57d3cf","name":"combat_fall_damage_enable","params":"efd+1","desc":""},{"id":"2c0cd734-d506-459b-a4ea-507c9e8a1074","name":"thirty_heal_instant","params":"health+30/s","desc":""},{"id":"2c14d546-1993-4b77-946f-004d63c686ec","name":"npc_meal","params":"health+2/t","desc":""},{"id":"2c5a7879-8fa0-4fb2-a6d4-3f66bbd51021","name":"alcoholAddictionBohuta","params":"aml+4","desc":""},{"id":"2c6f5c04-087b-4a7d-9b0e-0d7e07c38483","name":"meat_agi_exp_test","params":"xag*1.1","desc":""},{"id":"2d71ec02-4257-479e-a8fa-a1a8fda667dc","name":"test_realspeed","params":"rms*1","desc":""},{"id":"2e9634d8-a7e4-4cdb-a5a5-eba2ca54ce16","name":"stealth_lowerVisibilityArea","params":"vib-0.3,con-0.3","desc":""},{"id":"30750623-dc45-4fa2-b82d-ae1ef8c52a8a","name":"item_spectacles","params":"scholarship+5","desc":""},{"id":"3139a69b-a65b-4056-a95e-6eeadc499a81","name":"companion_infinite_morale","params":"mor+1.0, dmd*0.0, dmh*0.0, drn*0.0","desc":""},{"id":"3190c8ba-5aa2-4825-9e96-03387983f9cd","name":"Henry's Mintha Perfume Effect","params":"charisma+5;charisma-5","desc":"Increases Charisma by 5. However, if used in combination with another perfume, it decreases Charisma by 5."},{"id":"325c9978-f592-42f2-96d5-a196139ee742","name":"pogrom_wagonInvisibility","params":"ors=-1","desc":""},{"id":"3277268b-60f2-47c6-8130-ddca6bea82a1","name":"combat_close_threat_morale_context","params":"","desc":""},{"id":"32bcd798-bc87-4947-bb7e-ad07f4e9fe30","name":"unstream_protection","params":"","desc":""},{"id":"3339697b-c4de-4df1-b49e-9a57c8c0bb7f","name":"item_horsePadded","params":"courage+5,vitality-3,agility-5,strength+5","desc":""},{"id":"33d328b8-9567-41f4-b2d2-67058da639e2","name":"autotest_min_badassness","params":"bad=0","desc":""},{"id":"34f0885b-7287-4881-907f-f19751a5e831","name":"Injured Left Arm","params":"asp%0.8","desc":"Your left arm is injured. \n \n Once the level of injury reaches 60% or more, the speed of your attacks will reduce by 20%. \n \n You can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"358e6a61-66a5-468a-8588-e93f2f17c1f0","name":"prepadeni_initialBoostedHenry","params":"lvl+10,strength+10,speech+10,agility+10,vitality+10,fencing+10,defense+10,weapon_sword+10,heavy_weapons+10,weapon_large+10,weapon_unarmed+10,marksmanship+10,alchemy+10,craftsmanship+10,drinking+10,horse_riding+10,houndmaster+10,scholarship+10,stealth+10,survival+10,thievery+10","desc":""},{"id":"360e7fef-1051-446a-b133-7f5970af00f7","name":"vip_attackprot","params":"apr+1,kopr+1,skpr+1","desc":""},{"id":"362c7a34-218d-46dd-a001-f46095cb091a","name":"drunk_nonpersistent","params":"","desc":""},{"id":"363e7fef-1251-466a-b133-7f5970af00f7","name":"vip_attackprot_fading","params":"apr+1,kopr+1,skpr+1","desc":""},{"id":"3702b27b-2591-4dd7-9353-4ae569151d98","name":"permanent_corpse_persistent","params":"pmc+1","desc":""},{"id":"37d59205-3782-446d-b32e-89a9f786725d","name":"Injured Torso","params":"strength*0.75,agility*0.75","desc":"Your torso is injured.\n \nOnce the level of injury reaches 60% or more, your strength and agility will be reduced by 25%.\n \nYou can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"389302cb-5a3c-49cc-be4c-14579cdd4e72","name":"owned dog","params":"bba+2,uat+2,hearing+5;bba-1,uat-1,hearing-5","desc":""},{"id":"3a48b1ca-7668-437f-89ce-b20ce5d56bac","name":"New Haircut","params":"charisma+1","desc":"You've used the bathhouse services. The bathwenches' skill with scissors and razor has made a new man of you. Your charisma is temporarily increased by 1."},{"id":"3abfb65b-ec73-4f52-9bf9-c0a6a044b687","name":"prepadeni_XpGainNullifier","params":"xpm*0.0001","desc":""},{"id":"3b753f2f-0290-4962-ae6f-fa1ded8d2284","name":"nebakovObrana_boost_allies","params":"agility+10,vitality+10,marksmanship+10,fencing+10,defense+10","desc":""},{"id":"3be64de4-dca5-4580-ac24-7553e3c89b05","name":"unconsciousness_protection_cutscene","params":"upr=1","desc":""},{"id":"3c815093-4d43-40f3-9cdc-accb5c9e07ca","name":"low_pickpocketing","params":"thievery=1","desc":""},{"id":"3cd19fea-f99c-41d8-a8ec-66ff545e1f4d","name":"not_immortal_nonpersistent","params":"imm=0","desc":""},{"id":"3d4e4e2a-3d1c-4d1c-9131-9b12b21f65a5","name":"autotest_max_charisma","params":"charisma=30","desc":""},{"id":"3d530e43-375f-4739-a6ee-3bbcf9292601","name":"injured_tag","params":"","desc":""},{"id":"3e0d4151-c06f-4f5b-b4a6-cd8be1aa35f3","name":"event_chase_slow_debuff","params":"rms*0.9","desc":""},{"id":"3e330171-aa47-4a93-80e4-bc3d26d3650c","name":"Thunderstone Charm","params":"srg*1.1, srb*1.05, sra*1.05, sco*0.9","desc":"The Thunderstone protects its bearer from disasters and brings them good fortune."},{"id":"3e6e8dc6-3851-419f-b1e9-1f32524dcb06","name":"targeted by opponent (ranged wpn)","params":"cag+0.5,map*0.75","desc":""},{"id":"3f92a272-3469-46aa-b9f3-fdb5b6aa8588","name":"utokNaMalesov_malesovVillagersBoost","params":"strength+10,agility+10,vitality+10,fencing+10,defense+10,weapon_sword+10,weapon_unarmed+10,weapon_large+10,heavy_weapons+10,marksmanship+10, bba+60","desc":""},{"id":"3f96e766-9e2c-4d3c-b86c-62ad7b6f1970","name":"defense_debuff","params":"defense*0.1","desc":""},{"id":"3f98693d-43d6-4c09-bec7-2498c40ea908","name":"combatTutorial_preventHealthDamage","params":"hlh=0,slh=0,sco=0,srg=100,StaminaCooldownDefault=0,StaminaCooldownAttack=0,StaminaCooldownDodge=0,StaminaCooldownHit=0,StaminaCooldownBlock=0,StaminaCooldownWeaponRaised=0","desc":""},{"id":"3fc3bea1-81e6-4620-8ad7-887714193126","name":"full_heal","params":"health+100/t","desc":""},{"id":"401598d4-9e5b-4a5c-8917-afe2aad4cc6f","name":"red_deer_easyKill_permanent","params":"hlh=35,slh=100, ble*4","desc":""},{"id":"404a26eb-cc2d-46cc-8989-ca40fd0d56e1","name":"quest_weak_attacker","params":"wat*0.25","desc":""},{"id":"41e625ec-7783-46fd-8409-e2f05d93d023","name":"item_horse_shoe","params":"agility+5","desc":""},{"id":"43873196-0efc-48ee-81d2-30909c3700eb","name":"vigilant","params":"vision*1.65, hearing*1.33","desc":""},{"id":"43c56ec5-676e-4ab4-b7e3-f2765f479b83","name":"quest_kumaniNaTrosecku_onIslandVision","params":"owl+0.3","desc":""},{"id":"43cd3832-7a94-45e2-95f9-a8632fc861b8","name":"Strong Mintha Perfume Effect","params":"charisma+3;charisma-5","desc":"Increases Charisma by 3. However, if used in combination with another perfume, decreases Charisma by 5."},{"id":"443e14f2-0b9c-4be5-a1ab-b62faae938b1","name":"buff_infinite_blindness","params":"vision*0","desc":""},{"id":"44c61b30-c20e-4267-ab01-a1e39342731e","name":"test_script","params":"{{Name='strength',Modifier='AddAbs',Value=5},{Name='agility',Modifier='AddBaseRel',Value=1.2}}","desc":""},{"id":"44e1ccc9-9252-48a9-922d-2ae4523c69a3","name":"player_immortality_nonpersistent","params":"imm=1,upr=1","desc":""},{"id":"45166775-a225-47aa-bcee-338105a687d3","name":"test_constant","params":"","desc":""},{"id":"45c2c8d9-dd12-4da9-97ed-d93f0ca03b23","name":"quest_bohutovaVlozka_bohutaLeftFightBanditsStats","params":"strength*1.5,agility*1.5,vitality*1.5,fencing*1.5,defense*1.5,weapon_sword*1.5,heavy_weapons*1.5,weapon_large*1.5,weapon_unarmed*1.5,marksmanship*1.5,courage*1.5","desc":""},{"id":"46683e3b-e261-412f-b402-99ee17dda62a","name":"remove_injuries","params":"","desc":""},{"id":"46ad1d94-bce0-4d2b-be23-7d6c827616cb","name":"disable_perks_ui","params":"hvp=0","desc":""},{"id":"4757340d-214a-4188-8526-a58bcb0704e1","name":"test_suppressArmorLoad_zero","params":"alo=0","desc":""},{"id":"478f33b9-c1e3-42d3-908a-e73e6d75e8c8","name":"Nightmares","params":"strength-2,agility-2,speech-2,vitality-2","desc":"Your sleep was troubled by nightmares. You're shaken and your stats are temporarily reduced by 2."},{"id":"479a82c7-89e8-47e1-b9b3-7544762bc822","name":"stealthkill_protection","params":"skpr=1","desc":""},{"id":"47b12127-c5b3-43a8-a729-070db79a219a","name":"vip_attackprotonly_remove","params":"apr=0","desc":""},{"id":"48562e8c-f292-4c1a-a307-e63bcf0b00f2","name":"Reading Spot","params":"rdq>1","desc":"You are in a good place to read a book. Reading will be faster and you will learn more from your books."},{"id":"48afa86f-2515-422f-b2c0-f9f05f11190a","name":"combat_stat_skill_debuff","params":"strength-7,agility-5,vitality-8,speech-5,charisma-5.fencing-6,defense-7","desc":""},{"id":"4ad6bb79-f2a0-4656-bfe6-cbf4141adbc2","name":"unconscious_fall_damage_enable","params":"efd+1","desc":""},{"id":"4add60ab-9015-4e56-9f7a-cb19345d6d49","name":"test_invincible","params":"hlh=0,slh=0","desc":""},{"id":"4bc0b081-a57e-4e6e-8297-6d9db58b39b2","name":"fall_damage","params":"fdm=0","desc":""},{"id":"4ce909c2-93d3-4b37-887d-c62a79eb5890","name":"combat_riposte_probability_penalty_on_master_strike","params":"rpp+0.3","desc":""},{"id":"4d1ec44e-5d1a-436b-a8d9-973d386b48d1","name":"test_mst","params":"mst+20","desc":""},{"id":"4e029081-a402-41ef-bfc5-7a01afdc391b","name":"disable_sprint_persistent","params":"LimitSprint","desc":""},{"id":"4e5149ff-974e-4e9d-a3fa-b51aa94d243f","name":"budovaniLazni_visionBoost","params":"vision+5","desc":""},{"id":"4eb14ea6-2ad6-420d-bba6-670d05601cce","name":"autotest_no_exhaustion_digestion","params":"exh=0,dig=0","desc":""},{"id":"512c510f-12c2-404d-9c13-df1e43133ec8","name":"autotest_max_dominate","params":"dmt=30","desc":""},{"id":"5145bb5c-ac08-43b9-92a7-0a6766516d53","name":"unmute","params":"mut=0","desc":""},{"id":"519fcbcc-bd4a-4e08-a996-ab6f8bfab68a","name":"rutinaAVypad_battleBadPairDebuff","params":"defense*0.6,weapon_sword*0.8,heavy_weapons*0.8,weapon_large*0.8,weapon_unarmed*0.8,marksmanship*0.8,hlh*1.2","desc":""},{"id":"526b44bf-c119-4b26-9218-fed39d034d0e","name":"defense_debuff_nonpersistent","params":"defense*0.1","desc":""},{"id":"529f69fb-3da9-4971-b128-4e4bf8c55fe6","name":"Demand","params":"strength-3,agility-3,vitality-3,srg*0.9","desc":"You're an alcoholic. Your Strength, Speed and Vitality are reduced by 3 until you have a drink, plus your stamina is a little slower to recover. Long-term abstinence will cure you."},{"id":"52ada4a7-b8a2-466c-a3ef-bcba8daf18e1","name":"horse_regeneration","params":"health+0.05/s","desc":""},{"id":"52e578c8-608f-44e5-b6c0-e79673cfd4a0","name":"immortality_fast_heal_nonpersistent","params":"imm=1,health+100/s","desc":""},{"id":"5334ee91-1d9b-4e03-8678-9cd19647b51b","name":"fasttravel_scriptInitiated","params":"ors=-1,vision=1","desc":""},{"id":"53a52200-e84e-4e26-99ba-d84f151cadb4","name":"Poor Vision","params":"vision*0.3","desc":""},{"id":"549119f2-d5c9-43f7-ab52-487b0a262d47","name":"combat_moraleHit_large","params":"mor-1","desc":""},{"id":"549889f2-d5c9-43f7-ab52-487b0a262d47","name":"quest_stealthMiseZaJindru_brabant_moraleHit","params":"mor-0.5","desc":""},{"id":"559ec27d-1c69-48d6-9ccb-da33a9b23124","name":"temp_deaf","params":"hearing=0","desc":""},{"id":"5601746a-f692-4e65-a498-8102ed42cbcf","name":"item_apron","params":"craftsmanship+3","desc":""},{"id":"5664cd2c-d113-42e6-b71b-5ea789dfc4e3","name":"Damaged armour","params":"","desc":"Some parts of your equipment are in bad shape. You better take care of that, else you risk permanent reduction in quality."},{"id":"567ba83f-fc83-40fb-a8c6-ac42bc4a7201","name":"test_state_delta","params":"health-10/t","desc":""},{"id":"57095908-1351-40a3-b8c2-c3f8216b77ad","name":"Obsession","params":"strength-10,agility-10,vitality-10,speech-10,vision-10,hearing-10,barter-10,courage-10,srg*0.6","desc":"You're a heavy drinker. All your attributes are reduced by 10 until you have a drink, plus your stamina is significantly slower to recover. Long-term abstinence will cure you."},{"id":"57e07f55-0cc5-4318-abd9-693df4a232a4","name":"quest_setkaniVRatbori2_noDamage","params":"hlh=0,slh=0","desc":""},{"id":"58558161-bed7-4af5-902d-6978c8d21c5e","name":"actor_illuminance_meter","params":"vib-0.57;vib-0.47;vib-0.37;vib-0.27;vib-0.17;;vib+1","desc":""},{"id":"5ae26f31-1783-44cd-a40b-503c62c867af","name":"autotest_stamina_regen","params":"srg*10,StaminaCooldownDefault*0.1,StaminaCooldownAttack*0.1,StaminaCooldownDodge*0.1,StaminaCooldownHit*0.1,StaminaCooldownBlock*0.1,StaminaCooldownWeaponRaised*0.1","desc":""},{"id":"5d070c0b-5891-4e1e-83c5-72120a90b015","name":"surrendering","params":"sur=1","desc":""},{"id":"5d07a436-c01f-4062-b5c4-0c3ec3c8185d","name":"Weak Mintha Perfume Effect","params":"charisma+1;charisma-5","desc":"Increases Charisma by 1. However, if you're using another perfume, decreases Charisma by 5."},{"id":"5d3175c5-4064-4270-bd48-92fa9bbc6944","name":"horse_moraleDebuff_heardGunshot","params":"mor-0.30","desc":""},{"id":"5eb76853-4423-47d8-ab0b-f505f243c4c2","name":"autotest_max_persuade","params":"prs=30","desc":""},{"id":"5fc4d5d0-6589-4df2-b585-3899a681fb56","name":"debuffSpeed","params":"asp*0.1","desc":""},{"id":"60c6aca4-a5a9-442b-9cc8-7f0e31ecfd43","name":"ridden_horse","params":"","desc":""},{"id":"60e8260f-026a-491e-90c3-b3738aae3c8a","name":"test_zero_morale","params":"mor=0","desc":""},{"id":"61bf5b0d-aa94-45cc-9cdd-dd76d3903189","name":"morale_max","params":"mor=1","desc":""},{"id":"62ae725e-56d9-46fa-a09a-794480b757a5","name":"Spurs","params":"horse_riding+5","desc":"Wearing spurs increases your horsemanship skill to an extent that depends on their quality."},{"id":"62bf2a7f-bddb-4bec-9a1c-071e472ae607","name":"quest_kumaniNaTrosecku_campDrinkingFirstPhase_nonpersistent","params":"fpd+0.4","desc":""},{"id":"62eeb23f-ccbf-4af9-8f8d-de57da75c50e","name":"Fading Buff Test","params":"strength*0.2,vitality+8,agility-5,speech*3.1","desc":""},{"id":"63edd356-a11b-4701-b560-ac39bfb8f42f","name":"vip_stealprot_persistent","params":"ppr+1","desc":""},{"id":"64ad3583-161b-4fb0-97ad-56b826ed2480","name":"monk","params":"","desc":""},{"id":"64c27976-ed6a-589b-2191-cc586082aee6","name":"quest_stealthMiseZaJindru_brabant_hearingBoost","params":"hearing+5","desc":""},{"id":"651130c8-540c-45ac-a8cf-734a334320ef","name":"HC perk Numbskull","params":"xpm*0.6","desc":""},{"id":"6685629b-f174-440a-a7f8-0b6a22a0ac88","name":"additional_weight","params":"","desc":""},{"id":"66a4bda4-a8d6-47ac-a4d1-b166ce62aea9","name":"quest_kumaniNaTrosecku_campDrinkingSecondPhase_nonpersistent","params":"fpd+0.95","desc":""},{"id":"671df15c-3341-440a-ad0e-e3f3eed603cc","name":"Strange Potion Effect","params":"health-110/t","desc":"As soon as you took a swig of that strange potion, you could taste death on your tongue. If you don't get some digestive potion inside you quick, you're done for!"},{"id":"677cbe60-d88f-4313-9bc9-985aa59e5e1d","name":"short_term_nutrition_food","params":"","desc":""},{"id":"67ad3acc-5e8b-4f73-a226-7c093632b4ee","name":"boost_stealth","params":"stealth+15","desc":""},{"id":"68a05048-1c56-43d3-95fd-75c36125c76a","name":"Disgraced","params":"charisma-6,con+0.6,plr+3","desc":"You were put in the pillory for your crimes. Being publicly humiliated will have an effect on your reputation. You will temporarily be more noticeable and less charismatic.\n \nYour Charisma is temporarily decreased by 6.\n\nYour Conspicuousness is temporarily increased by 30."},{"id":"690ed604-ebe9-448a-b87c-b9d1df82a527","name":"drunk","params":"","desc":""},{"id":"6a61a139-4ae5-49e1-9b7f-31b72ff2e1e5","name":"disabled_revive","params":"drv+1","desc":""},{"id":"6ad5711f-8727-4e9a-9607-c36ab5cea256","name":"test_stealth_kill_fail","params":"skp=0","desc":""},{"id":"6b5db01c-0e65-4b5f-b9f6-f091f3bea121","name":"test_poison_visual","params":"","desc":""},{"id":"6b861ae1-7d80-4e5d-9fe6-df5833dc4750","name":"prepadeni_ptacekInDuel","params":"fencing-30,weapon_sword=15,defense=15,vitality-10","desc":""},{"id":"6cf0aa39-e09c-42fa-bf67-10f2d03991b7","name":"immortality_fast_heal","params":"imm=1,health+100/s","desc":""},{"id":"6e4087dc-26a6-478f-bd64-6727e24c330b","name":"prepadeni_weakCapon","params":"fencing-30,weapon_sword-15,defense-15,vitality-10","desc":""},{"id":"6ecc9124-b0bb-4a37-a9e9-ca0d78e76a5e","name":"Reeky","params":"","desc":"You stink. This is not only unpleasant for people around you, but your stench can even give you away if you're trying to pass unnoticed. You can easily get rid of the smell by visiting the baths or washing yourself at a trough."},{"id":"6ed245f0-7882-49d9-b074-41e25c13753e","name":"quest_zachranaPtacka_PtacekCombatBoost","params":"strength=24,agility=24,vitality=24,vision=24,hearing=24,courage=24,fencing=24,defense=24,weapon_sword=24,weapon_unarmed=24,weapon_large=24,heavy_weapons=24,marksmanship=24, bba+50","desc":""},{"id":"6f4d327d-2d97-4339-a9d2-679b02aee5e6","name":"autotest_max_badassness","params":"bad=1","desc":""},{"id":"6f706644-e28a-41a9-9674-5f19dea03bf1","name":"death_protection_cutscene","params":"imm=1,upr=1","desc":""},{"id":"6f8d0939-90cb-47dc-9352-33a9cb2e6bf0","name":"disable_run","params":"LimitRun","desc":""},{"id":"7028ef11-7dbf-44ad-b3b6-e8795e0a7f2d","name":"quest_setkaniVRatbori2_drunkBohuta","params":"fpd+0.77","desc":""},{"id":"70d29ce9-cf46-40b4-b0b7-803307c45c42","name":"test_suppressArmorLoad_high","params":"alo=0.2","desc":""},{"id":"714a027c-b5d4-4816-a1d3-f89764997bde","name":"Strong Lion Perfume Effect","params":"charisma+7;charisma-7","desc":"Increases Charisma by 7. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"717abd8d-86a8-4399-91df-8fbeb536a2d2","name":"Smitten","params":"charisma+3","desc":"When you're smitten by love, the world seems more beautiful than before. And maybe you seem more beautiful to the world. After spending time with your beloved, your Charisma is temporarily increased by 3."},{"id":"7296d3c1-fca0-48ef-b8af-c2bfad31598c","name":"quest_hledaniLichtenstejna_udo_drunkenness","params":"vision-1,thievery-2","desc":""},{"id":"730503bf-735a-4f47-baae-c2d84ee77524","name":"immortality_nonpersistent","params":"imm=1","desc":""},{"id":"73094e4b-b127-4112-854f-3a6885cbb8de","name":"quest_kumaniNaTrosecku_campDrinkingFirstPhase","params":"fpd+0.4","desc":""},{"id":"738f8a07-c5fd-4687-9408-34ffb0bcd17e","name":"Injured Right Leg","params":"Run-1,Walk-0.5,LimitSprint","desc":"Your right leg is injured.\n \n Once the injury level reaches 60% or more, you will not be able to run and your walk will slow down.\n \n You can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"7481f890-237d-4312-b647-f056c880edc2","name":"disable_sprint","params":"LimitSprint","desc":""},{"id":"74cf0c29-d03e-4233-9352-b91ca5ea69ea","name":"infinite_unconsciousness_nonpersistent","params":"ufo*0","desc":""},{"id":"7524aadc-7819-4c55-a3cf-8caec0d0f437","name":"unconsciousness_protection","params":"upr=1","desc":""},{"id":"75746cba-af72-40d0-bc33-843769e0ab43","name":"HC perk Shakes","params":"lcs*1.6,was*1.6,ptp*1.6","desc":""},{"id":"75ad69c0-51be-451f-a455-00ea054b5da0","name":"Hangover","params":"","desc":"You have a splitting headache and a feeling of great regret.\n \nA hangover reduces your Strength, Agility, Vitality, Speech and Charisma and makes you more conspicuous. The degree of these negative effects depends on how much you drank, and how long the hangover lasts is determined by your Drinking skill - the more experienced you are, the shorter the hangover. It will dissipate eventually or can be cured with a Marigold Decoction or Hair o' the Dog potion."},{"id":"7619b2ea-3d11-49b0-b001-3e69283555b8","name":"quest_prepadeniVlasskehoDvora_alliesBoost","params":"strength*1.5,agility*1.5,vitality*1.5,fencing*1.5,defense*1.5,weapon_sword*1.5,heavy_weapons*1.5,weapon_large*1.5,weapon_unarmed*1.5,marksmanship*1.5","desc":""},{"id":"761f5b41-5e11-44a3-bcca-815cf4ddbd2e","name":"horse_moraleDebuff_heardGunFire","params":"mor-0.2","desc":""},{"id":"77273b1c-a974-4512-b59e-017b19788f54","name":"nonpersitent_tough_guy","params":"hlh*0.33","desc":""},{"id":"7747812b-253d-42fd-bd7a-0e50b65e6b27","name":"near_level_barrier","params":"LimitSprint,rms*0.4","desc":""},{"id":"7750688b-21f7-4ab2-a89d-f975cc4ce277","name":"Tortured","params":"strength*0.5,agility*0.5,vitality*0.5,srg*0.5","desc":"You were tortured at Trosky, and as a result your Strength, Agility and Vitality are reduced."},{"id":"77f9e797-3bca-4bbe-871b-b83b587d6b92","name":"stomach_pain","params":"","desc":""},{"id":"78dab124-7126-493c-b651-66258042570f","name":"item_caparison","params":"courage+5,agility-5,strength-5","desc":""},{"id":"78dc0d01-337e-47f5-b7b5-14b25d9b251f","name":"Hunger","params":"","desc":"You're hungry.\n \nYour stamina is decreased and eventually you will start losing health."},{"id":"79cffcfa-2769-4424-aad2-181b08bf9aed","name":"HC perk Haemophilia","params":"ibi*0.5","desc":""},{"id":"79efdca6-1992-44df-ada4-9c2ae1710bf1","name":"Testing Buff","params":"charisma+20","desc":""},{"id":"7a0f4cea-6033-4d91-81ac-657d30eedad6","name":"theresa_hardcore","params":"speech-2","desc":""},{"id":"7a61a139-4ae5-49e1-9b7f-31b72ff2e1e6","name":"permanent_corpse","params":"pmc+1","desc":""},{"id":"7a7f5bdf-2b9d-4d84-9290-e09d3ce8d3d8","name":"test_bane_visual","params":"","desc":""},{"id":"7d411bf8-42de-4ef4-bebf-abe704af601f","name":"deer_doe_easyKill_permanent","params":"hlh=40,slh=100, ble*5","desc":""},{"id":"7d6a30e4-c6fe-470f-b8c9-f8b226ee44cf","name":"combatTutorial_preventDamage","params":"hlh=0,slh*0.01","desc":""},{"id":"7e252c71-5e41-472c-ad32-f223a664faab","name":"Hangover","params":"","desc":"You have a splitting headache and a feeling of great regret.\n \nA hangover reduces your Strength, Agility, Vitality, Speech and Charisma and makes you more conspicuous. The degree of these negative effects depends on how much you drank, and how long the hangover lasts is determined by your Drinking skill - the more experienced you are, the shorter the hangover. It will dissipate eventually or can be cured with a Marigold Decoction or Hair o' the Dog potion."},{"id":"7ead0083-026d-4567-80b3-68ac82693b77","name":"resistent_fella","params":"hlh=0,slh*0.01","desc":""},{"id":"7ead0083-026d-4567-80b3-68ac82693b78","name":"quest_utokNebakov_noDamage","params":"hlh=0,slh=0","desc":""},{"id":"7f0e2530-abc9-4800-8ae1-5db8a9aa86b1","name":"unconscious_alcohol","params":"vision=0,hearing=0,srg=0,coc=0","desc":""},{"id":"7fa46759-36ce-49e3-8a37-99081c07ca05","name":"percept_combat","params":"prb>5","desc":""},{"id":"7ffc7b0d-ca9f-46f6-9fe4-bf0187f898a7","name":"meat_vit_exp_test","params":"xvi*2","desc":""},{"id":"819df34d-1c14-44b7-b02c-d2f5f13aeb2c","name":"Reduced Morale","params":"strength*0.8,agility*0.8,vitality*0.8,fencing*0.8,defense*0.8,weapon_sword*0.8,heavy_weapons*0.8,weapon_large*0.8,weapon_unarmed*0.8,marksmanship*0.8","desc":"Your morale is lowered. Your enemies' superior numbers seem insurmountable."},{"id":"81b4a2f5-914f-4778-b4ee-40fa0f24d375","name":"boost_str_agi_marksmanship","params":"strength+15,agility+15,marksmanship+15","desc":""},{"id":"81d476d4-3c68-40cf-8c85-b62a4102cb76","name":"morale_context","params":"","desc":""},{"id":"82dfb051-bd76-4681-abc1-185350e09eac","name":"prepadeni_perfectBlockForCapon","params":"fencing-11,defense+30","desc":""},{"id":"82fd15ef-4117-4094-88d9-ca15f7fe033e","name":"fasttravel","params":"ors*3,vision+4","desc":""},{"id":"8371d6b9-aecf-4b40-a0eb-84ed6ede3fd6","name":"hladAZmar_horseMoraleDebuff","params":"mor=0","desc":""},{"id":"83ef27f9-4ce2-4894-bd42-d2cc61a6f758","name":"injured_tag_persistent","params":"","desc":""},{"id":"844445e2-300b-4750-9cf4-a1f5c0e1beef","name":"autotest_max_might","params":"mgt=30","desc":""},{"id":"8448dd2a-2f0f-45e6-ab54-e14c517f12eb","name":"vigilant_nonAlerted","params":"vision*1.65, hearing*1.33","desc":""},{"id":"8544ebca-1e30-400c-b31c-2a1839f1cab8","name":"Poison","params":"health-150/t","desc":"You've been poisoned."},{"id":"85aca9c5-ec41-400d-a563-53df7b2399e8","name":"immortality","params":"imm=1","desc":""},{"id":"8607dd71-e4b1-4234-a4d3-532c9e2504c1","name":"Disgraced","params":"charisma-2,con+0.2,plr+1","desc":"You were put in the pillory for your crimes. Being publicly humiliated will have an effect on your reputation. You will temporarily be more noticeable and less charismatic.\n \nYour Charisma is temporarily decreased by 2.\n\nYour Conspicuousness is temporarily increased by 10."},{"id":"87b33bd6-c3bc-4974-8c34-01fd14ad7a36","name":"quest_utokNebakov_blur_long","params":"","desc":""},{"id":"87dede4e-88e1-4cca-95de-545d0523d5fd","name":"limited_combat","params":"dsl=0,cos=0,pbs*2,cag=1","desc":""},{"id":"88a11846-ffe2-49f0-b88b-1980a6e3791e","name":"HC perk Claustrophobic","params":"wat*0.85","desc":""},{"id":"88e6cb97-af82-4b75-8d4f-388246cd7489","name":"carrying_load","params":"","desc":""},{"id":"8938ac5f-35d3-44dc-8251-97df7570b672","name":"item_halberd","params":"LimitSprint","desc":""},{"id":"89739dbc-fb20-4a28-8b70-986ab9b5f79a","name":"player_immortalityOnly_nonPersistent","params":"imm=1","desc":""},{"id":"8a4eec60-a667-4921-806f-05e3592c2de2","name":"temporary_immortality_onMercy","params":"imm=1","desc":""},{"id":"8a5dd3a2-04e1-4ce7-8833-9252b410662b","name":"item_shield","params":"pbs+0.3","desc":""},{"id":"8a9b72c9-5591-418c-83dd-3b87b785d4c4","name":"battle_accuracy_debuff","params":"was*10","desc":""},{"id":"8af7dac3-3cfd-4a0e-aa7f-58db4311660d","name":"deafness","params":"hearing=0","desc":""},{"id":"8c8a9c48-db38-4914-8e41-5a435c9b1dac","name":"HC perk Tapeworm","params":"dig*1.5","desc":""},{"id":"8e56612f-30b7-447c-b331-c7e4be807717","name":"remove_all","params":"","desc":""},{"id":"8e87a286-712b-49b9-82eb-f47805ec5d08","name":"Test buff x","params":"","desc":"In-house test xx"},{"id":"8e9cb93a-eb5f-4846-be2c-2c7010872704","name":"vip_attackprot_remove","params":"apr-1,kopr-1,skpr-1","desc":""},{"id":"9155cc2e-0af1-449b-acf2-58379c0e6115","name":"vip_attackprot_persistent","params":"apr+1,kopr+1,skpr+1","desc":""},{"id":"91fe879a-2881-426b-984c-0f49b551a76f","name":"quest_zbranePanaSemina_seminDuel","params":"fencing*0.6,defense*0.6,strength*0.6,agility*0.6,srg*0.8","desc":""},{"id":"943bb91d-52a2-42e9-bbd5-66cf48179224","name":"overread","params":"","desc":""},{"id":"945430c5-be04-4f3c-bb83-7951e7e13996","name":"mute_cutscene","params":"mut=1","desc":""},{"id":"950fcd4d-fbb5-449d-bdd3-f0895da89168","name":"caffeine","params":"","desc":""},{"id":"95afeef3-bfe4-4697-801e-ff92671f8110","name":"autotest_healing","params":"health+60/s","desc":""},{"id":"972b0d5a-6fab-4e28-b59c-a3697f7c05c3","name":"jail_recovery_theresa","params":"speech*0.6","desc":""},{"id":"973a0f71-595d-48ca-91d2-d770951fd5d6","name":"quest_prepadeniVlasskehoDvora_bohutaDrunkenness_nonpersistent","params":"fpd+0.25","desc":""},{"id":"97746824-30b5-4b8a-8168-8f218bf2661d","name":"test_stealth_kill_success","params":"skp=1","desc":""},{"id":"97828156-42a0-40e2-b772-7c328d2ead98","name":"vip_unconprot_remove_persistent","params":"upr=0","desc":""},{"id":"988fef54-920a-44a7-b771-2caa66a0219a","name":"Really Slow Movement","params":"rms=0.2","desc":""},{"id":"98d2764a-bdbf-473f-903a-1209813d2e15","name":"player_immortality","params":"imm=1,upr=1","desc":""},{"id":"98e072dc-43be-472d-a8b5-a8e9a024bbe2","name":"zranenyLovci_pullDownProtection","params":"pdp=0","desc":""},{"id":"999b783c-90ff-4054-bb5a-9f4f9b1da7cb","name":"vip_stealprot_remove","params":"ppr=0","desc":""},{"id":"9a2d3b9d-cdd9-4113-aeeb-764e12b3ba86","name":"test_encumber","params":"caw+20","desc":""},{"id":"9b281555-f071-4a9c-aedc-41b5015ee702","name":"after_sleep","params":"","desc":""},{"id":"9b308d86-b3c5-4b85-b6fc-c1a4c4af2abf","name":"on_washed","params":"","desc":""},{"id":"9be2617e-61e0-4a0c-976b-1dbb216bef15","name":"reading","params":"vision=0,hearing*0.22","desc":""},{"id":"9c5eb897-0432-4b41-8fbd-2607d0629b44","name":"low_health","params":"","desc":""},{"id":"9d1be500-79ee-4b31-8a38-6d91f5b64b4e","name":"boost_agility_big_nonpersistent","params":"agility+10","desc":""},{"id":"9ff367d5-0b08-4020-8428-9ab08290d031","name":"Time Well Spent","params":"strength+1,agility+1,vitality+1,deb+1","desc":"You've had some sweet moments which no one can take away from you. You feel refreshed and invigorated.\n \nYour Strength, Agility and Vitality are temporarily increased by 1."},{"id":"a047a33e-4715-41c1-977f-1a5f454e30e7","name":"Lion Perfume Effect","params":"charisma+4;charisma-7","desc":"Increases Charisma by 4. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"a05916dd-634b-4c11-81b6-6dc8e4bd52cd","name":"quest_kejkliri_drunkLuteCrusher","params":"fpd+0.6","desc":""},{"id":"a2088337-e015-4c28-8ab2-043f6925c087","name":"bleeding_protection","params":"hin=0","desc":""},{"id":"a2261902-5204-4e9d-b15e-b3b8d8495f40","name":"melee_hit_debuff","params":"rms*0.1","desc":""},{"id":"a2604dae-292b-44cf-be15-e7d1ef5ef0fa","name":"autotest_min_dread","params":"drd=0","desc":""},{"id":"a3dd717a-5b53-41de-b417-53e0798d10a7","name":"quest_noDirt","params":"cds=0,drt=0","desc":""},{"id":"a40f5d6c-ef6e-456b-bfef-cb0f5d26ac6a","name":"vezniNaTroskach_drunkSoldiers","params":"hearing*0.75,vision*0.75","desc":""},{"id":"a40fff68-9051-48af-a599-54f3667a3065","name":"Stench of the Plague","params":"vitality-1","desc":"You dug up a plague pit and now you don't feel very well. Hopefully you didn't catch anything."},{"id":"a5e4791a-f5a6-403e-9161-5b8a22966751","name":"oversleep","params":"","desc":""},{"id":"a679d85a-dbad-4607-8982-1e1a11a6d2eb","name":"quest_sermiri_arne_debuff","params":"agility=20,vitality=20,strength=20,defense=20,weapon_sword=20,fencing=20","desc":""},{"id":"a8b03550-5e68-417a-9d10-2064b289a7e5","name":"jail","params":"dig*0,exh*0,jrm*0,health+100/s","desc":""},{"id":"a933d97c-698c-41cf-a935-e0fb687d7970","name":"test_boost_charisma","params":"charisma+5","desc":""},{"id":"aa483616-9328-4e86-8b43-76ddfa559cf7","name":"zranenyLovci_onTree","params":"ors=-1","desc":""},{"id":"aa59e6c0-9233-4aab-8a6f-c1c02bd17924","name":"Needs","params":"strength-8,agility-8,vitality-8,srg*0.8","desc":"You're an alcoholic. Your Strength, Speed and Vitality are reduced by 8 until you have a drink, plus your Stamina is slower to recover. Long-term abstinence will cure you."},{"id":"aa8eb327-77c8-47c4-80a3-38bf70576dc4","name":"Secret Herb","params":"strength+2,agility+2,vitality+2,deb+1","desc":"At Nebakov you got to know the healer Klara and decided to pass time while waiting for Capon by going for a stroll with her. After collecting some medicinal herbs, you spent a few pleasant moments in a forest glade. You feel blissful and you will for quite some time.\n \nYour Strength, Agility and Vitality are temporarily increased by 2."},{"id":"aaba4c77-f834-4971-bcc4-ef444477c817","name":"autotest_min_coerce","params":"crc=0","desc":""},{"id":"ab827233-116c-4366-ab1f-704de01d628b","name":"knockout_protection","params":"kopr=1","desc":""},{"id":"ab97ed6c-e830-4fc6-a45a-261117cd5c85","name":"very_tough_guy","params":"hlh*0.13","desc":""},{"id":"abcdefab-ffff-ffff-ffff-aaffaaffaaff","name":"mounted_player_buff","params":"","desc":""},{"id":"ac563832-a5d6-427c-86c0-564c119c7948","name":"test_turtle_skin","params":"ade*1.2","desc":""},{"id":"ac6db9f1-254e-488a-9e45-759fd8cc7088","name":"vip_unconprot_remove","params":"upr=0","desc":""},{"id":"acae1f4d-f766-4ccb-b081-44bda51f779c","name":"sharpening_pressure","params":"","desc":""},{"id":"adddf52a-4c53-49e2-aa22-bd11ae452eca","name":"crouch","params":"vib-0.5,fsm*0.3,con-0.5,noi*0.5","desc":""},{"id":"ae3d6454-5ae8-4662-9bea-deebebac82e8","name":"test_wormwood_visual","params":"","desc":""},{"id":"ae62df54-a5cc-4018-a4e1-247259b3fa6d","name":"Good Appetite","params":"dig*3,exh*2,vitality+10","desc":""},{"id":"aea172fe-0217-4c17-b37b-c029568b4e07","name":"autotest_min_morale","params":"mor=0","desc":""},{"id":"aeef8e78-896a-4106-ab2f-62bec1d98378","name":"Food Poisoning","params":"","desc":"You've got food poisoning. Next time, be more careful what you eat.\n \nYour Health gradually depletes along with your Strength, Agility and Vitality in proportion to the degree of poisoning."},{"id":"af197e82-54c1-44e4-a21c-21e83a8c273e","name":"simulatedKnockout","params":"kko=1","desc":""},{"id":"b0247507-ca18-4277-a037-ee3a9274e625","name":"test_bleeding","params":"ble=1","desc":""},{"id":"b0b520e9-a85f-4698-ad8c-e46ea32d7d65","name":"Weak Lion Perfume Effect","params":"charisma+3;charisma-7","desc":"Increases Charisma by 3. However, if you used in combination with another perfume, it decreases Charisma by 7."},{"id":"b152dbb8-d883-4e67-acba-b89829542e3e","name":"Released Prisoner","params":"strength*0.6,vitality*0.6,agility*0.6","desc":"Your stay in jail has left you malnourished and in an overall weak condition. Your Strength, Agility and Vitality are lowered. The longer you've been in jail, the worse the penalties."},{"id":"b17748f4-da00-44ab-a5ff-d0081e8cd308","name":"oblehaniSuchdole_augment_damage_received","params":"hlh*4,slh*4","desc":""},{"id":"b2a1ddda-26f3-436f-b902-1af34094e3c0","name":"post_combat_protection","params":"hlh=0,slh*0.01","desc":""},{"id":"b2f86f72-b8f7-458f-9358-dd2ed7b01a9f","name":"quest_utokNaNebakov_zizkaLowerStats","params":"strength*0.3,agility*0.3,vitality*0.3,defense*0.3,weapon_sword*0.3","desc":""},{"id":"b4594a5d-7f5e-4317-93f0-8d850e3ac16d","name":"Anti-alcohol Food.","params":"apa=0.06","desc":"Anti-alcohol Food."},{"id":"b562abfc-2b45-45b7-824c-62fbd10dc123","name":"Hangover","params":"","desc":"You have a splitting headache and a feeling of great regret.\n \nA hangover reduces your Strength, Agility, Vitality, Speech and Charisma and makes you more conspicuous. The degree of these negative effects depends on how much you drank, and how long the hangover lasts is determined by your Drinking skill - the more experienced you are, the shorter the hangover. It will dissipate eventually or can be cured with a Marigold Decoction or Hair o' the Dog potion."},{"id":"b5e6123f-dcb3-4c7e-8096-5b584fbc87f6","name":"mucirnaVypaleniSemina_resistent_victim","params":"hlh=0,slh=50","desc":""},{"id":"b6163c06-1ba8-4db5-859d-d58cfad9a3f9","name":"horse_pulldown_protection","params":"pdp=0","desc":""},{"id":"b6ab81fb-5c59-47ac-8ca1-a4f9a97f1828","name":"Henry's Lion Effect","params":"charisma+10;charisma-7","desc":"Increases Charisma by 10. However, if you used in combination with another perfume, it decreases Charisma by 7."},{"id":"b8175a93-aee3-4bd1-9cbe-de691c34cd1b","name":"Beaten Like a Dog","params":"strength*0.6,agility*0.6,vitality*0.6,courage*0.6,srg*0.6,hlt*0.6,bea+3","desc":"You were caned for your crimes, leaving you injured and weakened.\n \nYour Strength, Agility and Vitality are temporarily reduced by 40%\n\nYour Stamina regeneration rate is also temporarily reduced by 40%."},{"id":"b8f6812f-fb42-475d-b630-72dcf2516877","name":"Hangover","params":"","desc":"You have a splitting headache and a feeling of great regret.\n \nA hangover reduces your Strength, Agility, Vitality, Speech and Charisma and makes you more conspicuous. The degree of these negative effects depends on how much you drank, and how long the hangover lasts is determined by your Drinking skill - the more experienced you are, the shorter the hangover. It will dissipate eventually or can be cured with a Marigold Decoction or Hair o' the Dog potion."},{"id":"b919d148-056c-41e4-10a8-127715b0e855","name":"equipment_deterioration_reduction","params":"edm=0.15,wud=0","desc":""},{"id":"b9564fae-880a-4e44-9c29-61af452b8038","name":"rutinaAVypad_battleGoodPairBuff","params":"defense*1.2,weapon_sword*1.1,heavy_weapons*1.1,weapon_large*1.1,weapon_unarmed*1.1,marksmanship*1.1,hlh*0.9","desc":""},{"id":"b989d448-056c-4be4-b0a8-727775b0e855","name":"test_drunkness_blackout","params":"fpd+1","desc":""},{"id":"b9c82b6a-55f2-43dc-b481-8ce28a373a56","name":"vip_lootprot_remove","params":"ltp=0","desc":""},{"id":"b9f062d3-c06e-4698-90d4-e642e863337b","name":"slow_movement","params":"rms*0.95","desc":""},{"id":"bbe946c9-a6d6-4ba7-96e2-6a884bb66fe3","name":"cutscene_stopTime","params":"adm=0","desc":""},{"id":"bc2be2ea-c588-4c32-b155-d96c646cb689","name":"roadside_corpse_npc_triggered","params":"speech-1,bad-1,chr-1","desc":""},{"id":"bc753c63-6c91-4789-9d4a-9e3674759fa8","name":"test_stamina_boost","params":"srg*2,src*0.5","desc":""},{"id":"bc7ec5a9-e0d5-4c38-a091-7779ca7241f8","name":"Freshly Branded","params":"grm*0.5,sdn+1,brn+0.5","desc":"You've been branded for your crimes. Until your brand heals and people's memories fade, you will be treated like an outcast.\n\nThe worst effects of the brand will pass with time or after you make a penitential pilgrimage.\nYour positive reputation gain is temporarily reduced by 50%.\n\nIf you commit another serious crime, you may be executed!"},{"id":"bd22f98a-e61f-4d83-b39c-79d1d85b6b91","name":"remove_unconsciousness","params":"","desc":""},{"id":"bee2ec16-7993-4c41-b94f-1ca3ad273c62","name":"percept_prio_medium_boost","params":"prb>5","desc":""},{"id":"bf1ed388-e1a5-4688-8563-05895e529e7a","name":"autotest_stamina_boost_infinite","params":"sdt+1000","desc":""},{"id":"c01b06d6-1003-43f6-a92d-1685d12b24c8","name":"Tortured","params":"strength*0.7,agility*0.7,vitality*0.7,srg*0.75","desc":"You were tortured at Trosky, and as a result your Strength, Agility and Vitality are reduced."},{"id":"c1db1812-e3cf-4faa-a337-b34495f3b817","name":"utokNaMalesov_certDuelDebuff","params":"hlh*1.1,wat*0.85","desc":""},{"id":"c207b0b5-1911-4975-8d53-45f962e80a21","name":"prepadeni_nervousGuard","params":"nrv+1000","desc":""},{"id":"c37ab134-a443-433f-92a9-51ff6f08999c","name":"fasttravel_immortality","params":"hlh=0","desc":""},{"id":"c3b0ab94-8e7a-4c96-ae74-53b919ffc052","name":"poustevnik_excited_konrad","params":"vision*1.5,prb*1.5,fov*1.2","desc":""},{"id":"c467caae-bce9-4bb8-bf57-4e7a5ba01b20","name":"percept_prio_big_boost","params":"prb>10","desc":""},{"id":"c46c670f-0d0a-4664-9df0-922ae5cd7d3f","name":"percept_prio_small_boost","params":"prb>1","desc":""},{"id":"c48e48e2-ae85-4429-9dd6-4fb94c388001","name":"Injured Head","params":"srg*0.75","desc":"Your head is injured. \n \n Once the level of injury reaches 60%, your stamina recovery will slow down by 25%. \n \n You can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"c4deabe7-4375-4114-82ff-3d0c04d86cb0","name":"socky_drunkard_onehit_permanent","params":"hlh=1000,slh=1000","desc":""},{"id":"c502b267-8084-40b4-9cbd-ee76cf52b37a","name":"sprint","params":"fsm*2,noi+0.1,noi*1.5","desc":""},{"id":"c61da6da-01bc-4f55-8152-7165f46590b3","name":"npc_drunkenness_nonpersistent","params":"dru+1,vision-1,thievery-2","desc":""},{"id":"c75aa0db-65ca-44d7-9001-e4b6d38c6875","name":"unconscious_permanent","params":"vision=0,hearing=0,srg=0,coc=0","desc":""},{"id":"c795a2ad-b1c0-44c8-93d8-bb1a9d39993d","name":"mlynaruvUcen_stealthTakedownBuff","params":"fencing+30","desc":""},{"id":"c7b61a3c-b619-4c7c-9857-8cc8c97f5676","name":"kovar_tutorialInvisibility","params":"ors=-1","desc":""},{"id":"c7c79394-cd16-4d86-a029-f8a5f6623f9d","name":"death_protection","params":"imm=1,upr=1","desc":""},{"id":"c7e37c48-bd84-4838-9f96-a2025e15cded","name":"test_negation","params":"strength!20","desc":""},{"id":"c7f2c0f0-776a-43e3-a504-31870afc3710","name":"Tiredness","params":"","desc":"You're exhausted. Your physical capabilities are hindered and you can't concentrate, meaning your Speech is less persuasiave than usual. Your Charismas has also taken a hit. Eventually, you will start fainting.\n \nYour Strength, Agility, Speech and Charismas are lowered based on your level of exhaustion."},{"id":"c8b0d038-a503-44cc-85a5-7f753a09eb6e","name":"respec","params":"","desc":""},{"id":"c9a62a45-b044-42a0-969e-1e77be655a5c","name":"Beaten Like a Dog","params":"strength*0.7,agility*0.7,vitality*0.7,courage*0.7,srg*0.7,hlt*0.7,bea+2","desc":"You were caned for your crimes, leaving you injured and weakened.\n \nYour Strength, Agility and Vitality are temporarily reduced by 40%\n\nYour Stamina regeneration rate is also temporarily reduced by 30%."},{"id":"caf16a25-b138-46bf-b7d3-63f8b2e9bb91","name":"Mintha Perfume Effect","params":"charisma+2;charisma-5","desc":"Increases Charisma by 2. However, if you're using another perfume, decreases Charisma by 5."},{"id":"cbb45bf5-a8fa-4615-a9ea-fc72f517b87f","name":"quest_cart_tag","params":"","desc":""},{"id":"cbbedb16-8ab8-4583-b740-a0e8a2521d95","name":"sleep","params":"vision=0,hearing=1,sle=1","desc":""},{"id":"cc3a1a4a-ef7d-4a55-821b-dc2567d1290e","name":"rutinaAVypad_healthLossBoost","params":"hlh*2","desc":""},{"id":"ccc546e2-5a5f-428b-8c79-5d7953218180","name":"Desire","params":"strength-1,vitality-1","desc":"You have an alcohol habit. Your strength and vitality decrease by 1 until you have a drink. Long-term abstinence will cure you."},{"id":"ccf87599-202c-49e0-ab36-baa62e5fa05b","name":"tough_guy","params":"hlh*0.75","desc":""},{"id":"cd5bad62-1eb0-0732-e62c-9118964ca626","name":"quest_stealthMiseZaJindru_guard_inattentive","params":"vision*0.65, hearing*0.65","desc":""},{"id":"cd727cba-0507-4e97-bab9-ae4fe6d55d07","name":"alcoholism","params":"alc+1","desc":""},{"id":"ce3737db-b0a3-459d-8d47-d58695d58be3","name":"Injured Right Arm","params":"asp%0.8","desc":"Your right arm is injured. \n \n Once the level of injury reaches 60% or more, the speed of your attacks will reduce by 20%. \n \n You can heal your wound by renewing your health, e.g. by sleep, visiting a bathhouse or a imbibing a healing potion. On the contrary, if the level of injury increases, you risk bleeding."},{"id":"cebe4d7b-d7fe-46e6-85d1-d62c8c9d16e6","name":"autotest_min_charisma","params":"charisma=0","desc":""},{"id":"cf787871-d151-43b7-a7c9-39acac116f0f","name":"invisibility","params":"vib=-10,con=-10","desc":""},{"id":"cfe6b977-2c6c-40dc-9924-c8c9176a0070","name":"HC perk Brittle bones","params":"fdm*1.20","desc":""},{"id":"d096efbd-54cd-4ebd-b6e9-669802ec5f03","name":"vip_lootprot","params":"ltp+1","desc":""},{"id":"d37f94bd-5337-483e-8c53-45ac015c429f","name":"standing_still_archery_boost","params":"marksmanship+3","desc":""},{"id":"d38c9301-2b8a-45b1-a0b3-5fd11119a211","name":"autotest_max_coerce","params":"crc=30","desc":""},{"id":"d41d5f5f-caa1-4207-8a02-bc6f7f7b911f","name":"quest_kumaniNaTrosecku_campDrinkingSecondPhase","params":"fpd+0.95","desc":""},{"id":"d42c87f2-9b51-48e3-831e-9ad449a4f100","name":"test_playBandageMyselfOnRepeat","params":"","desc":""},{"id":"d46dfbbf-3f14-4477-b639-fd5508fc7dfc","name":"autotest_max_morale","params":"mor=1","desc":""},{"id":"d491b2d0-c2f8-4a20-9a9d-f11db82ca5db","name":"autotest_max_impress","params":"imp=30","desc":""},{"id":"d4969aad-6ac6-4940-b458-71e5348a1792","name":"Cooked Blue Crayfish Effect","params":"vitality+1,xvi*1.1","desc":"The tender flesh of the blue crayfish has beneficial effects. You gain a +1 bonus and 10% more exp to Vitality."},{"id":"d4a4ffe8-f4a3-4abe-a784-784e27c2e37c","name":"erik_duelBuff","params":"hlh*0.8,slh*0.8,wat*1.16","desc":""},{"id":"d53e09a0-1b8a-43eb-8be3-673108ed2569","name":"quest_fistfightsChampion_drinkingWithBarnabas_alcoholStartState","params":"fpd+0.4","desc":""},{"id":"d5744c88-7cde-405f-811a-55fc502236b6","name":"prepadeniVlasskehoDvora_alcoholDigestBooster","params":"adm*3","desc":""},{"id":"d5996d8b-611d-4cc8-bfbd-7ab2c8884cf6","name":"vip_stealprot","params":"ppr+1","desc":""},{"id":"d61a0120-6087-4116-9645-2a3abe1f11fd","name":"crime_interrupt_confronting","params":"nrb+1,res*2,vision+5","desc":""},{"id":"d6707e6d-bd5f-4e09-ae0d-40dc65ba983e","name":"quest_erik_forceDrunkenness0","params":"fpd=0.0001","desc":""},{"id":"d81cbd73-3b9d-4fd7-b437-f2648b540202","name":"test_e3_pickpocket_for_player","params":"thievery+15","desc":""},{"id":"d8ef78c6-c535-4436-b9df-5d9e86e153ac","name":"food_heal","params":"","desc":""},{"id":"d9711484-b2cd-4982-ac1f-e44a7ce9b548","name":"Beaten Like a Dog","params":"strength*0.8,agility*0.8,vitality*0.8,courage*0.8,srg*0.8,hlt*0.8,bea+1","desc":"You were caned for your crimes, leaving you injured and weakened.\n \nYour Strength, Agility and Vitality are temporarily reduced by 40%\n\nYour Stamina regeneration rate is also temporarily reduced by 20%."},{"id":"d9cfb9e0-7949-49e0-b6b5-b7cd6a51dd27","name":"nonpersistent_very_tough_guy","params":"hlh*0.13","desc":""},{"id":"daa26974-e5ce-41be-88cb-bbcef56e6452","name":"Overloaded","params":"LimitSprint,Run-1,Walk-0.1,wac*2,asp-0.5,dsl*0.1;LimitRun","desc":"You're carrying too much. Your maximum speed is lowered. Offload some items into your horse's inventory, or just drop them on the ground.\n \nYou can't run and you walk slower.In combat, your attacks are and dodges are slower, and attacks cost more stamina.\n\nWhen you're overencumbered, you can't Fast travel, and you can't mount horses."},{"id":"dbc47939-2de8-4c3e-add9-6875461a1877","name":"disableDodger","params":"atd=0","desc":""},{"id":"dc4be505-46d6-4ca4-857b-59cfa36adc2a","name":"crime_instantRecognition","params":"ors*11","desc":""},{"id":"dcbee361-3936-46d8-a06c-50d5b0c51265","name":"quest_stealthMiseZaJindru_guard_visionBoost","params":"vis+5","desc":""},{"id":"dcca27c8-0d73-4aa8-8464-c00a6be820f0","name":"hladAZmar_sermonBattleBuff","params":"fencing*1.2,defense*1.2,weapon_sword*1.1,heavy_weapons*1.1,weapon_large*1.1,weapon_unarmed*1.1,marksmanship*1.1","desc":""},{"id":"de68e56a-a74c-4447-874b-487b03c3fc6e","name":"remove_all_posions","params":"","desc":""},{"id":"dea88883-e54d-4946-b586-78975597752e","name":"test_weapon_poison_deadly","params":"LimitSprint,health-100/t","desc":""},{"id":"decf1ab0-d222-4073-8e11-fb101b6b1eb6","name":"hladAZmar_sermonBattleDebuff","params":"fencing*0.8,defense*0.8,weapon_sword*0.9,heavy_weapons*0.9,weapon_large*0.9,weapon_unarmed*0.9,marksmanship*0.9","desc":""},{"id":"dfeb773e-6270-4ffa-92c7-09772a914dcb","name":"quest_kumaniNaTrosecku_campDrinkingSecondPhaseNotSoDrunk_nonpersistent","params":"fpd+0.6","desc":""},{"id":"e064e816-cc15-4e53-a036-cdf573421302","name":"imba_combat_guy","params":"hlh*0.13,slh*0.13,srg*5,sco=0,src=0,health+10/s","desc":""},{"id":"e0efefa6-d79b-4cae-988c-b9fd5a78f575","name":"combat_stamina","params":"","desc":""},{"id":"e211967c-e1de-4041-a0ea-d48d99ddb62b","name":"test_berserker_visual","params":"","desc":""},{"id":"e2f2e0c7-b1d0-4ec5-8f1f-9f412f547f2d","name":"item_horse_saddle","params":"cap+200,agility-5","desc":""},{"id":"e3453dfa-70f9-49dc-9c0c-8426a7c532c2","name":"quest_budovaniLazni_drunkAfterParty","params":"fpd=0.5","desc":""},{"id":"e3701f28-11f8-40fb-a026-2b90a9b939f8","name":"svatba_roastedPigletAlcoholAntidote","params":"apa=0.8,adm=0.9","desc":""},{"id":"e3b8e7dc-0a1b-4e6c-a0ce-ffc1519c40ec","name":"test_owl","params":"owl+1","desc":""},{"id":"e4165c2f-39ff-4a0a-9133-c4f82fcd95ba","name":"test_padfoot_visual","params":"","desc":""},{"id":"e4b76425-4bc5-492a-9d5f-3575b4fab1be","name":"fasttravel_invisibility","params":"ors=-1","desc":""},{"id":"e5260d2e-430b-47c7-8503-a9b1a14cb500","name":"event_chase_slower_debuff","params":"rms*0.8","desc":""},{"id":"e5ff5b8f-c764-44d8-b156-a884233150e1","name":"remove_drunkness_constant","params":"dru=0","desc":""},{"id":"e6a5dc1c-ccf5-453f-bffc-3e874ac84165","name":"autotest_max_dread","params":"drd=30","desc":""},{"id":"e719142d-5438-4cc4-b640-6124b8c8869d","name":"prepadeni_preventDamageDuringTrainingDuel","params":"hlh*0","desc":""},{"id":"e737ed03-c53b-4535-b0b1-f701756c4b79","name":"test_agi","params":"agility+11,vitality+5,strength-5","desc":""},{"id":"e7952613-5660-419c-988d-ac973ed13c5d","name":"crime_interrupt_searching","params":"nrb+1,res*2,vision+5","desc":""},{"id":"e7afc162-6c81-4bac-84f5-fa06d236894f","name":"setkaniVRatbori2_bohuta_alcoholDigestBooster","params":"adm*2","desc":""},{"id":"e7e0eda4-a76c-49af-aa3e-43ccea14297c","name":"remove_drunkness","params":"dru=0","desc":""},{"id":"e8541aae-07e1-87ca-8cfd-a462a12a8080","name":"quest_zikmunduvTabor_dedrunk","params":"fpd=0.01","desc":""},{"id":"e855944d-493e-4a25-b77c-005dcdf503fe","name":"Overeating","params":"rst<0.8","desc":"You have gorged too much food and you feel sick. Your maximum Stamina is lowered."},{"id":"e860a7b2-dce1-4a77-a746-971ed8f537cf","name":"instant_cure","params":"health+200/t","desc":""},{"id":"e87bf450-36ae-4c37-a01c-1ff2a141cb83","name":"Greater Attack","params":"wat*2","desc":""},{"id":"e8ba6719-baba-48b2-9442-d737ef443148","name":"god_mode","params":"imm=1,hlh=0,slh=0,sco=0,src=0,wac=0,asp=1,wat=100,strength=100,agility=100,vitality=100,defense=100,fencing=100,weapon_sword=100,weapon_unarmed=100,srg=100,health+100/s","desc":""},{"id":"e8bb8423-3c1d-483d-9af7-6b27835216b5","name":"Hangover","params":"","desc":"You have a splitting headache and a feeling of great regret.\n \nA hangover reduces your Strength, Agility, Vitality, Speech and Charisma and makes you more conspicuous. The degree of these negative effects depends on how much you drank, and how long the hangover lasts is determined by your Drinking skill - the more experienced you are, the shorter the hangover. It will dissipate eventually or can be cured with a Marigold Decoction or Hair o' the Dog potion."},{"id":"e928b585-1391-4cbd-84b2-4ed573263efa","name":"player_remove_drunkness","params":"fpd=0.0001","desc":""},{"id":"eab9a787-9460-4c90-96ec-8e69c4a82d8d","name":"reading_regen","params":"","desc":""},{"id":"eca9aa28-9c54-4af1-9fac-c10b439c5a8b","name":"test_witch_visual","params":"","desc":""},{"id":"ed59af7c-6d7e-4454-8ffb-f16935bf5130","name":"not_immortal","params":"imm=0","desc":""},{"id":"ede2a6b3-7475-4596-ab05-2362655ee2b8","name":"posledniPomazani_boostedBohuta","params":"strength+10,agility+10,vitality+10,fencing+10,defense+10,weapon_sword+10,heavy_weapons+10,weapon_large+10,weapon_unarmed+10,marksmanship+20,hlh*0.33","desc":""},{"id":"ee15a8e3-85f0-4d59-bb7b-27f882960b3d","name":"HC perk Consumption","params":"srg*0.85","desc":""},{"id":"eeddf516-3f10-4988-8b97-5ee130f47163","name":"quest_mapaKPokladu_banditCourage","params":"courage=25","desc":""},{"id":"f053ee01-aade-4a13-a776-597c97d34bab","name":"zranenyLovci_wolfHealthLossBoost","params":"hlh*1.6,slh*1.6","desc":""},{"id":"f16d86e9-230d-4f75-b2ce-cfc6765e9608","name":"quest_utokNebakov_half_movement","params":"rms*0.65","desc":""},{"id":"f18772f9-99fc-550d-9725-4fddd8574068","name":"quest_bohutovaVlozka_startQuestDrinkingInPub","params":"fpd+0.2","desc":""},{"id":"f18dbed4-0e86-427d-9ba1-a5a4331d8872","name":"autotest_min_persuade","params":"prs=0","desc":""},{"id":"f29ee947-a131-4597-8ed7-6f06aca0a4a2","name":"miraculous_cure","params":"health+100/t","desc":""},{"id":"f2c8fc57-43a4-4593-acb7-0bbbbe4854d6","name":"crime_interrupt_looking","params":"nrb+0.3","desc":""},{"id":"f2d371a0-feab-4f9e-b0d2-43a331b41520","name":"prepadeni_customBleedingSpeed","params":"ibi*2","desc":""},{"id":"f32f52ad-64a8-4a77-a118-707f7c86a7cc","name":"item_torch","params":"vision+5,vib+3.5","desc":""},{"id":"f446ed8b-e69b-4616-8b43-1678093ea493","name":"test_reg","params":"srg+5","desc":""},{"id":"f46120bf-b45f-4ec5-95c6-03d526cb40bf","name":"unconsciousness_protection_nonpersistent","params":"upr=1","desc":""},{"id":"f4909c8f-d3ff-4886-aa6f-f3eca996fc1c","name":"horse_moraleDebuff_onMountByPlayer","params":"mor-0.00","desc":""},{"id":"f4d0347e-40b1-4a21-8c1f-d422aaceea32","name":"zachranaPtacka_malesovAlarmNervousness","params":"nrv+1000","desc":""},{"id":"f59911d3-52de-4e36-961d-27794857c426","name":"autotest_min_dominate","params":"dmt=0","desc":""},{"id":"f6c604fd-66fb-47db-9e9e-1506d5a8e414","name":"roe_deer_easyKill_permanent","params":"hlh=50,slh=100, ble*6","desc":""},{"id":"f6d618ff-6361-4a20-b7d4-ea8e55f35321","name":"svatba_tournamentBuffForPlayer","params":"ade*0.5,slh*1.7","desc":""},{"id":"f8180af4-ce59-41c2-b038-e4d72b68366f","name":"vip_knockoutprot_remove","params":"kopr=0","desc":""},{"id":"f8558fe2-f4cd-4899-932b-82e0e15fa964","name":"bow_self_harm_attack","params":"sha=5","desc":""},{"id":"f8d60fe4-e2c1-420a-946a-213e1cd09264","name":"unconscious","params":"vision=0,hearing=0,srg=0,coc=0","desc":""},{"id":"f8d60fe4-e2c1-420a-946a-213e1cd09265","name":"unconscious_nonpersistend","params":"vision=0,hearing=0,srg=0,coc=0","desc":""},{"id":"f964e339-a3d5-4e50-83c5-1d74a6e0ea41","name":"test_str","params":"strength*1.5","desc":""},{"id":"f97fd5a3-edec-490f-b94b-46ec0f1a32b2","name":"healthEatSleep","params":"dig*0,exh*0,jrs*0,health+100/s","desc":""},{"id":"f99b83d8-0fda-4869-8060-40ddb6a98989","name":"zachranaPtacka_boostedVavak","params":"hlh=0,slh=0","desc":""},{"id":"fa71d1ee-10de-4835-8d77-688558d4d033","name":"quest_sedmStatecnych2_drinkingSecondPhaseDrunk_nonpersistent","params":"fpd+0.6","desc":""},{"id":"fb737451-20e9-4338-a8d3-5121b50804a8","name":"weak_guy_nonpersistent","params":"hlh*5","desc":""},{"id":"fb737451-20e9-4338-a8d3-5121b50804b7","name":"very_weak_guy_nonpersistent","params":"hlh*500","desc":""},{"id":"fbda778d-108a-9fe8-9cdf-322c1124358e","name":"quest_zikmunduvTabor_drunkHard","params":"fpd=0.6","desc":""},{"id":"fc781bef-900d-40d8-9d8d-edb58abc930c","name":"alchoholDigestionBoost","params":"adm=2000","desc":""},{"id":"fdb86906-e4c2-4ef4-b0b9-ce64470fe13a","name":"quest_kocovnickaCest_moraleHitExtreme","params":"mor-1","desc":""},{"id":"fdb86907-1899-4868-a0f0-e7a76050f9eb","name":"quest_kocovnickaCest_movementSpeed_debuff","params":"agility*0.35,vitality*0.35","desc":""},{"id":"fdb86908-efb7-4e8e-a378-47f9362b18df","name":"quest_kocovnickaCest_fightingCapabilities_debuff","params":"strength*0.7,agility*0.7,vitality*0.7,fencing*0.7,defense*0.7,weapon_sword*0.7,heavy_weapons*0.7,weapon_large*0.7,weapon_unarmed*0.7,marksmanship*0.7","desc":""},{"id":"fdba522c-558a-8ed7-2acf-259a6873279d","name":"quest_zikmunduvTabor_drunkLight","params":"fpd=0.4","desc":""},{"id":"fe9ca784-46f1-4bb4-9efc-1abe7e96a99a","name":"fistfights_fightInvisibility","params":"ors=-1","desc":""},{"id":"feb6ee6a-781b-4367-976d-3a21ba56fc9a","name":"near_death_experience","params":"hlh=1000,slh=1000","desc":""},{"id":"feedbeef-dead-babe-f00d-be9dad6abed9","name":"player_horse_stamina_modifier","params":"","desc":""},{"id":"ff92671b-2a82-4def-8d59-51627e0ecfc7","name":"Drunkenness","params":"","desc":"Drinking alcohol induces drunkenness and it depends on the amount whether it helps or hurts you. Drunkenness has two phases.\n\nPositive phase\nThe ongoing positive phase of drunkenness gradually increases your Speech, Strength, Agility, and Charisma up to a maximum of +4.\n\nNegative phase\nIf the drunkenness moves into the negative phase of drunkenness, it begins to gradually reduce your Strength, Agility, Vitality, Speech, Charisma, and Scholarship to a maximum of -2. In addition, you will become dizzy and you will have trouble seeing. If you've had too much alcohol, you could pass out.\nThe length of the positive and negative phases of drunkenness is determined by your Drinking skill. The higher it is, the longer the positive phase lasts and the negative phase is shorter. The drunkenness starts to decrease when all the alcohol is absorbed.\n\nIf you drink frequently, you can develop an addiction that is hard to break."},{"id":"ffc20521-134d-4811-8bc5-e932b74b7075","name":"constant_speed","params":"Walk=1,rms=1","desc":""},{"id":"ffc20521-134d-4811-8bc5-e932b74b7076","name":"barbora_mercy_morale_debuff","params":"mor-0.1","desc":""},{"id":"ffc20521-134d-4811-8bc5-e932b74b7077","name":"barbora_flee_morale_debuff","params":"mor-0.1","desc":""},{"id":"ffc20521-134d-4811-8bc5-e932b74b7078","name":"dog_stealth","params":"vib=0.0","desc":""},{"id":"ffc20522-134d-4811-8bc5-e933b74b7081","name":"npc_drunkenness","params":"dru+1,vision-1,thievery-2","desc":""},{"id":"ffda724a-762e-4de6-9cac-209c6084512b","name":"slow_attack_rate","params":"cag=0.5","desc":""},{"id":"ffda734a-763e-4de6-9cac-309c6084513b","name":"training_experience_debuff","params":"xpm=0.2","desc":""},{"id":"03845da1-2125-45dd-a315-cf7dba569e54","name":"Strong Dollmaker Potion Effect","params":"alp+1,LimitRun,weapon_sword-4,marksmanship-4,heavy_weapons-4,weapon_large-4,weapon_unarmed-4,poi=1,health-30/t","desc":"You cannot run and all your weapon skills are decreased by 4. You are also gradually losing 30 Health points."},{"id":"0514be45-7ace-4c34-9d12-cd3d8c83bae4","name":"Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are gradually losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"085e7b12-8b53-462a-83c0-ccb34217af0f","name":"Strong Fox Effect","params":"alp+1,speech+5,rdq>1","desc":"Increases Speech by 5 and increases your reading speed."},{"id":"0e94d82b-50ec-4d25-8ea5-438478ec5e31","name":"Henry's Cockerel Potion Effect","params":"alp+1,exh*0.5","desc":"Energy decreases 50% slower."},{"id":"122c0e62-747e-4bb3-9650-1a14d0420b08","name":"Weak Buck's Blood Effect","params":"alp+1,mst*1.15","desc":"Increases Stamina by 15%."},{"id":"15387b1a-7f7e-4462-8ce6-ea652f0e182e","name":"Weak Lullaby Potion Effect","params":"exhaust-100/s,vision*0.75,hearing*0.75","desc":"Decreases Energy to 0."},{"id":"15bfe81a-1c4e-41ce-91da-fa345129cc92","name":"Artemisia Potion Effect","params":"alp+1,strength+4,","desc":"Increases Strength by 4."},{"id":"19b9bd34-f153-4e2b-a56c-207a2a2f9f3a","name":"Henry's Artemisia Potion Effect","params":"alp+1,strength+6,wac*0.65,sls*0.65","desc":"Increases Strength by 6 and both attack and defence cost 30% less Stamina."},{"id":"1f398bd2-05ea-4a56-b883-9ac3ba3ad01a","name":"Weak Fox Effect","params":"alp+1,speech+3","desc":"Increases Speech by 3."},{"id":"1ff0e4a0-c09c-40be-b31e-fcb98b8ae0df","name":"Henry's Aesop Potion Effect","params":"alp+1,horse_riding+7,houndmaster+7;ors=-1","desc":"Increases Horsemanship and Houndmaster by 7 and decreases animal attentiveness. Dogs don't notice you."},{"id":"24c8edfc-a310-4f98-8adc-37de87514c38","name":"Henry's Saviour Schnapps Effect","params":"alp+1,strength+3,vitality+3,agility+3,health+30","desc":"Increases Strength, Agility and Vitality by 3."},{"id":"25bdbc39-c19a-4a11-8c0f-6e16c432846f","name":"Weak Dollmaker Potion Effect","params":"LimitRun,fencing-2,weapon_sword-2,heavy_weapons-2,marksmanship-2,weapon_large-2,weapon_unarmed-2,","desc":"You cannot run and your weapon skills are decreased by 2."},{"id":"2608543a-bb2f-41f0-b6a3-8140c9e6ac0e","name":"Buck's Blood Effect","params":"alp+1,mst*1.3","desc":"Increases Stamina by 30%."},{"id":"27c2fd6a-9b87-4d1f-b434-44f5ec3fa426","name":"Weak Aqua Vitalis Effect","params":"alp+1,hlh*0.85,slh*0.85,fdm-0.15","desc":"You lose 15% less Health."},{"id":"27e0c970-cf34-428a-91ff-35c1da071665","name":"Strong Cockerel Potion Effect","params":"alp+1,exh*0.8","desc":"Energy decreases 20% slower."},{"id":"2f76aa98-165f-4105-be87-61b630fe70b8","name":"Henry's Painkiller Brew Effect","params":"alp+1,ies=1,rst%1.75","desc":"Suppresses the effects of injury and your maximum Stamina decreases with health 75% less."},{"id":"3010a853-a9bb-4a0c-8d85-8b510e1b2ea6","name":"Embrocation Effect","params":"alp+1,agility+4, StaminaSprint*0.9","desc":"Increases Agility by 4 and sprinting costs 10% less Stamina."},{"id":"336b5fe9-ec7f-442f-a9d1-b8bb2a6d3fa1","name":"Weak Painkiller Brew Effect","params":"alp+1,ies=1,rst%1.15","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 15% less."},{"id":"34adf873-92b4-4166-b85b-a0fcaacb760c","name":"Henry's Chamomile Brew Effect","params":"alp+1,shr*5,ser*3","desc":"Sleeping heals you five times faster and increases Energy three times faster."},{"id":"35effd0b-b401-43c6-8195-b502d67ebe63","name":"Strong Dollmaker Potion Effect","params":"alp+1,LimitRun,fencing-4,weapon_sword-4,marksmanship-4,heavy_weapons-4,weapon_large-4,weapon_unarmed-4,poi=1,health-30/t","desc":"You cannot run and all your weapon skills are decreased by 4. You are also gradually losing 30 Health points."},{"id":"3a323f98-5d10-421f-accc-553a1b759100","name":"Strong Hair o' the Dog Potion Effect","params":"alp+1,apa+1,hod=0","desc":"Eliminates drunkenness and hangover."},{"id":"3a818f56-ff68-4aa4-bfc0-6437c3e73703","name":"Strong Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are quickly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"40b35ed9-a09a-47c2-b163-a4019340a52a","name":"Henry's Dollmaker Potion Effect","params":"alp+1,LimitRun,fencing-5,weapon_sword-5,marksmanship-5,heavy_weapons-5,weapon_large-5,weapon_unarmed-5,poi=1,health-50/t","desc":"You cannot run and your weapon skills are decreased by 5. You are also gradually losing 50 Health points."},{"id":"43292c72-7261-44e3-be02-6e0ef355dd6c","name":"Dollmaker Potion Effect","params":"alp+1,LimitRun,fencing-3,weapon_sword-3,marksmanship-3,heavy_weapons-3,weapon_large-3,weapon_unarmed-3,poi=1,health-20/t","desc":"You cannot run and your weapon skills are decreased by 3. You are also gradually losing 20 Health points."},{"id":"436e58bd-a715-4009-b305-a4c25f4e6759","name":"Nighthawk Effect","params":"alp+1,vision*1.5,owl+1,exh*0.75","desc":"You can see better in the dark and Energy decreases 25% slower."},{"id":"45275677-0808-4d4a-bcad-e78aa77ae612","name":"Henry's Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.5,mst*0.5","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration is decreased by 50%."},{"id":"58138b68-0c86-4d5e-8823-417106d08d3c","name":"Weak Bane poison Effect","params":"poi=1,LimitRun,health-110/t","desc":"You are slowly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"59ead0ed-6514-4b45-8a57-d3a95b75d7ba","name":"Strong Bowman's Brew Effect","params":"alp+1,marksmanship+5,ard*0.5","desc":"Increases Marksmanship by 5 and decreases Stamina loss when aiming by 50%."},{"id":"6026810f-22fe-49e5-8811-b233722f44b2","name":"Strong Artemisia Potion Effect","params":"alp+1,strength+4,wac*0.85,sls*0.85","desc":"Increases Strength by 4 and both attack and defence cost 15% less Stamina."},{"id":"612f0945-9933-47f0-9083-2db00be0e830","name":"potion_savegame","params":"","desc":""},{"id":"6451a511-4c57-4aff-9e81-c7d9cd02fd2d","name":"Henry's Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are very quickly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"689753d8-56a1-4012-822d-3d169d9504da","name":"Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.9,mst*0.9","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration are decreased by 10%."},{"id":"69c7ab9c-18e3-4919-8154-54fec286f03f","name":"Digestive Potion Effect","params":"alp+1,hunger-20,vitality+1","desc":"Decreases Nourishment by 20, cures food poisoning and increases Vitality by 1."},{"id":"6aa19cd2-5426-46b2-a5c4-f6124eb512f8","name":"Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.9,mst*0.9","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration are decreased by 10%."},{"id":"71afe0a0-fa45-42f1-a07d-acd3d02bfc0f","name":"Henry's Bowman's Brew Effect","params":"alp+1,marksmanship+8,ard=0","desc":"Increases Marksmanship by 8 and stops Stamina loss when aiming."},{"id":"736fcb09-5554-4e6b-b3e0-f9bc6cc4fd0a","name":"Weak Bowman's Brew Effect","params":"alp+1,marksmanship+3","desc":"Increases Marksmanship by 3."},{"id":"743b8ca4-6538-4c00-9903-29ab2050c8e8","name":"Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are gradually losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"78c21c77-dc76-4464-ac62-a37ececa1974","name":"Strong Buck's Blood Effect","params":"alp+1,mst*1.3,srg*1.15","desc":"Increases Stamina by 30% and Stamina regeneration by 15%."},{"id":"79285ce3-21f3-4aa6-a824-68c42c37732a","name":"Strong Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are quickly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"7a94771c-98bd-445f-bf48-ee24bf235c95","name":"Henry's Dollmaker Potion Effect","params":"alp+1,LimitRun,fencing-5,weapon_sword-5,marksmanship-5,heavy_weapons-5,weapon_large-5,weapon_unarmed-5,poi=1,health-50/t","desc":"You cannot run and your weapon skills are decreased by 5. You are also gradually losing 50 Health points."},{"id":"7b37ac9b-840f-40d2-8397-b62313d2239e","name":"potion_insomia_2","params":"alp+1,exhaust-20","desc":""},{"id":"7f16793c-4d42-4d63-a912-d93d51b92289","name":"Henry's Nighthawk Potion Effect","params":"alp+1,vision*1.5,owl+1,exh=0.0","desc":"You can see better in the dark and not lose Energy at all."},{"id":"7f89c355-d3c6-4f61-9774-3a3898372ab7","name":"Henry's Aqua Vitalis Effect","params":"alp+1,hlh*0.4,slh*0.4,ibi*1.6,fdm-0.6","desc":"You lose 60% less Health and and slows bleeding by 60%."},{"id":"81886e93-8aba-4480-aa3b-d2c0a86447d7","name":"Weak Digestive Potion Effect","params":"hunger-20,","desc":"The ingredients in this potion reduce nourishment by 20 and cure food poisoning."},{"id":"81e733a3-4bfd-4573-a895-6d8613e444d5","name":"Fox Effect","params":"alp+1,speech+3,rdq>1","desc":"Increases Speech by 3 and increases your reading speed."},{"id":"8503216a-a34c-49f0-aefa-54d4502046f9","name":"Weak Marigold Decoction Effect","params":"alp+1,health+15/t,hod*0.75","desc":"Gradually heals 15 Health points and hangover goes away 50% faster."},{"id":"88b0cf2b-516e-4d73-adba-c67517d278c3","name":"Strong Digestive Potion Effect","params":"alp+1,hunger-20,pim=1, vitality+2","desc":"Decreases Nourishment by 20, cures all poisoning and increases Vitality by 2."},{"id":"8cc1d023-1c9d-43bc-8662-144499904a6e","name":"Strong Aesop Potion Effect","params":"alp+1,horse_riding+5,houndmaster+5;ors=-1","desc":"Increases Horsemanship and Houndmaster by 5 and decreases animal attentiveness. Dogs don't notice you."},{"id":"9186f153-b18e-4e04-8b39-411268d24476","name":"Strong Saviour Schnapps Effect","params":"alp+1,strength+2,vitality+2,agility+2,health+20","desc":"Increases Strength, Agility and Vitality by 2."},{"id":"940b16f1-d2ef-4874-a915-8122a7d4392a","name":"Weak Artemisia Potion Effect","params":"alp+1,strength+2","desc":"Increases Strength by 2."},{"id":"96083a8f-cdb5-42ec-9bb1-3caf40386ea2","name":"Marigold Decoction Effect","params":"alp+1,health+25/t,hod*0.5","desc":"Gradually heals 25 Health points and hangover goes away 100% faster."},{"id":"ad53097a-b18d-4b05-9a4d-4d14176b2740","name":"Aesop Potion Effect","params":"alp+1,horse_riding+3,houndmaster+3;ors*0.5","desc":"Increases Horsemanship and Houndmaster by 3 and decreases animal attentiveness."},{"id":"adcc7caf-447f-4450-83cb-77ce46f0b056","name":"Quickfinger Potion Effect","params":"alp+1,thievery+4,craftsmanship+4","desc":"Craftmanship and Thievery are increased by 4."},{"id":"b1075629-edcd-4be0-bbbc-28c63a7f61be","name":"Henry's Embrocation Effect","params":"alp+1,agility+6, StaminaSprint*0.7","desc":"Increases Agility by 6 and sprinting costs 30% less Stamina."},{"id":"b1697366-d4cf-4133-9736-97c3f512f9e6","name":"Dollmaker Potion Effect","params":"alp+1,LimitRun,fencing-3,weapon_sword-3,marksmanship-3,heavy_weapons-3,weapon_large-3,weapon_unarmed-3,poi=1,health-20/t","desc":"You cannot run and your weapon skills are decreased by 3. You are also gradually losing 20 Health points."},{"id":"b56d79e6-156c-4803-8d91-73a82f01926e","name":"Weak Bane poison Effect","params":"poi=1,LimitRun,health-110/t","desc":"You are slowly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"b6bd097c-f092-469d-984a-e673f4cdd03c","name":"Henry's Marigold Decoction Effect","params":"alp+1,health+60/t,hod=0","desc":"Gradually heals 60 Health points and cures hangover."},{"id":"bb7bfaed-fad9-4f27-a9be-731c3b141285","name":"Strong Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.7,mst*0.7","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration are decreased by 30%."},{"id":"bec61738-f8ed-4429-b9ae-482f5512e442","name":"Chamomile Brew Effect","params":"alp+1,shr*3","desc":"Sleeping heals you three times faster."},{"id":"c0662fdb-9bd1-44ce-9a89-a6e83ec8063a","name":"Strong Aqua Vitalis Effect","params":"alp+1,hlh*0.7,slh*0.7,ibi*1.3,fdm-0.3","desc":"You lose 30% less Health and slows bleeding by 30%."},{"id":"c14174d4-a381-4129-a935-62bb031901d3","name":"Henry's Quickfinger Potion Effect","params":"alp+1,thievery+8,craftsmanship+8","desc":"Craftmanship and Thievery are increased by 8."},{"id":"ceb70cbf-9c4e-491a-8d75-7e8ab874db54","name":"Weak Embrocation Effect","params":"alp+1,agility+2","desc":"Increases Agility by 2."},{"id":"cf87b636-408a-403e-b0ac-87eb323aabd4","name":"Henry's Hair o' the Dog Effect","params":"alp+1,hod=0,ald=0, apa+1","desc":"Eliminates drunkenness and hangover and temporarily reduces effects of alcoholism."},{"id":"cf9b4526-29f1-40ce-b95d-0299974e39ba","name":"Saviour Schnapps Effect","params":"alp+1,strength+1,vitality+1,agility+1,health+10","desc":"Increases Strength, Agility and Vitality by 1."},{"id":"d6079f34-4b7e-4afd-afe1-eee36f4674c6","name":"Strong Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.7,mst*0.7","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration are decreased by 30%."},{"id":"d97eea3c-162b-4537-a156-8d984b3a90a1","name":"Strong Embrocation Effect","params":"alp+1,agility+4, StaminaSprint*0.8","desc":"Increases Agility by 4 and sprinting costs 20% less Stamina."},{"id":"dab8a783-c391-4925-860b-8162eb2f2642","name":"Strong Painkiller Brew Effect","params":"alp+1,ies=1,rst%1.5","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 50% less."},{"id":"db397470-27c5-4a3a-9717-1b3b5f42377a","name":"Weak Dollmaker Potion Effect","params":"LimitRun,fencing-2,weapon_sword-2,heavy_weapons-2,marksmanship-2,weapon_shield-2,weapon_large-2,weapon_unarmed-2,","desc":"You cannot run and your weapon skills are decreased by 2."},{"id":"dd2612e4-0e4a-4092-867b-8728f45dcfc5","name":"Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.9,mst*0.9","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration are decreased by 10%."},{"id":"dff536bc-9472-4754-9851-8656b5b18247","name":"Weak Chamomile Brew Effect","params":"alp+1,shr*2","desc":"Sleeping heals you two times faster."},{"id":"e223597e-8005-4464-8948-9b30b3ef293e","name":"Strong Marigold Decoction Effect","params":"alp+1,health+40/t,hod=0","desc":"Gradually heals 40 Health points and cures hangover."},{"id":"e300b5f3-9d1f-4dfd-8285-c872bb3ed85b","name":"Strong Chamomile Brew Effect","params":"alp+1,shr*4,ser*2","desc":"Sleeping heals you four times faster and increases Energy two times faster."},{"id":"e3a88c22-4058-4bf2-9000-043fff49f332","name":"potion_insomia","params":"alp+1,exhaust-10","desc":""},{"id":"e3dfbf21-e1c1-43db-9270-078c0c2b3611","name":"Strong Quickfinger Potion Effect","params":"alp+1,thievery+6,craftsmanship+6","desc":"Craftmanship and Thievery are increased by 6."},{"id":"e8b7b563-f15b-487f-aa28-35b790ad98e4","name":"Henry's Digestive Potion Effect","params":"alp+1,hunger-30,pim=1, vitality+3","desc":"Decreases Nourishment by 30, cures all poisoning and increases Vitality by 3."},{"id":"ea76c3af-bfb1-4e89-9157-d82f028b8572","name":"Henry's Fox Effect","params":"alp+1,speech+7,rdq>1,xpm*1.5","desc":"Increases Speech by 7, increases reading speed and increases the amount of experience gained by 50%."},{"id":"eacbd986-ad07-4698-bf81-59df608b56a1","name":"Weak Quickfinger Potion Effect","params":"alp+1,thievery+2,craftsmanship+2","desc":"Craftmanship and Thievery are increased by 2."},{"id":"eaf0b14c-e2a4-4ace-bb89-e33ea2dedcd6","name":"Aqua Vitalis Effect","params":"alp+1,hlh*0.85,slh*0.85,ibi*1.15,fdm-0.15","desc":"You lose 15% less Health and slows bleeding by 10%."},{"id":"ebd30789-f788-493d-8bf3-ed830446e7aa","name":"Bowman's Brew Effect","params":"alp+1,marksmanship+3,ard*0.8","desc":"Increases Marksmanship by 3 and decreases Stamina loss when aiming by 20%."},{"id":"ed10dd29-b177-4d04-a330-3cbe76fe04b2","name":"Henry's Bane Poison Effect","params":"alp+1,poi=1,LimitRun,health-110/t","desc":"You are very quickly losing 110 Health points. You can't run either. If you don't do something about it, you will die."},{"id":"efd07a19-ef79-4454-bbb3-a2a09af1ce0f","name":"Henry's Buck's Blood Effect","params":"alp+1,mst*1.6,srg*1.3","desc":"Increases Stamina by 60% and Stamina regeneration by 30%."},{"id":"f08512d7-03f5-4312-b3a2-5e8574fc6188","name":"Painkiller Brew Effect","params":"alp+1,ies=1,rst%1.3","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 30% less."},{"id":"f13d37c1-5524-4822-9515-48e1ccb0dde4","name":"Weak Lullaby Potion Effect","params":"exhaust-100/s,vision*0.75,hearing*0.75","desc":"Decreases Energy to 0."},{"id":"f23dda25-6450-49c8-86f3-fc7bc1236199","name":"Weak Aesop Potion Effect","params":"alp+1,horse_riding+3,houndmaster+3;ors*0.8","desc":"Increases Horsemanship and Houndmaster by 3 and decreases animal attentiveness."},{"id":"f4b3ffd4-8a48-41af-bbae-1f7d50121ab4","name":"Henry's Lullaby Potion Effect","params":"alp+1,exhaust-100/s,vision*0.75,hearing*0.75,srg*0.5,mst*0.5","desc":"Decreases Energy to 0. Maximum Stamina and its regeneration is decreased by 50%."},{"id":"f5e6a217-25b5-4b95-88d4-abc7d15a2203","name":"Hair o' the Dog Effect","params":"alp+1,apa+0.08,hod=0,","desc":"Decreases drunkenness or removes hangover."},{"id":"fa2ad41e-5701-4fe7-8630-5cee49eb304f","name":"Weak Nighthawk Potion Effect","params":"alp+1,vision*1.5,owl+1","desc":"You can see better in the dark."},{"id":"fca19318-7d59-4645-bb7d-01fa9e6c925f","name":"Weak Hair o' the Dog Effect","params":"alp+1,apa+0.05,","desc":"Decreases drunkenness."},{"id":"fe0d144f-2fe0-4cda-bbb1-61e593ece413","name":"Strong Nighthawk Potion Effect","params":"alp+1,vision*1.5,owl+1,exh*0.5","desc":"You can see better in the dark and Energy decreases 50% slower."},{"id":"0a886758-b222-42f1-a5c5-c5f3d840e913","name":"heavy_weapon_combo_finished_dummy","params":"","desc":""},{"id":"26524ef2-ef50-4bc5-a149-262880922b82","name":"sword_combo_finished_dummy","params":"","desc":""},{"id":"3e9b2099-d1e5-493d-8fe4-8de9ea9e9e8a","name":"Bleeding","params":"ibi*2","desc":"You are bleeding. Unless you treat your wounds with a bandage, you will slowly lose health and die, but since you have the Thickblooded perk, it will be slower. The bleeding will not stop on its own though."},{"id":"993dba95-0683-4cf1-9c57-48edefaa382f","name":"clean_cut_debuff","params":"agility-5","desc":""},{"id":"ae48b141-6946-4714-9818-a253f81e792d","name":"heavy_bleeding","params":"ibi*0.75","desc":""},{"id":"bf861d60-b892-42a3-9c3b-d3787362f88b","name":"Arm of Beowulf","params":"wac*1.2,wat*0.8,asp-0.3","desc":"Using a longsword with just one hand is difficult even for a strongman like yourself. Attacks are therefore 30 % slower, 20 % weaker and will cost you 20 % more Stamina"},{"id":"c2d02711-353a-4f9f-918f-bc17faf515b2","name":"only_antidote","params":"","desc":""},{"id":"46769b14-d592-4a7c-a6bc-811e3366affa","name":"Renegade Brand","params":"strength*0.8,vitality*0.8,agility*0.8","desc":"You just got out of jail, but having the Renegade Brand means the penalties to your stats are 20% lower.\n \nStrength -20%\nAgility -20%\nVitality -20%"},{"id":"bd0dcc02-f7ed-4ebf-bdf0-b2bd7358aac2","name":"test_profiling_slow_death","params":"health-100/t","desc":""},{"id":"a218b534-b2a5-11ed-afa1-0242ac120002","name":"cheat_invisibility","params":"con=-100,evi=-100,lpv=-100,nbi=-10,noi=-100,ors=-10","desc":""},{"id":"e4fc62ef-683d-4f8d-0002-cca23d364f35","name":"cheat_immortal","params":"imm=1,upr=1,health+100/s","desc":""},{"id":"e4fc62ef-683d-4f8d-0010-cca23d364f35","name":"cheat_carry_capacity_base","params":"cps+10","desc":""},{"id":"e4fc62ef-683d-4f8d-0011-cca23d364f35","name":"cheat_carry_capacity","params":"cps+10","desc":""},{"id":"e4fc62ef-683d-4f8d-0020-cca23d364f35","name":"cheat_xp_multiplier_base","params":"xpm*1.5","desc":""},{"id":"e4fc62ef-683d-4f8d-0021-cca23d364f35","name":"cheat_xp_multiplier","params":"xpm*1.5","desc":""}]
\ No newline at end of file
diff --git a/src/data/commands-mod.json b/src/data/commands-mod.json
new file mode 100644
index 0000000..68049ca
--- /dev/null
+++ b/src/data/commands-mod.json
@@ -0,0 +1 @@
+[{"name":"cheat_action","desc":"This command is used by the Cheat-Keys optional mod to publish keyboard press/hold events to Cheat mod.\nThis command can be used to manually simulate a key press as well.","args":[{"name":"type","required":true,"type":"string","desc":"Action Type"},{"name":"slot","required":true,"type":"string","desc":"Action Slot"}],"examples":[{"caption":"Simulate pressing F5.","command":"cheat_action slot:1 type:press"}],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_begin_binding","desc":"Begins binding commands to the given action slot and type.\nUse cheat_action_bind_console_command and cheat_action_bind_lua_code to bind 1+ commands to the action.\nUse cheat_action_end_binding to complete the process.","args":[{"name":"type","required":true,"type":"string","desc":"Action Type"},{"name":"slot","required":true,"type":"string","desc":"Action Slot"}],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_bind_console_command","desc":"Binds a console command to the current action.","args":[],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_bind_lua_code","desc":"Binds lua code to the current action.","args":[],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_end_binding","desc":"Ends binding a command to the given action slot and type.","args":[],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_reset","desc":"Removes all commands bound to the given action.","args":[{"name":"type","required":true,"type":"string","desc":"Action Type"},{"name":"slot","required":true,"type":"string","desc":"Action Slot"}],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_action_reset_all","desc":"Removes all commands bound to all actions.","args":[],"examples":[],"category":"Utility","source":"cheatmod"},{"name":"cheat_add_all_codex_perks","desc":"Adds all perks related to the codex.","args":[],"examples":[],"category":"Perks","source":"cheatmod"},{"name":"cheat_add_all_items","desc":"Adds all items the player's inventory. Enjoy!","args":[{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt adding quest items."}],"examples":[{"caption":"Add all items","command":"cheat_add_all_items"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_add_buff","desc":"Adds matching buffs to the player.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Adds all bufss with 'heal' in their name","command":"cheat_add_buff any:heal"},{"caption":"Adds the buff poor_hearing buff by ID","command":"cheat_add_buff exact:29336a21-dd76-447b-a4f0-94dd6b9db466"},{"caption":"Adds the buff healthEatSleep_instant buff by full name","command":"cheat_add_buff exact:healthEatSleep_instant"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_buff_carry_weight","desc":"Applies a custom non-persistent carry weight buff. Cap 120.\nUses carry weight per strength (CPS) derived stat. Buff visible in inventory.","args":[{"name":"amount","required":true,"type":"number","desc":"Carry weight in pounds, rounded to nearest 10 pounds."}],"examples":[{"caption":"Adds 100 pounds per str to player's carry weight.","command":"cheat_add_buff_carry_weight amount:100"},{"caption":"Remove the buff.","command":"cheat_add_buff_carry_weight amount:0"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_buff_heal","desc":"Stop bleeding, removes injuries, and restores all health, stamina, hunger, and exhaust.","args":[],"examples":[{"caption":"Heal bleeding and injuries","command":"cheat_add_buff_heal"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_buff_immortal","desc":"Adds a custom non-persistent buff to make the player immortal. Buff visible on HUD & Buffs.\nUse cheat_remove_buff_immortal to remove this buff or restart the game.","args":[],"examples":[{"caption":"Add immortality","command":"cheat_add_buff_immortal"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_buff_invisible","desc":"Adds a custom non-persistent invisible buff to player. Buff visible on HUD & Buffs.\nSet visibility, conspicuousness and noise to zero.\nUse cheat_remove_buff_invisible to remove this buff or restart the game.","args":[],"examples":[{"caption":"Add invisible buff to player","command":"cheat_add_buff_invisible"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_buff_xp","desc":"Adds a custom non-persistent XP multiplier buff. Cap 500%","args":[{"name":"amount","required":true,"type":"number","desc":"Percentage increase in XP gain. Rounded to nearest 50% increment."}],"examples":[{"caption":"Uses XP multiplier (XPM) derived stat. Buff visible in inventory. Adds 200% XP multiplier. Remove the buff.","command":"cheat_add_buff_xp amount:200:"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_item","desc":"Adds an item to the player's inventory.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt adding quest items."},{"name":"amount","required":false,"type":"number","desc":"The number of items to add. Default 1."},{"name":"condition","required":false,"type":"number","desc":"The condition of the item added. Default 100."},{"name":"bulk","required":false,"type":"boolean","desc":"If true, all matches items are added."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"quality","required":false,"type":"number","desc":"The quality of the item added (1-3). Defaults to item's max quality."}],"examples":[{"caption":"Adds 1 item with 'bow' in anywhere in name","command":"cheat_add_item any:bow"},{"caption":"Adds 1 item with 'hunting arrow' anywhere in name","command":"cheat_add_item any:hunting arrow"},{"caption":"Adds 2 items exactly named 'military sword' with 50% condition","command":"cheat_add_item exact:military sword amount:10 condition:50"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_add_money","desc":"Adds the given amount of groschen to the player's inventory.","args":[{"name":"amount","required":true,"type":"number","desc":"The amount of groschen to add."}],"examples":[{"caption":"Add 200 groschen","command":"cheat_add_money amount:200"}],"category":"Money","source":"cheatmod"},{"name":"cheat_add_perk","desc":"Adds matching perks to the player.\nNOTE: It isn't possible to know exact what perks the player has or were added/removed.\nThis command will just log the perks it tried to add.\nSome perks may be part of quests or other game mechanics or not intented for the player to use.","args":[{"name":"i_know_what_i_am_doing","required":true,"type":"boolean","desc":"Enables this command."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Adds the perk 'Deft hands II' by ID","command":"cheat_add_perk exact:b4b0c345-e8c3-4b9e-890a-e77549596131"},{"caption":"Adds the perk 'Viper' perk by full name","command":"cheat_add_perk exact:Viper"},{"caption":"Adds all perks with 'Hands' in their names","command":"cheat_add_perk any:Hands"}],"category":"Perks","source":"cheatmod"},{"name":"cheat_add_potion_buff","desc":"Adds a potion buff to the player.","args":[{"name":"id","required":true,"type":"string","desc":"The potion ID or all/part of potion name. Supported potions:"}],"examples":[],"category":"Buffs","source":"cheatmod"},{"name":"cheat_add_skill_levels","desc":"Adds levels to a player's skill.\nWARNING: A skill's level cannot lowered once set.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"levels","required":true,"type":"number","desc":"The levels to add to the skill (max 30). Level cannot lowered."}],"examples":[{"caption":"Add 5 levels to player's marksmanship.","command":"cheat_add_skill_levels exact:marksmanship levels:5"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_add_stat_levels","desc":"Adds levels to a player's stat.\nWARNING: A stat's level cannot lowered once set.","args":[{"name":"stat","required":true,"type":"string","desc":"One of: strength, agility, vitality, or speech."},{"name":"levels","required":true,"type":"number","desc":"The levels to add to the stat (max 30). Level cannot lowered."}],"examples":[{"caption":"Add 5 levels to player's strength.","command":"cheat_add_stat_levels stat:str levels:5"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_alias","desc":"Creates an alias for a cheat command.","args":[{"name":"name","required":true,"type":"string","desc":"Name of the new command."},{"name":"target","required":true,"type":"string","desc":"Existing cheat command to execute."}],"examples":[{"caption":"Alias cheat_teleport_to_checkpoint to 'cgoto'","command":"cheat_alias name:cgoto target:cheat_teleport_to_checkpoint"}],"category":"Utility","source":"cheatmod"},{"name":"cheat_backup_inventory","desc":"Saves inventory to temporary mod memory which remains even on the main menu screen.\nUse to avoid situations where game mechanics causes lose of your inventory,\nmoving items between game saves, or for New Game+ item transfers.\nUse cheat_restore_inventory to restore the backup.\nWARNING: cheat_restore_inventory cannot restore quest items and quality 4 items.","args":[],"examples":[{"caption":"Saves all items","command":"cheat_backup_inventory"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_charm","desc":"Automates your morning routine of bath-haircut-sex for maximum Charisma bonus.\nWashes all dirt and blood and applies Fresh Cut and Smitten buffs.","args":[],"examples":[{"caption":"Wash yourself and add Charisma buffs","command":"cheat_charm"}],"category":"NPCs","source":"cheatmod"},{"name":"cheat_clip","desc":"Turns on player collision detection.","args":[],"examples":[{"caption":"Turn On","command":"cheat_clip"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_damage_gear","desc":"Damages weapons and armor.\nThis can uneqip items so don't do this in combat.","args":[{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt damaging quest items."},{"name":"condition","required":false,"type":"number","desc":"The item condition to apply between 0 and 100. Default 50."},{"name":"quality","required":false,"type":"number","desc":"The item quality. Defaults to, and cannot exceed, the item's max quality or quality 3."}],"examples":[{"caption":"Damage gear to 25%","command":"cheat_damage_gear condition:25"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_find_buffs","desc":"Find, and logs, all matching buffs.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Show all buffs","command":"cheat_find_buffs"},{"caption":"Show all buffs with 'heal' in their name","command":"cheat_find_buffs any:heal"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_find_items","desc":"Perform case-insensitive search for items by ID and localized name.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Show all items","command":"cheat_find_items"},{"caption":"Matches items with 'long-range arrow' in their names","command":"cheat_find_items any:long-range arrow"},{"caption":"Matches item named 'long-range arrow'","command":"cheat_find_items exact:long-range arrow"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_find_npc","desc":"Finds NPCs loaded into the world.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"radius","required":false,"type":"number","desc":"The search radius around player."}],"examples":[{"caption":"Find any NPC with 'hunt' in name","command":"cheat_find_npc any:hunt"},{"caption":"Find NPC with name exact matching 'Bara'","command":"cheat_find_npc exact:bara"},{"caption":"Find all NPCs near player.","command":"cheat_find_npc radius:5"}],"category":"NPCs","source":"cheatmod"},{"name":"cheat_find_perks","desc":"Displays all perks that match the given query.\nNOTE: This command shows all perks in the database.\nSome perks may be part of quests or other game\nmechanics or not intented for the player to use.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Show all perks","command":"cheat_find_perks"},{"caption":"Shows all perks with 'Hands' in their names","command":"cheat_find_perks any:Hands"},{"caption":"Shows the perk named 'Viper II'","command":"cheat_find_perks exact:Viper II"}],"category":"Perks","source":"cheatmod"},{"name":"cheat_find_skills","desc":"Displays skills matching the given query.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Show all skills","command":"cheat_find_skills"},{"caption":"Shows all skills with '?' in their names","command":"cheat_find_skills any:?"},{"caption":"Shows the skill named '?'","command":"cheat_find_skills exact:?"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_get_states","desc":"Displays the player's states.","args":[],"examples":[],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_get_time","desc":"Logs information about game time.","args":[],"examples":[{"caption":"Get game time","command":"cheat_get_time"}],"category":"World & Time","source":"cheatmod"},{"name":"cheat_horse_info","desc":"Shows information about targeted or owned horse.","args":[],"examples":[{"caption":"Show horse info","command":"cheat_horse_info"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_horse_inventory","desc":"Opens inventory of targeted or owned horse.","args":[],"examples":[{"caption":"Open horse inventory","command":"cheat_horse_inventory"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_horse_new","desc":"Create a horse for you if you don't already have one.","args":[],"examples":[{"caption":"A new horse","command":"cheat_horse_new"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_horse_own","desc":"Makes the currently targeted horse the player's horse.","args":[],"examples":[{"caption":"Takes ownership of the horse","command":"cheat_horse_own"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_horse_release","desc":"Releases your currently owned horse.","args":[],"examples":[{"caption":"Release horse","command":"cheat_horse_release"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_horse_teleport","desc":"Teleports your horse to you.","args":[],"examples":[{"caption":"Teleport your horse to you","command":"cheat_horse_teleport"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_horse_wash","desc":"Washes targeted or owned horse.","args":[],"examples":[{"caption":"Wash the horse","command":"cheat_horse_wash"}],"category":"Horse","source":"cheatmod"},{"name":"cheat_inventory","desc":"Opens the targeted or matching NPC's inventory.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Open a random horse's inventory","command":"cheat_inventory any:horse"},{"caption":"Open Bara's inventory","command":"cheat_inventory exact:bara"},{"caption":"Open inventory of current target","command":"cheat_inventory"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_kill","desc":"Kills the player's current target.","args":[],"examples":[],"category":"NPCs","source":"cheatmod"},{"name":"cheat_list_inventory","desc":"Lists your inventory.","args":[],"examples":[],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_loc","desc":"Shows player's world location.","args":[],"examples":[{"caption":"Type to console","command":"cheat_loc"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_localization","desc":"Controls localization of names.","args":[{"name":"enable","required":true,"type":"boolean","desc":"If true, localized naming will be used."}],"examples":[{"caption":"Enable localized names","command":"cheat_localization enable:true"},{"caption":"Disable localized names","command":"cheat_localization enable:false"}],"category":"Utility","source":"cheatmod"},{"name":"cheat_mass_kill","desc":"Kills all the killable entities within the given radius of the player.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"radius","required":false,"type":"number","desc":"The kill radius around player. Default 10."}],"examples":[{"caption":"Kill everything within 200 units of player","command":"cheat_mass_kill radius:200"},{"caption":"Kill Bara","command":"cheat_mass_kill exact:bara"},{"caption":"Kills all bandits near the player","command":"cheat_mass_kill any:bandit radius:20"}],"category":"NPCs","source":"cheatmod"},{"name":"cheat_no_clip","desc":"Turns off player collision detection.","args":[],"examples":[{"caption":"Turn Off","command":"cheat_no_clip"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_no_door_lockpicking","desc":"Bypass door lockpicking but consumes a lockpick.\nRestarting the game reverts this effect.","args":[{"name":"nolockpicks","required":false,"type":"boolean","desc":"If true, lockpicks are not required to bypass minigamee."}],"examples":[{"caption":"Turn off lockpicking minigame on doors","command":"cheat_no_door_lockpicking"},{"caption":"Turn off lockpicking minigame on doors and disable lockpick requirement","command":"cheat_no_door_lockpicking nolockpicks:true"}],"category":"Minigames","source":"cheatmod"},{"name":"cheat_no_lockpicking","desc":"Bypass door and stash lockpicking but consumes a lockpick.\nRestarting the game reverts this effect.","args":[{"name":"nolockpicks","required":false,"type":"boolean","desc":"If true, lockpicks are not required to bypass minigamee."}],"examples":[{"caption":"Turn off lockpicking minigames on doors and stashes","command":"cheat_no_lockpicking"},{"caption":"Turn off lockpicking minigames on doors and stashes and disable lockpick requirement","command":"cheat_no_lockpicking nolockpicks:true"}],"category":"Minigames","source":"cheatmod"},{"name":"cheat_no_pickpocketing","desc":"Bypass pickpocketing minigame, however NPCs can still notice you committing a crime.\nRestarting the game reverts this effect.","args":[],"examples":[{"caption":"Turn off pickpocketing minigame","command":"cheat_no_pickpocketing"}],"category":"Minigames","source":"cheatmod"},{"name":"cheat_no_stash_lockpicking","desc":"Bypass stash lockpicking but consumes a lockpick.\nRestarting the game reverts this effect.","args":[{"name":"nolockpicks","required":false,"type":"boolean","desc":"If true, lockpicks are not required to bypass minigamee."}],"examples":[{"caption":"Turn off lockpicking minigame on stashes","command":"cheat_no_stash_lockpicking"},{"caption":"Turn off lockpicking minigame on stashes and disable lockpick requirement","command":"cheat_no_stash_lockpicking nolockpicks:true"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_own_stolen_items","desc":"Makes you the owner of all stolen items in your inventory.\nThis removes the stolen flag from the item.","args":[],"examples":[{"caption":"Take ownership of stolen items","command":"cheat_own_stolen_items"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_phys_hover","desc":"Uses the physics system to make the player hover.\nThis is a toggle command.\nThis command is intended to be bound to a key.","args":[],"examples":[],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_phys_push","desc":"Uses the physics system to push the player in the direction they are looking.\nThis is a toggle command.\nThis command is intended to be bound to a key.","args":[],"examples":[],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_phys_sprint","desc":"Uses the physics system to push the player in the direction they are looking (and down for friction).\nThis is a toggle command.\nThis command is intended to be bound to a key.","args":[],"examples":[],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_remove_all_buffs","desc":"Removes all buffs from the player.","args":[],"examples":[{"caption":"Remove all buffs","command":"cheat_remove_all_buffs"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_remove_all_perks","desc":"Removes all possible perks from the player.\nThis commands 1st calls cheat_reset_perks to remove visible perks and refund perk points.\nThen we attempt to remove each perk from the perk database from the player.\nThere is no way to know what perks were removed.\nSome perks may be part of quests or other game mechanics or not intented for the player to use.","args":[{"name":"i_know_what_i_am_doing","required":true,"type":"boolean","desc":"Enables this command."}],"examples":[{"caption":"Remove all perks","command":"cheat_remove_all_perks"}],"category":"Perks","source":"cheatmod"},{"name":"cheat_remove_buff","desc":"Removes matching buffs from the player.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Removes all buffs with 'heal' in the name","command":"cheat_remove_buff any:heal"},{"caption":"Removes the buff poor_hearing buff by ID","command":"cheat_remove_buff exact:29336a21-dd76-447b-a4f0-94dd6b9db466"},{"caption":"Removes the buff healthEatSleep_instant buff by full name","command":"cheat_remove_buff exact:healthEatSleep_instant"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_remove_buff_immortal","desc":"Removes the buffs making the player immortal.","args":[],"examples":[{"caption":"Remove immortality","command":"cheat_remove_buff_immortal"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_remove_buff_invisible","desc":"Removes invisible buff from player.","args":[],"examples":[{"caption":"Remove invisible buff from player","command":"cheat_remove_buff_invisible"}],"category":"Buffs","source":"cheatmod"},{"name":"cheat_remove_item","desc":"Removes an item to the player's inventory.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"amount","required":false,"type":"number","desc":"The number of items to remove. Default 1."},{"name":"bulk","required":false,"type":"boolean","desc":"If true, all matches items are removed."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt removing quest items."}],"examples":[{"caption":"Removes the last item with 'bow' in its name","command":"cheat_remove_item id:bow"},{"caption":"Removes the item ui_nm_arrow_hunter by ID","command":"cheat_remove_item id:802507e9-d620-47b5-ae66-08fcc314e26a"},{"caption":"Removes 10 items ui_nm_arrow_hunter by fullname","command":"cheat_remove_item id:ui_nm_arrow_hunter amount:10"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_remove_items","desc":"Removes all items in the player's inventory.\nTHIS DELETES YOUR INVENTORY! Move items you want to a stash first.","args":[{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt removing quest items."}],"examples":[{"caption":"Delete your inventory.","command":"cheat_remove_items"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_remove_perk","desc":"Removes matching perks from the player.\nNOTE: It isn't possible to know exact what perks the player has or were added/removed.\nThis command will just log the perks it tried to remove.\nSome perks may be part of quests or other game mechanics or not intented for the player to use.","args":[{"name":"i_know_what_i_am_doing","required":true,"type":"boolean","desc":"Enables this command."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Removes the perk 'Deft hands II' by ID","command":"cheat_remove_perk exact:b4b0c345-e8c3-4b9e-890a-e77549596131"},{"caption":"Removes the perk 'Viper' perk by full name","command":"cheat_remove_perk exact:Viper"},{"caption":"Removes all perks with 'Hands' in their names","command":"cheat_remove_perk any:Hands"}],"category":"Perks","source":"cheatmod"},{"name":"cheat_remove_stolen_items","desc":"Removes all stolen items from your inventory.","args":[],"examples":[{"caption":"Remove stolen items.","command":"cheat_remove_stolen_items"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_repair_gear","desc":"Repairs weapons and armor.\nThis can uneqip items so don't do this in combat.","args":[{"name":"quest","required":false,"type":"boolean","desc":"If true, attempt repairing quest items."},{"name":"condition","required":false,"type":"number","desc":"The item condition to apply between 0 and 100. Default 100."},{"name":"quality","required":false,"type":"number","desc":"The item quality. Defaults to, and cannot exceed, the item's max quality or quality 3."}],"examples":[{"caption":"Repair gear to 75%.","command":"cheat_repair_gear condition:75"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_reset_perks","desc":"Added a buff that will removed all perks visible on the player's perk sheet.\nThis will refund perk points, up to the max you're earned.","args":[],"examples":[],"category":"Perks","source":"cheatmod"},{"name":"cheat_restore_inventory","desc":"Loads all items stored by cheat_backup_inventory in this game session.\nWARNING: cheat_restore_inventory cannot restore quest items and quality 4 items.","args":[],"examples":[{"caption":"Load all items","command":"cheat_restore_inventory"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_reveal_map","desc":"Add a perk to reveal the entire map.","args":[],"examples":[{"caption":"Reveal the entire map","command":"cheat_reveal_map"}],"category":"World & Time","source":"cheatmod"},{"name":"cheat_revive_npc","desc":"(Does not work yet) Revives dead NPCs by name or within the given radius of the player.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"radius","required":false,"type":"number","desc":"The resurrection radius around player. Default 5."}],"examples":[{"caption":"Revive everything.","command":"cheat_revive_npc radius:200"},{"caption":"Revive Father Godwin.","command":"cheat_revive_npc exact:bara"},{"caption":"Revives all bandits near the player.","command":"cheat_revive_npc any:bandit radius:10"}],"category":"NPCs","source":"cheatmod"},{"name":"cheat_save","desc":"This instantly saves your game. No item requirements or save limits.","args":[],"examples":[{"caption":"Save your game","command":"cheat_save"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_bow_reticle","desc":"Enables or disables the bow reticle. Won't take effect if bow is drawn.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true or false"}],"examples":[{"caption":"Turn it on","command":"cheat_set_bow_reticle enable:true"},{"caption":"Turn it off","command":"cheat_set_bow_reticle enable:false"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_compass","desc":"Enables or disables the compass.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true or false"}],"examples":[{"caption":"Turn it on","command":"cheat_set_compass enable:true"},{"caption":"Turn it off","command":"cheat_set_compass enable:false"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_hud","desc":"Enables or disables the hud.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true or false"}],"examples":[{"caption":"Turn it on","command":"cheat_set_hud enable:true"},{"caption":"Turn it off","command":"cheat_set_hud enable:false"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_regen","desc":"Regenerates player health, stamina, hunger, or exhaust over time; pulses once per second.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true to enable state regen; false to disable"},{"name":"state","required":true,"type":"string","desc":"The state to regen: all, health, stamina, or exhaust."},{"name":"amount","required":false,"type":"number","desc":"The amount to regen every second. (Default 1)"}],"examples":[{"caption":"Adds 5 to all states every second.","command":"cheat_set_regen enable:true state:all amount:5"},{"caption":"Adds 5 to player's health every second.","command":"cheat_set_regen enable:true state:health amount:5"},{"caption":"Disable all state regeneration.","command":"cheat_set_regen enable:false state:all"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_skill_level","desc":"Sets player's skill to the given level.","args":[{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"level","required":true,"type":"number","desc":"The desired level for the given skill (max 30)."}],"examples":[{"caption":"Set player's lockpicking skill to level 20","command":"cheat_set_skill_level exact:lockpicking level:20"},{"caption":"Set player's bow skill to level 20","command":"cheat_set_skill_level exact:18 level:20"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_set_stat_level","desc":"Sets one of the player's stats to the given level.\nWARNING: A stat's level cannot lowered once set.","args":[{"name":"stat","required":true,"type":"string","desc":"One of: strength, agility, vitality, or speech."},{"name":"level","required":true,"type":"number","desc":"The desired level for the given stat (max 30)."}],"examples":[{"caption":"Set player's strength to level 20","command":"cheat_set_stat_level stat:strength level:20"},{"caption":"Set player's agility to level 5","command":"cheat_set_stat_level stat:agility level:5"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_set_state","desc":"Sets one of the player's states to the given value.\nValid states are: health, stamina, exhaust, hunger, and alcoholism.","args":[{"name":"state","required":true,"type":"string","desc":"The state to set."},{"name":"value","required":true,"type":"number","desc":"The number to assign to the given state."}],"examples":[{"caption":"Set health to 100 points","command":"cheat_set_state state:health value:100"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_set_statusbar","desc":"Enables or disables the statusbar.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true or false"}],"examples":[{"caption":"Turn it on","command":"cheat_set_statusbar enable:true"},{"caption":"Turn it off","command":"cheat_set_statusbar enable:false"}],"category":"Skills & Stats","source":"cheatmod"},{"name":"cheat_set_third_person","desc":"Enables or disables the third person view.","args":[{"name":"enable","required":true,"type":"boolean","desc":"true or false"}],"examples":[{"caption":"Turn it on","command":"cheat_set_third_person enable:true"},{"caption":"Turn it off","command":"cheat_set_third_person enable:false"}],"category":"Player & UI","source":"cheatmod"},{"name":"cheat_set_time","desc":"Moved time forward the given number of hours.","args":[{"name":"hours","required":true,"type":"number","desc":"The number of hours."}],"examples":[{"caption":"Move 5 hours forward","command":"cheat_set_time hours:5"}],"category":"World & Time","source":"cheatmod"},{"name":"cheat_set_time_speed","desc":"Set the game time speed as a ratio between real time and game time.\nA high ratio, like 1000, is faster. Default is 15.","args":[{"name":"ratio","required":true,"type":"number","desc":"The ratio between real time and game time. Default 15."}],"examples":[{"caption":"Speed up game time","command":"cheat_set_time_speed ratio:1000"}],"category":"World & Time","source":"cheatmod"},{"name":"cheat_set_weather","desc":"Sets the weather to the given weather ID.\n1 = cloudless_sunny 2 = cloudless_sunny_B 3 = semicloudy_clear\n4 = semicloudy_clear_B 5 = cloudy_no_rain 6 = cloudy_no_rain_B\n7 = cloudy_no_rain_C 8 = cloudy_frequent_showers 9 = cloudy_frequent_showers_B\n10 = foggy_drizzly_light 11 = foggy_drizzly 12 = foggy_drizzly_B\n13 = foggy_storm 14 = foggy_storm_B 15 = foggy_storm_no_rain\n16 = dream 17 = x_enviro_probe_burnin 18 = q_M01_M02_dreamy_moonlight\n19 = q_M02_dark_woods 20 = q_M10_Godwin_intermission 21 = q_M12_Apolena_night\n22 = q_M12_Trosky 23 = q_M31_Suchdol_arrival 24 = q_M44_Burning_Maleshov\n25 = q_M48_foggy_no_rain 26 = q_M50_desperate_defence 27 = q_S31_storm_no_rain\n28 = q_S50_Tonies 29 = q_dream 30 = x_UI_tod\n31 = summer_overcast 32 = summer_overcast_B 33 = summer_overcast_B_no_rain","args":[{"name":"id","required":true,"type":"number","desc":"The weather type ID."},{"name":"transition","required":false,"type":"number","desc":"The number of real world seconds to transition the weather. Default 30."}],"examples":[{"caption":"Set weather to foggy storm","command":"cheat_set_weather id:6"}],"category":"World & Time","source":"cheatmod"},{"name":"cheat_spawn","desc":"(Working in progress) Spawns entities. Enter the ID (number) from this list:\n1 = Boar 2 = Pig 3 = Bull\n4 = Cow 5 = Hare 6 = Horse\n7 = Men 8 = Women 9 = Red Doe\n10 = Roe Doe 11 = Red Stag 12 = Roe Buck\n13 = Sheep 14 = Ram 15 = Wild Dog\n16 = Dog 17 = Wolf","args":[{"name":"id","required":true,"type":"number","desc":"The spawn type ID."},{"name":"radius","required":false,"type":"number","desc":"The spawn radius around the player. Default 10."},{"name":"count","required":false,"type":"number","desc":"Number of things to spawn. Default 1."}],"examples":[{"caption":"Spawn 5 pigs within radius 3 of player","command":"cheat_spawn id:2 count:5 radius:3"}],"category":"NPCs","source":"cheatmod"},{"name":"cheat_stash","desc":"Opens your master stash by default. Can open any stash.","args":[{"name":"index","required":false,"type":"number","desc":"The stash index."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"type","required":false,"type":"number","desc":"The stash type: 1=master(default), 2=owned, 3=world"}],"examples":[{"caption":"Open your master stash","command":"cheat_stash"},{"caption":"Open your 1st owned stash","command":"cheat_stash type:2 index:1"},{"caption":"Open 1st world stash","command":"cheat_stash type:3 index:1"}],"category":"Items & Inventory","source":"cheatmod"},{"name":"cheat_target","desc":"shows information about your current target.","args":[],"examples":[],"category":"NPCs","source":"cheatmod"},{"name":"cheat_teleport","desc":"Teleports the player to the given (x,y,z) coordinates.\nSave and use immortality to avoid instant death when teleporting to unknow locations.\nSupports any format in x,y,z order. 1 2 3 | 1,2,3 | x:1 y:2 z:3","args":[],"examples":[{"caption":"Type to console","command":"cheat_teleport 2460 1995 112"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_teleport_npc_to_loc","desc":"Teleports one or more NPCs to the given coordinates. Use cheat_loc to get locations.","args":[{"name":"y","required":true,"type":"number","desc":"Y coordinate."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"z","required":true,"type":"number","desc":"Z coordinate."},{"name":"max","required":false,"type":"number","desc":"The maximum NPCs to teleport. Default 1."},{"name":"radius","required":false,"type":"number","desc":"The teleport radius around the x,y,z target. Default 1.5."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"x","required":true,"type":"number","desc":"X coordinate."}],"examples":[{"caption":"Teleport Bara to somewhere...","command":"cheat_teleport_npc_to_loc exact:Bara x:2344 y:2052 z:108"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_teleport_npc_to_player","desc":"Teleports one or more NPCs to the player's location.","args":[{"name":"max","required":false,"type":"number","desc":"The maximum NPCs to teleport. Default 1."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."},{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"radius","required":false,"type":"number","desc":"The teleport radius around the player. Default 1.5"}],"examples":[{"caption":"Teleport Bara to the player.","command":"cheat_teleport_npc_to_player exact:bara"},{"caption":"Teleport all bandits to the player.","command":"cheat_teleport_npc_to_player any:bandit radius:50"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_teleport_to_checkpoint","desc":"Teleport to your map checkpoint. Open your map and right click to place a checkpoint (red flag).","args":[],"examples":[],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_teleport_to_npc","desc":"Finds an NPC or list of NPCs and teleports to any of them.\nThis only works if the NPC has been loaded into the world.\nDefaults to last NPC in the list if no num argument received.","args":[{"name":"any","required":false,"type":"string","desc":"Matches fields partially."},{"name":"exact","required":false,"type":"string","desc":"Matches fields exactly."}],"examples":[{"caption":"Teleport to Bara","command":"cheat_teleport_to_npc exact:bara"}],"category":"Movement & Teleport","source":"cheatmod"},{"name":"cheat_wash_dirt_and_blood","desc":"Washes all blood and dirt from the player.","args":[],"examples":[{"caption":"Wash yourself and your horse","command":"cheat_wash_dirt_and_blood"}],"category":"Player & UI","source":"cheatmod"}]
\ No newline at end of file
diff --git a/src/data/items.json b/src/data/items.json
new file mode 100644
index 0000000..6e33f7d
--- /dev/null
+++ b/src/data/items.json
@@ -0,0 +1 @@
+[{"id":"000a72ec-f904-4e06-8c57-2eac8ab6ec73","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"0017bb74-7092-498e-98ac-d95af5998784","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"001d1fff-a2d1-4dd3-8340-71150610c91e","name":"Freshly picked bouquet","desc":"Fresh fragrant flowers are always a rarity, as is true love."},{"id":"0027df44-5f9c-4c92-9f81-a83ca124c4a8","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"00393f8f-6999-431a-b6ec-e8cfd32b04e1","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"003c862e-e1a9-480b-80b9-be6a2ccf055f","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"0067c708-9a85-4034-b9fb-94975eda6bf3","name":"Bathhouse bedchamber key","desc":"The key to the bedchamber shared by the bathwenches at Adam's bathhouse."},{"id":"0068874e-067a-474a-8af9-3b9a466b34d1","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"0077dfa2-b9be-4ae3-ae59-2803ba49dfcb","name":"Ornate Cuman bow","desc":"The Cuman riding bows are one of the lighter bows, easy to handle even from the horse's saddle. Their strength comes from the layering of different materials similar to better crossbows. This piece is exceptionally well crafted and therefore slightly stronger than normal."},{"id":"007907cf-aeb9-4dfa-ad3f-e0262893e423","name":"Reinforced bludgeon","desc":"A wooden bludgeon reinforced with blunt spikes that can quickly turn anyone's face to a bloody mash. A weapon like this can put a swift end to any tavern brawl or absent-minded traveller's life."},{"id":"009a655e-189d-4519-b437-ccc4b92be48d","name":"Bag of nails","desc":"Half a pound of metal nails. Theresa would be very happy."},{"id":"00b0039b-daa4-4f32-ac7f-69a6a2e0add8","name":"Dagger mace","desc":"A fine, agile weapon with a dangerous tip forged into the shape of a dagger. No pauper can get his hands on a weapon like this, unless he steals it."},{"id":"00b7ed62-a7bd-4269-acfa-8d852366579b","name":"Short gambeson","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"00ca0662-0569-4b69-8ff3-b9e396c49298","name":"Sketch – Racing horseshoes","desc":"A blacksmith's horseshoe sketch. Because every master had to start somehow."},{"id":"00ca5817-d30a-4afc-a9f0-72bfa3760a91","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"00cbcdca-e6ee-4fe6-bf87-2acd9f2b21aa","name":"The Art of the Sword I","desc":"A skill book on Sword combat."},{"id":"00cca9e3-8ef2-46db-8cbf-86ec51930919","name":"Duelling longsword","desc":"A perfectly balanced sword with a slender blade for true sword masters. The longsword is a noble weapon for swordfighting and a quick way to send any fool to the other side."},{"id":"00ec7e8d-4d4a-4365-97fe-5323d02bff49","name":"Smugglers's map","desc":"A map I found on a dead smuggler in the Kuttenberg underground."},{"id":"00f104b3-e95c-41ee-95a9-35d0331ac295","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"01076303-fcd7-4afa-b40f-de8509245819","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"01151dab-bb77-4524-be5f-3bf94b00575f","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"0116b44d-972d-43a1-8a59-dfe40b2ae916","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"012dee46-cfc3-4632-81ef-075c0bdaf0d4","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"0146b4e9-1698-4f02-a6c4-f50e2d659540","name":"Dried valerian","desc":"To be found on forest paths, in mires and peat bogs and everywhere that ground is damp."},{"id":"014e4e12-5574-4756-8460-2c5078a3285c","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"015e6ed5-47e0-4d48-add8-cd7a813ad5c1","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"0175e8ac-0777-4ad4-8bf9-dba35921dca8","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"018697e5-48cb-4f20-8789-2411f30647bf","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"01894921-14e0-4012-a3a6-5f1fcf01d2d2","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"018c1614-ddbf-4d9b-a797-40330be86c1c","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"018c7670-6fe6-4728-8c3d-d1b1becade1a","name":"Wreath","desc":"A festive beech leaf wreath is designed for big days, such as the wedding day."},{"id":"01b821a8-ff61-405f-bc31-35ae85c7c029","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"01d468fe-0fe8-4bb3-9bcc-e8abcbb9e9a4","name":"Ancient moonshine","desc":"A bottle of moonshine that's been hidden in the caves beneath Trosky since the castle was built. It's a once-in-a-lifetime experience."},{"id":"01fd6791-d9dc-46d3-8331-1ac65ee61dd5","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"0214df7d-7566-4238-a932-8f66b2478e59","name":"Lord Polner heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"02339c2a-75cb-490e-80de-7cbb8f4f3038","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"02383d59-97aa-408d-8d25-4ab31a9ecbda","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"0251611c-74a0-43c9-9ac8-28a44bf1655d","name":"Smoked perch","desc":"Perch or other fish are healthy, you should eat a lot of them. You can season fish with spices and coat it in flour. Then fry it in butter. Finally, sprinkle it generously with fried onion and serve with bread."},{"id":"025f546b-7465-4070-a57d-e84852adc184","name":"Smoked hare meat","desc":"Hare meat is tender, tasty and healthy. Only hares aren't very big, so it might not fill your belly."},{"id":"025ff2da-4a97-4217-bbe5-762c06c9f09a","name":"Ius regale montanorum II","desc":"An abridged copy of the Royal Mining Law on Courts."},{"id":"026f24e9-9836-47d8-ab42-bd8f9b2fc73e","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"0279ca13-5ab4-4bf1-ab29-76efbcb39a6e","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"0290b689-c01c-480f-b121-bed71ad1f5e0","name":"Eyebright","desc":"Grows on pastures and heaths and in all places where there is light enough, as well as wet ground."},{"id":"02af093e-411c-4369-b428-5502ffe277cc","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"02b0e86d-9ee0-4262-9d56-9bedaf578a54","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"02c1ed76-1a9b-4dfe-b4b2-65b4283afba2","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"02d9c556-6c40-4e5e-abab-48b2acc7287a","name":"Dried apple","desc":"Nothing special, but at least it will not spoil."},{"id":"02e23cb9-05aa-4aab-bbb8-4023a72e22f9","name":"Steel skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"02f819cf-58ce-435b-86ce-d18c988b7e40","name":"Rare book from Sedletz","desc":"A precious volume that the customs collector Matthew stole from the Sedletz monastery."},{"id":"03457360-206e-42fb-9bfc-41509b84faed","name":"Lords of Semine knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"03523eb8-1db0-4e14-b76c-14877cc8fae8","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"0364c89d-ac13-44ef-94d5-22b4047e7a26","name":"Short chainmail","desc":"Shortened chainmail shirt with long sleeves."},{"id":"036661e4-4556-4295-82f3-264e48cb2d49","name":"Guild Longsword","desc":"The guild longsword is a magnificent weapon crafted to celebrate the founding of the Kuttenberg swordfighting brotherhood. It was subsequently adopted as their emblem. The master swordsman, who leads the brotherhood, wears it at his side only on ceremonial occasions. Most of the time, it adorns the great hall of the Kuttenberg swordfighting house."},{"id":"036b0d6e-b2bb-4f7f-a185-0c379963f24a","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"0394d9ae-f96e-4814-9e8f-363a4e4ed282","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"039bc3a6-ac77-4e59-a1fa-37c0b4db3b67","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"03a8173e-fd4c-4913-a181-a3fe1b432200","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"03b6321d-4151-46cd-bdec-451ea7bfaabc","name":"Voulge","desc":"A polearm commonly used by foot soldiers. A virtuous knight would not touch such a weapon, but for a city patrol it is an invaluable tool for establishing order and respect in even the most crime-ridden places."},{"id":"03ecf014-f5c4-4eaa-bb64-4a993ada4f0b","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"04029519-5e1b-4a82-8e21-5754cf07ea00","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"04108c5b-1663-495d-8a05-bb423516775d","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"043136b0-da77-4ef5-b9bb-970c8daeb58f","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"04386d39-90fd-4de7-8da1-5f16a1b5bda6","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"043dbb89-6a87-4dd7-a6ee-ca8c094acc18","name":"Key to the Sedletz mortuary","desc":"A rusty key to the Sedletz mortuary."},{"id":"046c9155-8127-4247-831b-f1f6123a303e","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"047bb3c5-f12f-4c12-905b-6e3a3908ea60","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"048fff11-3356-4cef-867e-a15a8b79d6f2","name":"Sack of scrap","desc":"Lots of indispensable and undoubtedly necessary things in one place."},{"id":"04902d64-dac9-42cc-ba5b-7d0a899607b3","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"04bdbf37-e92d-45c5-b365-21983f4f13e0","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"04ca0525-2e33-42d1-bf62-1cb14dcc306a","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"04dc56da-9f2e-4741-93a5-aa6ec3a7cece","name":"Ginger","desc":"You won't find this exceedingly rare plant anywhere else but in the apothecary."},{"id":"04de6c7a-5fd1-4a0e-83d7-18d3218a250a","name":"Grimey skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"0502824d-a654-4471-9978-c1624860dde1","name":"Blacksmith's hammer","desc":"If a blacksmith doesn't have a hammer, the first thing he must forge is a hammer, but..."},{"id":"051bd377-e133-48e6-a12c-3a77e90de633","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"0531cc2d-29c2-42e6-a706-013e464de93f","name":"Recipe for Lion perfume","desc":"A strong but short-lasting perfume. Substantially increases charisma for short periods, but reduces charisma if combined with another perfume."},{"id":"0531f403-6772-44a6-939d-01a335c0b424","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"053cb9c9-202c-4d62-93ea-ef3acd34ad2e","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"0540e326-562b-41c7-9c8a-20ecce2aa17c","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"059893ea-3aef-48b3-b1ce-7eb3391fa028","name":"Training longsword","desc":"A wooden longsword that can bruise but not kill. For those who are serious about swordsmanship, this is an invaluable tool for practicing."},{"id":"05bef17b-ddeb-426d-aa53-52ff6d4f521e","name":"Poppy","desc":"It is found abundantly in fields and furrows as a bothersome weed."},{"id":"05f2b2cc-fd48-496e-ab0c-45160910dfde","name":"Commemorative coin","desc":"A dirty and worn-out grosch that someone hid for luck in the foundations of the building."},{"id":"060b67f3-1d01-4bc3-ad19-d51f39cb50bc","name":"Stinky hat","desc":"A hat that smells really bad. I don't know what happened to it at the celebration, and I don't want to know. I'll never put it on my head."},{"id":"0610877c-83f4-4fdb-95e9-c3edf813ba0b","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"0658b976-5789-4349-ad70-10042b84e870","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"06759b71-0814-4dbe-8306-003f21d724f5","name":"Roasted piglet","desc":"A piglet roasted on a spit. Fat helps when you get drunk."},{"id":"06787e37-2822-4180-9dda-6aa1a2d15707","name":"Apple","desc":"An apple a day keeps the apothecary away. It's not terribly nutritious, but stays fresh a long time."},{"id":"069c6b71-26c8-4275-8642-c796f6eea0ea","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"06be2a3d-4e05-4a78-85cd-33879cd669c9","name":"Herring","desc":"Herring can be smoked, roasted, pickled or boiled. It's very tasty, but one of the boniest fish there are."},{"id":"06c04ae4-ec63-4546-9725-4c0996770cb6","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"06d3757e-2882-4d75-99f9-1008a4e9d2d1","name":"Unbalanced die","desc":"A playing die someone tried to load to his advantage, but didn't do a very good job."},{"id":"07029524-8385-4926-8fee-035db316d770","name":"Dried dog meat","desc":"When the damned mutt just won't stop barking… Not for the faint of heart."},{"id":"070730ed-b35b-4bb1-82e9-0e75c1727ac6","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"0712d873-29bd-4fdd-8966-79aefb82c829","name":"Smoked cheese","desc":"Smoked cheese never gets old, whether it's made from cow or sheep milk."},{"id":"071caaed-731e-418b-93e8-551abc68409e","name":"Beggar's coat","desc":"A beggar's overcoat is all patch and almost falling apart. Still, in a pinch, it's better than nothing."},{"id":"071f0909-41e6-4420-8642-7b289328d6e7","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"072b4325-debc-40fc-bd69-db7823043ae8","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"0752b90c-9c7d-4831-90ef-43c8803ef118","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"07707994-2239-4bd4-8403-687a5317c6e9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"078561a0-be69-4f3d-b616-fa68cac0937e","name":"Thieves' notes","desc":"A parchment with drawings of thieves' symbols and explanatory notes."},{"id":"078e439b-1a5b-40ca-b009-d4abf6fcf810","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"079130b1-3367-48aa-937e-b5ecea0f750e","name":"Golden initial brooch","desc":"Try putting a beautiful brooch like this on a beggar's skirt and you'll be thrown straight into the jail. You could be king and no one would believe it belongs to you. Clothes make the man, as Lord Capon and I already know."},{"id":"07bb9f44-91f8-46fb-bed2-33bc8cd6a605","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"07c33eea-2ada-4bcb-be13-be7229ff7a85","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"07de606e-742b-4195-a8f1-6d19884d49bf","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"0802c111-75aa-4b9c-9a3f-f30bac55fbc7","name":"Skalitz axe","desc":"An axe made by the skilful hands of a blacksmith in Skalitz, it always seems to find its way to the one who drinks the most."},{"id":"081fc4a1-25e9-4492-8dc8-2d9d6668c07a","name":"Sharpshooter's bolt","desc":"A balanced bolt with good range and high accuracy."},{"id":"08250d1c-c62e-43b5-967c-17ccb4adf1b5","name":"Pitchfork","desc":"If nothing better is at hand, at least this will do. A simple but effective tool, which is as good for pitching hay as it is at stabbing the enemy where the sun don't shine."},{"id":"0825641d-c879-4776-9dbe-903607a8a35f","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"082e5192-fff9-4637-aa64-e4785bfe34f8","name":"Dried perch","desc":"Perch or other fish are healthy, you should eat a lot of them. You can season fish with spices and coat it in flour. Then fry it in butter. Finally, sprinkle it generously with fried onion and serve with bread."},{"id":"083f9cc6-fd41-4c5d-9f3a-cc63d7a1bc1b","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"085317a2-c9e8-4c05-8e74-78e271d15127","name":"Lambskin shoes","desc":"Shoes made of the finest lambskin leather, belonging to the wife of Captain Frenzl of Suchdol."},{"id":"085ca82f-2872-4eb7-b373-137d4a39d382","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"085e326b-5677-4ed6-86f2-114ea5217e5f","name":"Old tunic","desc":"A dark faded tunic. Once dressed, the wearer becomes invisible... but more likely, no one will want to look at him."},{"id":"0888180c-8f9c-4781-8eb1-b9f1300951e5","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"08a31823-a5c6-43f9-9b4b-27b8230a352f","name":"Gamekeeper's letter","desc":"A nostalgic letter from the former gamekeeper to Peter of Pisek."},{"id":"08bf183d-9090-4b59-bd37-65ccd23e9485","name":"Letter from Sigismund","desc":"A short personal letter from Sigismund."},{"id":"08c35fd2-9f7d-427e-bbfa-007d51773940","name":"Wine for Capon","desc":"Good red wine for Lord Capon. The road to Nebakov will be long and one's throat can dry up during the siege of the castle."},{"id":"08d82149-af01-48b6-9e72-b3f000da5e5f","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"08ddb424-8a79-41ff-b267-4d2153c57d2a","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"08eadfa5-3f62-4202-adb0-ad358bba2c95","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"08f5ee0a-ac03-423e-bc00-c388303cf0c9","name":"Longsword Absolver","desc":"A beautiful and at first sight excellent long sword. Such a weapon is guaranteed to attract a crowd of scoundrels."},{"id":"08f88060-ba4f-4b3d-a4ef-464ee18eb872","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"08fbab31-23e5-4bb2-a9b5-d29c2a6d1ffa","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"0904d567-9fb2-4833-acf4-80f38f5d49b1","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"0904f2e0-a446-4374-87b1-f5729ac109b9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0928e5d1-88ed-4adf-bf57-bc47a7ea5fd9","name":"Teachings of Peter Waldo","desc":"A skill book on Scholarship."},{"id":"0942ca27-0900-4244-a563-08531dc77389","name":"Short gambeson","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"0973959e-9c95-477a-bbfc-31de29a429e9","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"09779246-a93b-4f76-8a54-ef2b73c978f7","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"09ae6cbc-77d1-4686-801e-871b49440d7d","name":"Nuremberg gauntlets","desc":"A masterpiece from the best armoursmiths. Finger gloves of hourglass shape made with metal decoration and brass lining."},{"id":"09b21d63-7d4c-4837-91eb-131ea7fb4dda","name":"Jewish hat","desc":"A pointed yellow hat, also called a Judenhut, is a strange and hard to miss head covering for Jewish men."},{"id":"09ba8849-d20d-48f2-b94e-c36f10abcf41","name":"Scaled skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"09c8c27c-db50-4bdf-80a5-f107402bbba0","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"09cecf64-9b80-4a09-98c1-6bc08553d46a","name":"Products of Skilled Hands IV","desc":"A skill book on Craftsmanship. Can be read from level 15 of this skill."},{"id":"09d8e88a-32f7-435c-800f-ac9dfe07da7a","name":"The Kingdom of Bohemia","desc":"A brief history of the Kingdom of Bohemia."},{"id":"09e1aa1e-8896-4caf-b15e-da35a1e8e853","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"09e5c8ba-217d-4eb2-8aec-be169f0929b1","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"09f61f5c-e377-4c7c-a8cc-2732a6741050","name":"Tied jester's hose","desc":"These colourful trousers are worn by jesters and generally eccentric people. The higher quality suggests that whoever had them made was very serious about their insouciance."},{"id":"0a218fa9-58c7-4696-b5a3-7954e639dd9e","name":"Hand wrap","desc":"A hand wrap is a strip of cloth wrapped securely around the wrist, palm and base of the thumb. It helps to protect the hand and wrist against injuries caused by blows, serving both to keep the joints aligned and to compress and lend strength to the soft tissues of the hand during a fist strike."},{"id":"0a22cfc4-bc18-4066-876b-95fe7041376b","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"0a3b4b8b-bfef-4411-b122-bdc537fa125b","name":"Oakgall ink","desc":"Dark liquid made from crushed oak galls and gum Arabic, used for writing on parchment."},{"id":"0a46c96b-11fa-4627-8a89-786a4577a441","name":"Bell-shaped kettle hat","desc":"The most common shape of kettle hat, popular among the poor squires. It consists of two parts joined together by iron rivets, and therefore isn't as expensive as a helmet forged from a single piece."},{"id":"0a712525-e7b5-422c-8091-f541da6e6532","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0a747df3-03d0-43b4-93ef-f819ca46062d","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"0a8b54b4-93f5-4b21-bb1e-4bc94b9724b4","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"0a9f1379-9c65-4b7d-8d26-5639a67724d6","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"0aba49a1-bffe-460b-bcc0-781654d79ac1","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"0ae9eb7d-d57f-4f4b-8949-8f37c39f553e","name":"Brocade","desc":"You won't believe it, but brocade and broccoli have a common basis in the Latin word broccus - pointed. Why? Nobody really knows."},{"id":"0af9edaa-3393-46a3-b5d2-9a750828e428","name":"Sheep ear","desc":"An ear from a lost sheep, which the shepherd Smoliek needs as proof that he did not sell it."},{"id":"0b00b982-c5c3-4d1f-928d-f214d8dce166","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0b2fcda5-11d1-46c4-9336-67f433136fbf","name":"Rose hip wine","desc":"Grapes of wine growing on a rose bush! Tastes miraculously and increases your health!"},{"id":"0b354bb1-3741-4a78-8a73-0d668f273044","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"0b383bf7-a67b-4caa-9db8-501ed8d6aa9f","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"0b3f7f50-486d-4556-b0da-a0fc87f5feb9","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"0b4e244a-e3de-4502-afd0-fb7fe309629a","name":"Cream","desc":"Cream has always been a luxurious additive to sauces, whether sweet or savoury."},{"id":"0b54dfe4-7c6b-41bd-b6f5-6f079c98a14d","name":"Bandit's treasure map","desc":"I've seen this map before..."},{"id":"0b5b88e2-79d2-4913-95e3-42dc7391d770","name":"Painter's Guild knight shield","desc":"A guild shield. The three bowls of paint are a well-known symbol of the Kuttenberg painters who decorated knights' shields and painted the frescoes in the royal palace."},{"id":"0b9035cf-5e1d-46d7-8c89-e93c4d9c8da8","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"0bab0244-9806-4dd0-8e39-ef1f2331e96c","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"0bb591c2-663f-4e0c-9ca9-7cd893dc77da","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"0bb723a5-7a89-496b-b078-ea292654d75d","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"0bc213eb-e3a1-4e23-94c0-63b6ab90aa21","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"0bd0ee54-f7c8-4808-b620-da6d059640fe","name":"Couters","desc":"Simple elbow pads. You can suffer all sorts of injuries in combat, so it's best to protect yourself however you can."},{"id":"0bd28c1a-f069-4de7-81c9-ba9300807dff","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"0c057351-28f6-418a-95ab-66d0010dedbe","name":"Alchemist's key","desc":"A key I found on a weird alchemist hiding in the ruins of the Rabstein fortress."},{"id":"0c2685e0-c0b8-4fa4-aefd-b4112393fead","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"0c30d09e-54b9-4f96-9290-dfefcb48c6ab","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0c405844-5336-4c6a-ad73-5de85e4a88f9","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"0c6313b1-8fe6-4534-9f4d-24c3a3815c56","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"0c6cd742-18d7-496a-8b0b-f4735f27cbf1","name":"Tied jester's hose","desc":"These colourful trousers are worn by jesters and generally eccentric people. The higher quality suggests that whoever had them made was very serious about their insouciance."},{"id":"0c8f2af6-6e37-45de-8782-1f083dc526ee","name":"Key to the Cellar of All Saints' tavern.","desc":"The key to the cellar of the All Saints tavern."},{"id":"0cb47176-06c5-42a9-8d70-969e917eb999","name":"Drinking water","desc":"Drinking water in a skin."},{"id":"0cc2f8ae-d406-4260-819a-e7d6edc376c9","name":"Fechthalle key","desc":"Key to the Fechthalle."},{"id":"0cc4d53d-0c83-417a-8ffa-b8f1407ececd","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"0ce5a522-de1c-4bff-b227-a3720231c337","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0cec5237-aaca-4151-8630-51221c08dbb3","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"0cfe3456-8eee-4cf5-bbaf-b632e3879be7","name":"Wine","desc":"House wine."},{"id":"0d098cc5-4eb4-4ed6-84d2-a88d86084f8a","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"0d28fa2c-c50f-4adf-ae13-aa919091eeba","name":"Old hideout map","desc":"A map disclosing the location of the secret store of Innkeeper Beikovetz's former band of thieves."},{"id":"0d3f94ef-3c04-4f5c-9d7b-362c2c339ecc","name":"Stinking perfume","desc":"Its smell makes your toes curl."},{"id":"0d40173a-ec28-49c2-809e-d6b279295cfa","name":"Bonnet","desc":"The tied cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"0d40444a-c79e-4406-b71f-9574a856cef2","name":"Noble's pouch","desc":"Pouches can be worn on the belt and usually hold small items such as food, bandages or potions, which are then more quickly available when one wants to use them."},{"id":"0d40444a-c79e-4416-b71f-9574a856cef3","name":"Knight's pouch","desc":"Pouches can be worn on the belt and usually hold small items such as food, bandages or potions, which are then more quickly available when one wants to use them."},{"id":"0d40444a-c79e-4426-b71f-9574a856cef4","name":"Hunter's pouch","desc":"Pouches can be worn on the belt and usually hold small items such as food, bandages or potions, which are then more quickly available when one wants to use them."},{"id":"0d40444a-c79e-4436-b71f-9574a856cef5","name":"Wanderer's pouch","desc":"Pouches can be worn on the belt and usually hold small items such as food, bandages or potions, which are then more quickly available when one wants to use them."},{"id":"0d55463a-6a15-4aa1-9d8c-de476c287e6b","name":"Osina's key","desc":"Key to blacksmith Osina's chest."},{"id":"0d6c74d1-9639-4254-89e4-19947389db75","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"0d8460c0-1bda-4c59-b478-ab5432f786a1","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"0d8857b2-ec70-473f-8ea3-0938534d3a55","name":"Bonnet","desc":"The tied cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"0da81d98-1320-4130-a150-cf98e1f5d738","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"0dc9d98b-c59c-495d-b8e4-316448719026","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0e292c1d-5d8b-4030-9b47-9dfc0779b095","name":"Silver swap-out badge","desc":"After your throw, you can reroll a die of your choosing. Can be used once per game."},{"id":"0e2d88eb-da92-4115-b2a4-7ca33f9cd0f3","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"0e43c996-01ac-49f5-9389-bd458dbd01d9","name":"Golden cross ring","desc":"Such a precious ring is intended for noble lords and prelates. The poor man should be careful not to get a noose for selling it."},{"id":"0e5cbf6b-88be-4a4e-8b0d-3a6f04da9046","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"0e5e386e-98cd-46a3-bd46-b154c7e74151","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"0e62824f-8ef8-488b-a2b1-32a42133fa6d","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"0eb17a3c-2d68-4ef4-bf33-2228e3e90d8e","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"0ed110ff-ce58-4db6-a12a-fcb6d3b7781c","name":"Old Town of Prague knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"0ed4a6da-a99e-4dbc-932c-cb5291cd88b8","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"0ee3986e-258d-4283-8e60-c17cafe97827","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"0f0164d5-3746-4d07-a1ed-0f138225a6d9","name":"Horseman's pick","desc":"The horseman's pick is a light riding axe with a spike. Used correctly, it's a good friend in a pinch. Its sharp point can cut through armour, its blade through any shield."},{"id":"0f04ab4e-2b33-489d-8c4b-3f21a28c544b","name":"Brunswick's map I","desc":"A map leading to part of Brunswick's armour."},{"id":"0f182069-4dad-43b0-bba9-ed9f1ed8f209","name":"Hungarian pavese","desc":"A cavalry pavese with Hungarian symbols."},{"id":"0f22a6b2-8cca-4fed-adad-064463c328b5","name":"Scorched key","desc":"The key I found clutched tightly in the hand of a skeleton inside a burnt-out house in Opatowitz."},{"id":"0f2dcc59-3a10-493a-a85e-29d28bd924a1","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"0f41ad99-3307-47c8-a110-a7d9b4af75e8","name":"Guisarme","desc":"An excellent long weapon for infantry and anyone who prefers to keep their opponent at bay. The secret of its true power is hidden in the tight formation of the trained men who, with its help, can resist even a charge of knightly cavalry."},{"id":"0f49fa33-1985-4da3-8aae-f497df6f95ec","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"0f5672a7-eb5d-4e65-bbfe-c3c56a28f1c3","name":"Jewish hat","desc":"A pointed yellow hat, also called a Judenhut, is a strange and hard to miss head covering for Jewish men."},{"id":"0f70adb9-d36a-4f72-8367-a64454159a4f","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"0f710617-6a70-4684-a857-eec8b4046443","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"0f977322-6788-4453-9b81-b3f473a119b7","name":"Seneschal Ambrose's decree","desc":"An appointment decree of Knight Ambrose to the honourable role of the Seneschal of the Knights of the Cross with the Red Star with the seal of the Grand Master."},{"id":"0f9950c7-cf30-4ab3-a8f1-08d9e2bc1351","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"0fb6359f-f8b0-4ff1-b18c-7410d6f55604","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"0fc10781-6c9b-436a-92a1-2e1d97efc8f2","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"0fc917da-bb37-433f-909f-ab21d9857b47","name":"Plain laminar gauntlets","desc":"Simple arm and forearm armour composed of individual lamellae supplemented with elbow guards called couters."},{"id":"0fda3070-6b14-4fa9-bfd1-26da6924d32e","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"0fde39dd-83c7-430b-8955-5eb32ca83a41","name":"Kuttenberg oath book","desc":"One of the copies of the oath book from the Kuttenberg town hall. It records the oaths of the councillors and town officials."},{"id":"0fffb172-2183-4545-bbdb-01e04a3ff32f","name":"Village hazel bow","desc":"A homemade weak bow made of hazel wood. It's not very strong or accurate, but it'll do for a rabbit or a fox."},{"id":"100b9146-1c41-4136-9991-ff80983f1955","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"10129c55-6481-4e24-9645-6424562322d0","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"101b033e-ce62-48ea-846a-8c38b3ef5f6c","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"108b2f35-bfbb-4e20-bf5f-d0f4c59047ac","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"10a24b9c-3843-4ba3-8c98-b6b566b0be75","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"10a66bf0-280e-4ca8-9ca5-f3316be0e2cc","name":"Marathon IV","desc":"A skill book on Vitality. Can be read from level 15 of this skill."},{"id":"10badb5a-8249-4649-9c3e-374b5f8224ff","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"10d15447-8f9b-462f-9cb5-8ffad0d9cadd","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"10d23296-1567-4a96-a56b-b7c2a75ed037","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"10e02ed7-76e0-4e73-9767-1f67e455bb02","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"10ebc91c-0b65-4997-8a2d-7f57e6105d38","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"10ee3680-48cb-4f21-8349-590e531062e1","name":"Silver brooch","desc":"Why do people succumb to vanity? Man should think more of his salvation than of earthly goods. Especially when there are people who need them more than he does."},{"id":"10ee7741-d121-4d3a-b342-d72920d6d90e","name":"Smoked venison","desc":"Well smoked venison tastes great, you just need to use the right kind of wood."},{"id":"10f9a49f-07d0-4873-88d0-54d2cd5567f1","name":"Suchdol pavese","desc":"A riding pavese with the symbol of Lord Pisek, owner of the Suchdol fortress."},{"id":"10f9f683-9007-4b2b-a62c-e710ce5506ba","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"10ff6d35-8c14-4871-8656-bdc3476d8b12","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"1113ab25-a055-478e-b0c9-42b5d0cb2c6d","name":"Rowel spurs","desc":"Riding spurs, also called rowels, help control the horse when riding fast or in the heat of battle. Their purpose is of course not to torment the animal, the individual spikes are therefore blunted."},{"id":"112b1baa-8fbc-4465-a68d-a64437edab52","name":"Ambrose's cross","desc":"A small wooden cross carved by the old hermit Ambrose."},{"id":"1149024d-72f5-405d-8edb-041d58b59f74","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"11490ea5-ef27-4f8f-a4c9-2b94baf753de","name":"Emmeram's hunting sword","desc":"An excellent hunting sword of the master butcher Emmeram from Kuttenberg."},{"id":"114ab415-b407-492b-8a1c-8737d6e0c2c9","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"11596dff-882e-4c6b-8281-08ececcf12f8","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"11669f9a-1f44-46ea-b342-e8443ac87fe7","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"11834cfd-bd67-41d8-8fe7-503f5076fa1d","name":"Mathematician's die","desc":"A die loaded based on the work of a forgotten mathematician. It may be better suited to solving equations than playing dice."},{"id":"11860e3a-0c7d-431d-a978-b49db53fbd95","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"118e01d4-d0e8-4e0b-a53d-bcf3c8c02f06","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"119890f6-2063-4d53-9b39-52f015ed36ff","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"11998443-a033-4f6d-b982-bd6a7f8e676a","name":"Old key","desc":"A key I found lying around near the closed mine. And what could it be for?"},{"id":"11a20e87-6b4b-4894-99c5-fcb19178ee81","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"11b0556d-8439-473b-b8da-02ec3f2dd176","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"11b0fbff-28b9-409c-81ee-c9b5eda50921","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"11c0f7a7-2472-4852-8529-119d07142af7","name":"Butcher guild knight shield","desc":"A guild shield. The axe was awarded to the czech butchers by king John of Luxembourg, because they opened the gates of Prague for him with their axes. From there, the Kuttenberg Butchers' Guild also adopted this symbol."},{"id":"11cc948c-90e1-4345-bbec-4bd10d3bf120","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"11ce7d41-fce4-41f5-9310-e3f83bbbd406","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"11e43918-e604-4ae8-b010-76aadae3865b","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"1208a028-f5c6-4cba-9aed-18fc31c63a70","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"1215e215-5daa-4c51-ae33-f72e9161f4b2","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"121c90c7-3543-4078-9360-94977d2e16ec","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"12374aa6-5a8b-4486-8d53-8046b8220b4b","name":"Vojta's scarf","desc":"This yellowed rag which smells of sweat and fish, is probably used by Vojta as a scarf."},{"id":"123f4340-b20d-4ea4-ab12-08c043906520","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"125ce7ce-2289-4419-a8cc-a4675bfb83c1","name":"Pinot Grigio 1401","desc":"It has a nice golden colour, but the taste is not all that impressive. It's more of an average vintage."},{"id":"125d09b0-5b1f-4408-a5c7-0a56d0394f11","name":"Book on the nobility of the bow","desc":"A book by the noble Ctirad of Loretz on why the crossbow will never replace the bow. Can be read from level 10 of the Marksmanship skill."},{"id":"1291b8ef-0300-4c77-adb3-2a29a13902b6","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"1296f34d-990b-48ae-aa80-c62d1b2d20fd","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"1299d389-8137-4cc8-97df-da430215d876","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"12acf1bc-4ff6-457a-abd3-eb2c7174e530","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"12aefcd3-b164-40e8-93cc-222e43cfafb5","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"12af8d23-d6ae-4da2-b109-0394d04dcf50","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"12bb04d8-ddbe-43a4-a63f-88670cfaa4e3","name":"Mended cuirass","desc":"This cuirass has been in a fight before... and not for the first time. Battered, full of patches, but still a piece of metal that can make the difference between life and death for an unheralded warrior."},{"id":"12cfcce4-a268-4cb6-a2f7-c2f39c74c84b","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"12f62ab4-1b4e-4c76-8293-73bbb227b027","name":"Monastic Rule of Saint Benedict I","desc":"On monastic obedience and the monastic abbot."},{"id":"12ffb66e-8ea8-4da3-bd27-cbc6796f4064","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"13123522-c6b1-44aa-93ac-b7ed3292238b","name":"Soaked map","desc":"A soaked map, completely illegible. This won't be leading me anywhere."},{"id":"132ce312-8dd2-4e49-aa44-b26de7ed281b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1338251d-8367-4d8d-acd0-37fafc204146","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"134e57ae-b932-4bb3-9bd8-77adc66935e0","name":"Short butcher apron","desc":"A short linen tunic complete with a butcher's apron."},{"id":"135a64e5-8958-42f4-bbe8-16e6744fc20b","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"1370ebdf-d2a6-44fb-9c57-dd3ccee5315b","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"13782e2d-2a40-4e5d-9384-5abf5111d565","name":"Sketch – Carpenter's axe","desc":"Heavy work axe used by carpenters for working beams. If there's no better weapon at hand, it can become a tool of revenge."},{"id":"138b840c-97b9-4a23-a867-d4c429833f36","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1394d752-cbf2-4586-b7eb-27ed0b57169d","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"13ba7468-11a2-483d-8cb9-25ce36a2d228","name":"Enhanced wounding arrow","desc":"A well-balanced arrow with a serrated arrowhead to increase damage and bleeding."},{"id":"13e26797-12c0-4c82-a866-10a2f3246fd9","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"13e6ae67-8533-4722-843a-7a114d2cdeee","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"13ec7013-d6ab-4b54-b50d-c44e6ae245a4","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"13eccab3-ee46-40e4-b0d1-73f3acde338c","name":"Hand wrap","desc":"A hand wrap is a strip of cloth wrapped securely around the wrist, palm and base of the thumb. It helps to protect the hand and wrist against injuries caused by blows, serving both to keep the joints aligned and to compress and lend strength to the soft tissues of the hand during a fist strike."},{"id":"13f1ca12-2e81-48ad-9122-cc090e9028fe","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"13fa1420-cf40-4909-b8fe-83c286d428b2","name":"The Rule of St. Dismas IV","desc":"A skill book on Thievery. Can be read from level 15 of this skill."},{"id":"140fae91-d3dd-44e7-b51f-7b335644631c","name":"Silver warlord's badge","desc":"Using this badge will grant you 50% more points this round. Can be used once per game."},{"id":"1414462b-7ede-4d6d-ad85-8772c26f969f","name":"On the Adamites or Naked Worshippers","desc":"About the Adamite sect and their unpleasant end."},{"id":"1430e4db-40cd-4f0a-b99a-ad9b8d3d6c41","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"144a106b-b3e9-4ab1-94c0-f8aa88f9b04f","name":"Real documents about Anna of Waldstein","desc":"Documents proving the questionable dealings of Lady Anna of Waldstein."},{"id":"14503d71-7b97-42a2-af4e-90dbc62b5fe7","name":"Deer rump","desc":"Delicious hind leg meat. The topside cut makes for the best roast. Dice the rest and boil it in salted water. Now to make a good sauce to go with it, crumble some bread in beer, add a little vinegar and cook it with some pepper and cloves, if you have them. Pour the sauce on top of the cooked venison and garnish with baked apples. This is how Severin the Younger advises deer to be prepared."},{"id":"1461d29c-a474-4645-bf53-32f3c1fe3113","name":"On Saint Wilgefortis","desc":"On Saint Wilgefortis or Starosta."},{"id":"1472bcff-e6c8-41f2-8fa4-658410464238","name":"Smoked beef tenderloin","desc":"Great meat suitable for many dishes. It is best served with a white cream sauce."},{"id":"1493ef2a-10a3-45f9-9352-1e514c9dbe26","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"14a1d2a9-95e0-48b0-bf16-8d41ef6a1088","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"14ca6fec-7c82-40e0-9684-cf8c414293b3","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"1515a3a1-135b-4201-a32d-e2366c6de0c8","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"15189439-5098-4a3a-bab4-18b42dfd936c","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"153274cd-23a0-4ed1-922f-93e266466d71","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"15399ff2-44e1-49df-a4e3-0de8410001e9","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"153ff47b-7b60-4582-b5fb-b373ecdf36bc","name":"Chamomile decoction recipe","desc":"Sleep heals you faster and if good quality, Energy replenishes faster while sleeping."},{"id":"154a8471-b753-4f84-ac5f-d989c8532d02","name":"Bacon","desc":"Fine smoked bacon, filling and pleasing."},{"id":"155ae461-886c-4bd2-9cef-faa6916992e9","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"15674da0-110f-4a95-8adb-8e87696a16d8","name":"Janosh's sausage","desc":"Janosh's homemade sausage, thoroughly smoked and properly seasoned. You don't want to know what it's made of."},{"id":"156a20c9-d2ff-48e3-a9cb-e3e106139042","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"156e3517-4dcb-49ed-886e-e18dd36cefa4","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"15756be8-18d6-41e0-9338-c5039d1d0548","name":"On the Cumans","desc":"A book on the Cumans."},{"id":"158f44ac-7078-4deb-97a1-fad69075e483","name":"Gemstone ring","desc":"Such a precious ring is intended for noble lords and prelates. A beggar should be careful not to get a noose for selling it."},{"id":"1591c971-af3b-426e-b8de-6737ad200d90","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"15a4fe3a-fdbc-458b-b145-fb027e2656bc","name":"Sketch – Falchion","desc":"An older cousin of the broad-bladed sword. A somewhat outdated weapon for some, perhaps, but there's nothing like tried and tested methods on the battlefield."},{"id":"15cefa3b-76ca-44b2-ac8a-3ec615916dfc","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"15ee3b51-c242-4c28-bcc9-e4418f9677f0","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"15f1b368-8111-4dee-8583-18196f0b4199","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"15f5c276-12c5-4a84-9708-bc78102da03f","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"15f9396e-fe7b-4018-8d44-f0eec3b76035","name":"Straw hat with ribbon","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. Decorated with a ribbon, such headgear certainly looks more cheerful."},{"id":"164d4041-47b5-4e2b-bc7d-e5bacbc1bba6","name":"The Art of Demosthenes III","desc":"A skill book on Speech. Can be read from level 10 of this skill."},{"id":"1657b964-9a6b-4e74-af81-7fe06d50cf12","name":"Hidden valuables","desc":"Valuables that someone from Bohunowitz hid in a pigeon coop."},{"id":"166273f0-9301-4a5c-9708-f4f93959a747","name":"Treasure Map - Third","desc":"It leads a man to what he most desires. That is, if he most desires treasure…"},{"id":"166b4c7b-5e17-48db-bf0d-02f24eacdcbf","name":"Piercing bolt","desc":"A bolt capable of piercing a variety of armours."},{"id":"167eb312-0e9d-4c2f-8ce3-56c32f5a84cb","name":"Armourer's kit","desc":"A set of tools for repairing metal parts of armour, chainmail and quilted armour pieces. Includes a hammer, pliers, twine and some replacement chainmail and oil."},{"id":"168579ba-c191-41ba-80e4-ed711a328ec9","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"169749ba-3c35-4d4a-a8a8-2dcf4488477c","name":"Riding boots - high","desc":"Thigh-length boots that protect the horseman's legs against chaffing. Putting them on and taking them off is a rather lengthy process, so they're worn more by folks who tend to spend the whole day in the saddle, such as messengers and grooms."},{"id":"16977d23-7510-48e6-82e6-a9fda39e52ff","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"169dee2d-dbd9-4d2e-9009-b0d64b3f49ce","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"16cd3a83-a291-4c80-98c8-c3152c42ad6f","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"16eee683-2fc5-4425-98c5-15f61e363d9a","name":"Cuman helmet with a mask","desc":"A foreign pointed helmet with a visor in the form of an iron mask. Cumans are said to have adopted it from wild nomads called Kipchaks, who are said to drink mare's milk from buffalo horns and live far out on the eastern steppes. The face with moustache perhaps represents some mythical progenitor of all these nomads."},{"id":"17033e0e-4164-42d8-9178-7b5aad65aa38","name":"Bag of Holy nails","desc":"This bag allegedly contains nails from Saint Peter's cross, and perhaps even Christ's!"},{"id":"17225693-9644-4d80-8716-1864a788179c","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"173db335-8991-46fc-b7a1-7eeaaaf34c96","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"1750360e-1bfe-4798-bd45-1d490542252a","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"1753a78f-1f1b-4cc9-8d4c-8d2d6f6bbee4","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"1756d9ba-257e-438e-b060-cc79bd60805f","name":"Poacher's hunting knife","desc":"A hunting knife, which the poacher from Slatego had in his possession. Evidence for the huntsman. A dog may be able to sniff out its owner's encampment."},{"id":"17574afd-5169-4f9a-9401-e1e50bc596c2","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"1769a429-c600-464a-bd73-2aee8f54a1e9","name":"Short butcher apron","desc":"A short linen tunic complete with a butcher's apron."},{"id":"177a03eb-3592-4454-af1d-7501967b5969","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"177e55fc-31bc-40dc-b399-899b478093d0","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"1783439d-8dbf-41d5-b075-7ccb09a18541","name":"Kyiv helmet","desc":"A foreign helmet of a peculiar shape originating from the eastern steppes, worn by the Cuman horsemen. It is feared because it is associated with raiders who have burned many villages."},{"id":"1786879c-080f-4dcc-b5b2-3ef1dd29d5e4","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"178b3de9-24dd-403d-a1dc-354a7b77c494","name":"Innkeeper Havel's ledgers","desc":"Records of movements, purchases and sales of goods at The Emperor Charles tavern."},{"id":"17bb0339-31eb-4967-8a09-e3389d31958b","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"17ce237d-232c-4ada-b2c9-46926ca9eb6a","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"17ea77ae-d40b-42a1-8cbe-578a43e3687b","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"17f0d18c-c55c-4570-8710-410fe0238792","name":"Nuremberg gauntlets","desc":"A masterpiece from the best armoursmiths. Finger gloves of hourglass shape made with metal decoration and brass lining."},{"id":"18101147-8e52-41fb-893c-e7fb2d4b5fbe","name":"Poacher's gear from Lower Semine","desc":"Equipment of the poachers from their camp in Lower Semine. Evidence for the huntsman."},{"id":"1820d8e5-f3a7-44e0-883f-541f1df673c9","name":"Wreath","desc":"Wreath of meadow flowers. It looks nice, it smells nice, but it doesn't last very long. Plus, it can attract bees."},{"id":"18267b97-c7da-4d25-9726-1b5677cb9748","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"1839a31c-975c-47b5-9ab9-6e9ff074d22a","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"184a3ab8-9441-4dc0-9f75-a2aea7ed3eaf","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"184a4f59-cb07-41c8-8423-68014a0411b3","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"184bcee5-bacd-4c9e-a11c-afa6e3848680","name":"Thunderstone","desc":"A finely polished stone of dark colour, endowed with magical powers. It's said to bring good luck and protect from all evil."},{"id":"18694c4b-2c87-4e11-8790-5ffdc4df322e","name":"Kuttenberg bread","desc":"Stay well fed, eat Kuttenberg bread."},{"id":"186cba50-5166-4b61-bf01-dbb8cb159590","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"187e8643-d278-46b0-a1fc-75a13aedf85c","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"189d2f3f-849b-4c91-a0e4-361f1c8bdf76","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"18f3756f-9d76-48a4-afa5-72f4ccc0e16b","name":"Milanese plate leg armour","desc":"Leg protection consisting of forged pieces of sheet metal. The front consists of plates equipped with a dorsal edge, so the armour is harder to cut through and will even endure a crushing blow."},{"id":"18ff9093-2cc4-4ab3-9f34-7cb0dd7cd30a","name":"Chicken","desc":"A dead chicken… it looks a little reproachful. To soothe your hunger and lift your spirits with a good meal, roast a young chicken. Then boil some bread in red wine with parsley, sage, mint and lavender. Strain this sauce through a cloth and pour it over the roasted chicken. Finally, sprinkle it lightly with cinnamon or ginger."},{"id":"192733fd-accf-41bc-bb8e-7854d3ba3443","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"1949ae9e-e865-4539-9cc3-0482b1403c34","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"195dd5c2-7608-42c2-93d6-962bc17883cb","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"19644921-6bb7-4342-be8d-dc235362d20b","name":"Smoked salami","desc":"Spicy smoked salami. It smells great and tastes even better."},{"id":"196aecc2-6598-4acc-ad28-09094c727dfc","name":"Knight's contract","desc":"The contract between the Knight Taras Mura and Father Richard from Old Kutna."},{"id":"1972ac07-f8e1-41f0-9fb4-cf115b0088ec","name":"Noble's plate legs","desc":"A masterpiece of plate armour decorated with brass lining. The forged plates are further hardened to achieve higher durability, while the metal sheet could be weaker and therefore lighter overall. The plate legs are completed with foot protection called sabatons."},{"id":"197ade8a-53ff-4946-b648-ce84bb36dfd5","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"198512c9-aea3-4536-83ad-b15b481fddae","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"19889cae-7217-4645-8273-dc60ecd0dede","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"19c2e221-91b9-439a-9db5-e56d867e1e6b","name":"Istvan's chaperon","desc":"A black chaperon whose owner I sent straight to Hell. Someone left it on the spot Istvan landed."},{"id":"19ef3d80-59c4-4f20-bee6-d915aaabefb4","name":"Sack of flour","desc":""},{"id":"1a276bac-af16-4349-87c3-edbb06b9779d","name":"Florian's unfinished letter","desc":"Knight Florian's unfinished poem for an unknown lady."},{"id":"1a2ed049-20e8-4f2d-b84f-6bc22fdbc180","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"1a41c9d5-a1c3-49c7-8210-7744f720e8de","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"1a46e7ae-19ce-49c5-828b-81c6af9ba1c9","name":"Mail coif","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"1a528c99-8dc5-4866-b7e0-b7e395fa276c","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"1a7b20dd-7e52-4030-97e0-f9615f88afbd","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"1a98940f-9da0-44f5-8061-2a78cf6ec742","name":"Knights of the Cross hood","desc":"A hood with the emblem of the famous Order of the Knights of the cross."},{"id":"1aadf1e5-c37b-41c3-bc65-354187022c91","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"1abe5629-ffc4-4693-9cd7-700ea75e3386","name":"Black arrow","desc":"An arrow with black crow feathers."},{"id":"1ad779a6-017a-42eb-8374-7636953fc684","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"1ad779b6-1156-48c5-b5ea-b377cbcbd5ad","name":"Dried deer ribs","desc":"Best to make a roast out of it and serve it with a fruit sauce. However, make sure to bake it just long enough and be careful not to dry out the meat too much."},{"id":"1adb3581-e7bc-4301-90c6-8d75ed8de1a9","name":"Lords of Holohlavy heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"1b078cf2-f9fe-471e-9826-8f910e1fd2b8","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"1b1345f6-75c0-4477-b6d7-b9d73ec9d9f0","name":"Hugo's die","desc":"A die of the most loyal regular at the Hole. It bears his likeness."},{"id":"1b1d2b1b-8290-4b8f-befd-1f39ff57b9fa","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"1b214a97-8aa8-4892-bcd0-461b12b34258","name":"Milanese cuirass","desc":"An excellent piece from the Italian armoursmiths. Thanks to the perfect tempering and fine surface cannulation, the sheet metal used can be much lighter and yet just as durable. The cuirass is composed of two parts that fit together perfectly to form an impenetrable shell on the knight's body."},{"id":"1b405c7e-5c38-48f2-b1c2-9f7c30f0891d","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"1b4b6487-72cc-409e-9296-692b53e0429e","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"1b510403-8771-48a8-a5da-0e91dff19690","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1b735ceb-6884-4d3f-a785-d0fddbd31653","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"1b76a3a7-6e3f-4d52-a060-be34de3ac516","name":"Lost Charter for King Sigismund","desc":"A letter sent by the Praguers to King Sigismund containing their agreement."},{"id":"1b80b30a-a330-46c7-8fe9-aeee8abf50b3","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"1b829756-e8a1-44bc-8d7d-5d33152bc16c","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"1b94661c-7de9-4a15-a870-110eb771ac8d","name":"Milanese plate leg armour","desc":"Leg protection consisting of forged pieces of sheet metal. The front consists of plates equipped with a dorsal edge, so the armour is harder to cut through and will even endure a crushing blow."},{"id":"1bb9643b-36ef-4b7b-880e-8c0bc14b471e","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"1bbaa5e7-4ac0-49e8-ae26-b8f2b524ce75","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"1bd8d5d2-f57e-48c8-8f82-df7ae1ea90d3","name":"Lucky die","desc":"When fortune smiles on you, smile back. Otherwise you'll look suspicious"},{"id":"1bd9d159-859e-4c3d-b812-16ead6f38da8","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"1bf29da7-0bfc-4d1a-b968-df298e4bc0ac","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"1c0572da-4b5a-40ba-b23f-b8baedbd03a7","name":"Plate knight gauntlets","desc":"Better hand protection is a must in combat because as they say: hands go first in any fight."},{"id":"1c1379fb-518c-485b-8fc5-8868939eba1e","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"1c1a6910-7732-4672-9918-60b99dba9bfb","name":"Mended cuirass","desc":"This cuirass has been in a fight before... and not for the first time. Battered, full of patches, but still a piece of metal that can make the difference between life and death for an unheralded warrior."},{"id":"1c1c88ca-61dd-4b64-965a-fd1e9a840364","name":"Wagoner's die","desc":"According to legend, this die belonged to the famous Roman charioteer Arnuldus, whose tactics consisted of tiring his opponents or lulling them to sleep."},{"id":"1c22229e-9703-4e23-a552-9d13f74ada02","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"1c27cedf-b38a-421b-8fd1-ab8d460e6500","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"1c2da556-488b-4a86-b22a-c42acb299938","name":"Watermelon","desc":"Watermelon, the biggest berry to be found in the Holy Roman Empire."},{"id":"1c33d269-a76c-49f0-a15e-ba0f7a928c1b","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"1c393063-3db3-43f3-8b8e-56c91ff8c33c","name":"Zdena's ring","desc":"A ring I found on the deceased Zdena. I don't recognise the family crest on it."},{"id":"1c6a9255-7dac-4dac-b3f2-88eaffd5a28b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1c7c82d9-ba66-4702-8988-e018df1d6200","name":"Footpad's bow","desc":"A footpad's bow is shrouded in mystery, but there is no doubt that it is intended for hunting villagers and less well-equipped merchants."},{"id":"1c8d0891-f61c-4cd6-b01d-b13b2163328e","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"1c933935-d4b3-4884-8228-a4cde0c3a96d","name":"Reinforced sword guard","desc":"A cross guard, also known as quillon. It serves to protect the swordsman's hands from the opponent's blade. It can also be used to execute a grappling hold or strike to an unprotected face. In sword making, it is put on the blade's tail before the hilt is made and the pommel is put on. In cheap weapons made by poor blacksmiths, it will loosen over time and begin to clink unpleasantly."},{"id":"1c945f16-049b-4b36-a925-d32ab7939861","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"1ca7f8e0-9077-4632-bc4e-b69ff1a0a2f0","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"1cb1cdc2-461a-4bf3-aab0-a180bffcc1fe","name":"Gold ring from Margaret","desc":"A gold ring that Margaret gave me as a pledge. It originally belonged to her mother."},{"id":"1cb9565a-d5a2-4a0d-bf4d-2803b001eb8d","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"1cbf71eb-e915-42a1-97af-2366386257a3","name":"Women's brooche","desc":"It's the way of the world that clothes and especially jewellery make the woman. And how many slaps have been given cause of women's pride and men's vanity!"},{"id":"1cc196ef-a1a1-4211-9bd5-0be66bb10aee","name":"Wide straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"1cc43615-171a-4954-acaf-305e8fa5a2a0","name":"How Good Mead is Brewed","desc":"How Good Mead is Brewed in home conditions"},{"id":"1cee6060-b595-4f6f-8fca-83a50f373e0b","name":"Bavarian plate legs","desc":"A leg protection consisting of forged plates of sheet metal suitably fit together. Such armour protects the warrior's entire leg, but its weight depends on the craftsmanship of the maker."},{"id":"1cee8ae5-b821-4a8b-9ad3-f751f7b96b10","name":"Glass container","desc":"A strange little bottle made of coloured glass, the kind that is definitely not made anywhere nowadays. It's probably a very old object, but it's hard to say where it came from."},{"id":"1cf2608b-4b87-4270-81eb-1f918779e25a","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"1cfc1ce1-c2f3-402f-b49d-5457bf510091","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"1d04fc79-0a9d-4dac-b052-d2af9377c18d","name":"Recipe for Mintha perfume","desc":"A weak but long-lasting perfume. Slightly increases Charisma for a long period, but reduces Charisma if used with another perfume."},{"id":"1d171c5b-a0c9-49bc-b176-2acd80f1ee90","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"1d308af8-c7d5-4738-8a08-972e4c36c067","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"1d3ae118-9349-43f8-a3f0-cc60909b71e3","name":"Wide straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"1d3b4af6-a261-438d-a95f-b1617dc62015","name":"Life in the Saddle IV","desc":"A skill book on Horsemanship. Can be read from level 15 of this skill."},{"id":"1d469cea-cae2-4e98-8260-64cd752eb699","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"1d5c770a-4e82-4ec1-913a-ebdd9a05477b","name":"Smoked pork tenderloin","desc":"Here is a Hungarian way of cooking pork. Pound the meat, put it in water and let it rest overnight. Take it out of water, salt it and sear it. Fry plenty of onion, add wine, vinegar, juniper, caraway, cloves, pepper, ginger and a little nutmeg too. Bring everything to boil, add the meat, keep the lid on and cook over a low heat for a long time, while basting with wine."},{"id":"1d6621e0-f9a8-4dc7-969e-20fb00d90408","name":"Prague letter to King Sigismund","desc":"A letter sent by the Praguers to King Sigismund containing their agreement."},{"id":"1d7d89df-da5c-418c-8749-11b758064ca0","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"1d8b9715-0d98-411b-80bf-548ce87a071a","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"1d8ffd19-af12-4bd7-8afd-43b9b0348ade","name":"Dried chicken","desc":"If you find out someone killed all the chickens in your backyard, the only thing you can do is make jerky."},{"id":"1d9f4366-e6c4-494c-898f-399b792a5a4c","name":"Forgotten contract","desc":"An important-looking document, signed by a number of people, yet someone simply left it here."},{"id":"1da8f314-6441-4afc-9a4a-f516067e9613","name":"Von Bergow knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"1dd5fd65-704f-4175-a57d-86e1f622a451","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"1df1ee61-0b44-4efd-bfa4-37efbcd4be42","name":"Roe deer meat","desc":"Good red meat, not as prized as deer, but not everyone can tell them apart. Prepare it the same way you would any other venison. If you have both deer and roe meat, cut up the roe meat into sauce and cook it, roast the deer meat on the fire."},{"id":"1e1d5953-986f-4fd1-8d3b-db2690dddd64","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"1e2a3a55-b1b8-43c6-9ad2-886da2808afa","name":"Spearman Training IV","desc":"A skill book on Polearm combat. Can be read from level 15 of this skill."},{"id":"1e36c17d-5e2b-4ed1-aa76-0817a4ae192c","name":"Parchment with drawings","desc":"A crumpled parchment with strange symbols drawn on it."},{"id":"1e3c6cd2-623c-439a-a53f-f3d3f6cc29ac","name":"Sketch – Work axe","desc":"Lightweight axe designed for work in the woods or on the farm. An invaluable tool for all woodcutters, but also for angry people who don't have a better weapon at hand."},{"id":"1e420753-53eb-4b3e-a05c-c99a46520ea5","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1e528899-15f8-4b00-a60a-16aaffe5df5d","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"1e74d5d8-87dc-4299-bfbd-05b58bf76824","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"1e803030-4c52-4caa-b4de-d8bce3a888d7","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"1eab8a90-7ca5-4aba-ace2-547de78086f4","name":"Magdeburg plate arms","desc":"Protection of the whole arm and forearm by precisely fitted metal plates. The armour is decorated with brass and artistic ornaments."},{"id":"1ed07dd2-9bb4-4754-85af-db7a1b93ebce","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"1ed55cb8-80bd-4190-981b-146dc916d434","name":"Marksman's bolt","desc":"A bolt with great range and high accuracy."},{"id":"1ee30641-d703-4556-80d9-db9ece7cbfd3","name":"Gold doppelganger badge","desc":"Using this badge will double the point value of your last throw. Can be use three times per game."},{"id":"1ee67c61-66ba-4413-997f-be5aa7671864","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"1ee88d1d-cf11-494b-b1cb-e9680d555890","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"1ef6f97a-4fed-4d18-883f-fabe1aa58a8b","name":"City of Prague heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"1efafc5e-0dd1-444e-bc36-95b203397304","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"1f0c5f6d-6616-459a-ba9f-cf9815f19bc9","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"1f13841c-6d7d-4735-82d3-d9f3923878ea","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"1f3a068a-72a7-4150-b585-79ebc9e04711","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"1f610871-6df4-4c86-a5a2-4df8dc6500df","name":"Sad Greaser's die","desc":"A blue die mirroring the sadness of its original owner."},{"id":"1f990335-8545-4a5c-8112-8e2656f46ae5","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"1fc42528-2bef-4dde-bf8a-04febeef41c8","name":"Work axe","desc":"Lightweight axe designed for work in the woods or on the farm. An invaluable tool for all woodcutters, but also for angry people who don't have a better weapon at hand."},{"id":"1fe0e850-e07d-45f0-ade0-26f030a63da4","name":"Coin sword pommel","desc":"The end of the hilt of the sword. It is struck against an iron tang, which is then hammered and the pommel is thus fixed. It serves mainly to balance the whole weapon and as a counterweight to the long blade. In swordfighting, it prevents the weapon from slipping out of the hand, but it can also be used to grip and extend the hilt of the sword. Some swordfighting techniques use the pommel to deliver crushing blows to the opponent's face."},{"id":"200e4351-ee97-429f-9702-60588a65e2de","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"2020e7bc-766b-4853-814a-7a45d2ce4dcc","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"2032aa14-9c43-4925-9f70-64a767da0104","name":"Effects of Grasses and Herbs","desc":"Various ailments and their herbal treatment."},{"id":"20330afb-7fcb-404f-964f-6316a89252a2","name":"Frilled colourful dress","desc":"A colourful dress is typical for dancers and troubadours. But wearing them is seen by many as an eccentricity and a blatant warning against decadence."},{"id":"204c1852-dd30-42ae-9317-bc3123a3e301","name":"Master Menhart's longsword","desc":"Long sword of the swordmaster Menhart from Frankfurt. According to his own words, he received it from his teacher the day he became a sword master. The weapon itself honours both the bearer and the maker. Truly a masterpiece!"},{"id":"205a07f8-e1e1-4962-8858-676ab5981460","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"205aec51-1cde-4618-95c2-84c4ba8ab83d","name":"Zizka's chalice","desc":"A chalice from some sort of bandit expedition. It seems to have a sentimental value for Zizka."},{"id":"20747da0-1be5-40bd-9ae3-f7b2a2345b7a","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"20774cbd-f9f8-48c8-99ab-632985b7ea56","name":"White feathers","desc":"You shouldn't brag about your own feathers, but this isn't mine. On the other hand, who would I brag to?"},{"id":"208362ca-1006-4821-8118-227e64143a3e","name":"Smoked beef","desc":"This is how you make meat dumplings. Finely chop your beef, or better yet, crush it in a mortar, if you have one. Add the parsley, egg and salt, knead well and add some flour for thickening. Then artfully form the dumplings and fry them in lard."},{"id":"20aa1daf-9edf-4c37-9594-1b0c6d7123bb","name":"Magic arrowhead","desc":"The magic arrowhead from Karel the Arrow's head."},{"id":"20d7df96-9d99-4260-bb73-c5443aba5e63","name":"Cooked boar rump","desc":"You can serve boar leg with rosehip sauce or cabbage, but never cook it the same way twice in a row."},{"id":"20fa3692-2e69-4562-8949-48fcf81fc813","name":"Moonshine recipe","desc":"Henry's home-brewed moonshine. A strong drink that is sure to put you in a good mood."},{"id":"21269950-9319-4e8e-ad07-4ef68c15a006","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"2140f040-4d49-4403-9137-5e1bf29dbe15","name":"Dried roe deer meat","desc":"The best thing to eat while staring into the fire in the evening."},{"id":"214ffcdd-a7a7-4b7a-b484-f60c8d00b39b","name":"Knight's axe","desc":"A knight's battle axe. A dexterous weapon that can pierce good armour or crush the bones underneath with its spike. It also has a pointed tip to finish off tougher opponents."},{"id":"215026f1-e62b-4aa5-a919-36ece35a7817","name":"Poleyn","desc":"Simple knee pads that can be part of full armour. They are most often worn separately by those who cannot afford more expensive armour or who would be unnecessarily restricted in their movement by it."},{"id":"215aeeff-b139-4bcd-bd1e-21dc6e90958b","name":"The Tale of Melusine II","desc":"The second part of the Luxembourg legend of the fairy Melusine."},{"id":"217b1ae7-3ac5-447c-8b48-05c99ceb4cea","name":"Ordinary coat with crest","desc":"A plain coat, made in red and white and decorated with symbols of Kuttenberg."},{"id":"219debf1-3e0a-4bad-b6bb-6bad5e334b8c","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"21a017dc-83a3-4086-bbb2-93405534f281","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"21a7d705-96e8-4a8f-90e2-c5f20484a3b4","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"21d3bd2a-a877-41c8-9b12-ea8744b9ec02","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"21dca0db-5988-43ec-8535-74e67a97df6a","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"21e8216b-c03c-4e5f-a605-b4ef5f46abda","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"21f01a75-49e4-43cb-809e-2d45ad64d7ab","name":"Maleshov fortress key","desc":"Key to the entrance of the great tower at Maleshov fortress."},{"id":"21fbb699-2f08-4d6d-aebd-442c2406e865","name":"Smoked wolf meat","desc":"Only eat wolf meat in an emergency and always keep it in flames for a long time beforehand so that all the evil is burned away. Also, you must never eat too much of it, for then you may become afflicted by a bad disease or a cruel curse."},{"id":"220af022-f66c-4083-8fbe-ced38c0f80e8","name":"Red tournament shield","desc":"Shield made for the Kuttenberg tournament. Compared to a regular shield it is considerably lighter, which is of course compensated by its durability."},{"id":"220fd40a-3990-4a34-b6de-eb4a6451539b","name":"Sauerkraut","desc":"Well-aged sauerkraut can cure any ailment. It is said that those who eat it regularly will avoid all kinds of diseases, including the plague."},{"id":"2221b25c-a5a0-44ea-b96b-201781c1e7c4","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"22288162-b9d0-4641-8505-d96f9408a555","name":"Wreath","desc":"A festive beech leaf wreath is designed for big days, such as the wedding day."},{"id":"222e447b-f1a0-428b-acb6-5cd7fe9ccbdb","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"22374f7d-8506-48ce-9830-400044342e2b","name":"A peculiar poem","desc":"Will it lead me to the Holy Grail?"},{"id":"2242070d-6870-4de2-8e86-0a50cad82369","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"2250adef-3a3b-4873-aa83-7c4e1260669b","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"2264f217-590e-4c0f-a4c6-f50c6532b9f6","name":"Apple","desc":"An apple a day keeps the apothecary away. It's not terribly nutritious, but stays fresh a long time."},{"id":"22664905-f9bc-4ef4-a0e1-7b72c25d5ec5","name":"The Czech Campaign to Lombardy II","desc":"The second part of the glorious deeds that the Czech wariors distinguished themselves with by Milan."},{"id":"226c2c4d-84b0-4288-84ba-36ef360febfc","name":"Crusaders of the Red Star waffenrock","desc":"A waffenrock bearing the symbol of the Order of the Crusaders of the Red Star."},{"id":"22a4f287-b9c5-4b85-9196-9873664a6895","name":"Trosky pavese","desc":"A riding pavese with the symbol of Lord von Bergow, owner of Trosky Castle."},{"id":"22af3622-3f94-4c63-a9c7-40b150fb7899","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"22b5e6e1-af04-41ec-8928-3eeca79954c6","name":"Lords of Nebakov kite shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"23371353-e425-483c-8725-f81a7e70df19","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"233e4fbc-42b8-4a70-a699-8b1978419f0c","name":"Poleyn","desc":"Simple knee pads that can be part of full armour. They are most often worn separately by those who cannot afford more expensive armour or who would be unnecessarily restricted in their movement by it."},{"id":"23402f53-0fff-4c2f-8995-4cb42f04b106","name":"Nest key","desc":"I found this key not far from the Lower Semine mill in a nest in a clearing."},{"id":"23512358-f6ec-48f6-b9d9-ed7d51cf1c26","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"236c69a4-1dd4-4402-92d4-e0d054a8f6f6","name":"Old bones","desc":"The old bones of Ambrose's dead brother John."},{"id":"23855649-1783-4e0d-95ad-d3478797b642","name":"Battle longsword","desc":"A heavier long blade will last longer and won't break easily, but it must be balanced by a much larger pommel. This sword is designed for actual battle rather than a quick sword fight."},{"id":"238aefb0-77a8-46ee-8ab8-9ddbc9f0c97c","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"238d1cd1-5990-4065-b574-58653b9edaca","name":"Hairpin of bone","desc":"It would certainly adorn any hair, be it ravishing raven, velvety auburn, angelically fair or suspiciously red."},{"id":"2391e383-2138-42ec-a458-a11410878ad8","name":"Sketch – Broadsword","desc":"A light sword with a wide blade and a thin tip, it stings like a wasp sting."},{"id":"239ea469-3237-48d8-af90-da7cdf4140dc","name":"Cooked lepiota","desc":"Cooked lepiota has a delicate taste and is used by the poor to substitute meat."},{"id":"23ae895e-48b8-4150-9d21-8dad2e9eb371","name":"Key from chest by Sedletz","desc":"A key that someone keeps in a chest by the front wall of Sedletz Monastery."},{"id":"23d3d037-6eb4-46dd-b294-10b0951b85f8","name":"Kuttenberg knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"23db5cb7-5c0f-48eb-b7ac-f79c8f1e710b","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"23e4412b-10fe-49eb-aba0-734a121cef67","name":"Cautious cheater's die","desc":"A die modified by an expert. It is precisely loaded, but also inconspicuous."},{"id":"2422e31a-7a8b-4afc-87f2-00084b286049","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"242ba713-bb2b-4664-b4a6-4ad89b91576b","name":"Flea-ridden blanket","desc":"A dirty blanket full of fleas. Great for infesting a bathhouse."},{"id":"243c6ad9-e995-4e40-84cb-07a1a1c6ad6d","name":"Hand wrap","desc":"A hand wrap is a strip of cloth wrapped securely around the wrist, palm and base of the thumb. It helps to protect the hand and wrist against injuries caused by blows, serving both to keep the joints aligned and to compress and lend strength to the soft tissues of the hand during a fist strike."},{"id":"24425968-42ff-4d92-8752-2a5fa6eebf20","name":"Dirty hood","desc":"A hood left at the bathhouse by a drunk."},{"id":"2442800d-0712-402d-a54e-37f817adda44","name":"On the Composition of Alchemy IV","desc":"A skill book on Alchemy. Can be read from level 15 of this skill."},{"id":"245188d0-9cc8-46d3-9b15-08d12f7db981","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"2463ac9b-f30b-4cac-bfbc-d846b54c328e","name":"Hounskull bascinet","desc":"A helmet called a bascinet with a fitted klappvisor. It has been pejoratively nicknamed the dog's snout because of its strange shape, but it is easier to breathe in it and is more durable than its older models."},{"id":"2464a0a8-8240-4ee1-8076-5df6a74408c8","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"24718614-953b-4a01-90f0-8f0eb7cd1535","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"2485a0f4-22b5-40d1-9025-b57345f08ce2","name":"Peach","desc":"A juicy sweet fruit with a fine fuzz that makes many a young man feel amorous."},{"id":"2491e052-9676-4e69-a66c-123bc1006193","name":"Crayfish","desc":"You can make crayfish soup as follows. Boil it in boiling water, remove the claws and tail and take the meat out of them. Crack the shell, add butter, set the pot on the fire and let it simmer. When the dish turns red, strain it through a cloth and make it into a soup or a sauce; finally, add the meat you took out earlier."},{"id":"24da7902-d6be-4410-b774-e8907fe71714","name":"Gold Emperor's badge","desc":"Using this badge, you will gain triple points for every 1+1+1 dice combination. Emperor's don't lose."},{"id":"24f5202a-f6d0-4f69-90d8-6d6823ff75c8","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"2505bb9f-58af-47c1-9c6b-49c637b888fc","name":"Nail fragment relic","desc":"A tiny fragment of St Catherine's fingernail wrapped in embroidered linen. Princess Catherine of Egypt was martyred by the Roman Emperor for her unwavering faith in Christ. It was a terrible torture. The martyr was tied between two spiked wheels and torn alive. But God intervened and destroyed the hideous machine, and Catherine had to be beheaded with a sword. The pious Emperor Charles IV enforced the feast of this martyr in the Bohemian kingdom because he believed she had helped him turn the hopeless course of the Battle of San Felice into a glorious victory."},{"id":"25221b9b-12fa-47ef-b696-b9a00412f015","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"2529e246-6f1b-4529-8d6b-64245207bae8","name":"Moonshine","desc":"Strong alcoholic drink. Watch out for the hangover!"},{"id":"25366cab-ddf2-4657-94a5-0fcf06a8dabb","name":"Reforged Radzig Kobyla's sword","desc":"A sword forged by my father for Sir Radzig Kobyla, which was later stolen by that scoundrel Istvan Toth."},{"id":"255622bb-c37e-48b0-9186-bacc89f3f5c1","name":"Wanderer's robe","desc":"An overcoat is made of thicker fabric and is designed for long journeys in bad weather. It is recommended by nine out of ten wanderers who have reached their destination."},{"id":"256874a1-0e08-4ee3-8bf4-837015e711e1","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"257385ea-8857-4fff-a43a-42aff71fe4d7","name":"Rounded pewter jug","desc":"Drinks served from pewter dishes taste a little strange, but the pitcher sparkles and that's all that matters!"},{"id":"25759613-1d4b-4d67-a051-6330e75b4a65","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"25893637-c2a6-45c1-8de3-0371dd49f7bb","name":"Potion for little Otto","desc":"A potion found in the cradle in von Bergow's chamber. What will his sons grow up to be when he pours them this?"},{"id":"25978deb-8bf1-40aa-924b-c229625016f3","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"259f998d-7f72-4e83-96c9-1dbbd7717086","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"25bcc85a-0e32-4ac9-851e-ed71f8ce57fc","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"25bd008c-f308-4521-8a4f-a1feeb76ea3c","name":"Spined kettle hat","desc":"An iron hat forged from a single piece of sheet metal and therefore slightly more durable, but still unnecessarily heavy. Its spin makes it better able to withstand blows to the head, but it needs to be supplemented with a quilted hood or collar, as it does not protect the warrior's cheeks or neck on its own."},{"id":"25d5e06c-09e2-405a-b0e8-4ffb6d44c975","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"25e522fc-213a-45e4-880a-2f6089aff01b","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"25e52a3f-174f-4643-9884-3055ff3c2a8c","name":"Page with nursery rhyme","desc":"A page torn from a book. There's an unusual rhyme written on it."},{"id":"25f0754b-c6a8-4f9c-9126-d926909002f7","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"2606aceb-9a94-4342-aa26-f6e6548a0be7","name":"Wine seedlings","desc":"Young grapevine seedlings from the monastery garden. It smells pretty good. I wonder how does such a seedling taste like?"},{"id":"260ccafb-0504-4c17-9833-304539d30698","name":"Saxon Hauberk","desc":"A long chainmail shirt with short sleeves covering only the arms of its wearer."},{"id":"263e6aa0-cffd-4c30-87ea-98e3fcaa4dc7","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"26475e65-7714-47cc-9125-4a04814bb087","name":"Couters with rondel","desc":"Simple elbow pads with round rondels. Unless one can afford better armour, every protection counts."},{"id":"264cac3e-f5f6-4988-8809-2822403865d1","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"2650ef4f-c709-44fe-aa11-371086f940ce","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"2656c9c5-ef6b-4526-bc42-9b5e81611368","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"265f4d46-a993-464f-8f84-919569aa6818","name":"Cracklings","desc":"What could be better than freshly roasted pork cracklings? Especially with a tankard of ale."},{"id":"2685cc55-ca57-470b-aecd-f75b8c58c8d9","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"268622e0-27db-448d-93c1-f3f297184caf","name":"Gunsmith's kit","desc":"A set of tools for maintaining firearms, mainly cleaning the barrel as there's not much else you can do with it."},{"id":"2694bfef-be40-4fb2-901b-e010eaede3ec","name":"Master's handgonne","desc":"A handgonne is a firearm that uses gunpowder to shoot small pieces of metal or stone. A thick metal barrel with a handle is attached to a wooden stock, similar to a spear, for example. Fire through the powder stopper detonates the main charge in the barrel and shoots the projectile out. It is fired by a lit cord, a red-hot iron wire or in a worst case scenario, a burning stick. This handgonne has a barrel forged from iron and is therefore less durable than those cast from bronze. Any living being hit with this weapon is sure to no longer be living."},{"id":"26a248aa-1b24-429a-a368-032f8ac0d73c","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"26b67cb9-c283-49c3-ac2a-87a3ce38eb1f","name":"Cooked blue crayfish","desc":"Cooked blue crayfish. The healthiest thing you can eat."},{"id":"26b70bd7-4896-485a-b668-24f5f0068293","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"26bb0cf7-7a47-44b6-a676-5e97d5d24425","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"26c8d85e-931b-43f3-8085-ba4e99e883b6","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"26d4b32b-0a62-478a-918d-981505497e7c","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"26e12ed8-7f83-46d0-9c77-72dff2ad5606","name":"Coat of arms surcoat","desc":"The overcoat of traditional cut, designed especially for the noblemen's subjects and the army, is decorated with the coat of arms of the Lord von Bergow."},{"id":"26e1eb20-cc30-4c79-9f7a-2759b328c42d","name":"A book of humourous anecdotes.","desc":"Gold decorated book in red leather. Rosa Ruthard asked me to bring her this book from the Maleshov fortress."},{"id":"26fd7a5c-30f1-4a3a-86a8-329adb731fd8","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"27184b09-c011-46ea-b934-6634210c00e4","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"272b277a-5d7d-45c0-b2e2-b9de631fbf64","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"27312d9f-8b06-45d3-bf55-7e4265ee9926","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"27491b2a-a6ed-4203-a0b1-fbec97ea7e4f","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"27608599-6707-4bcb-8399-12e6a2dfe8ca","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"276e407e-960a-421e-b8d9-8ee8318655df","name":"Worn rosary","desc":"One of the most common types of counter. It doesn't count money, but something quite different."},{"id":"277954c4-8019-418e-b1c2-4557fe12f98b","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"27795e53-68b1-4d05-9b02-ae1815c8095b","name":"Roasted peas","desc":"A tasty humble dish of pre-sprouted roasted or baked peas."},{"id":"2787f87c-85e4-4a60-bff6-04ba067d89d9","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"278d26d1-e9a7-4354-84f9-37d20cb72b45","name":"New test arrow","desc":"Placeholder weapons. If you see this in game, report it!"},{"id":"27a13d25-76a2-442c-9e53-9d29c14df90f","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"27b8a61f-36e4-4101-9be5-1b814d43bd8f","name":"Valerian","desc":"To be found on forest paths, in mires and peat bogs and everywhere that ground is damp."},{"id":"27d88a24-6a83-4fc3-bd2c-c5f5396b1e0b","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"27ef47e4-e489-4d01-8c17-4df9b13baf15","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"27fa0d92-44a7-4d13-a065-68f8b15232b3","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"2837cde1-8e89-46d6-aec0-a6a86c3c55e1","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"286206e6-8565-4995-a72f-6006d364c430","name":"The Rule of St. Dismas II","desc":"A skill book on Thievery. Can be read from level 5 of this skill."},{"id":"286eedad-e2d8-47e0-9a54-d506188b4de8","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"28b482ab-0b6c-4615-9f65-849c1a1fb92d","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"28bef4ee-075b-4f13-9cb6-d84f59a09b64","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"28d4df0c-fda3-493e-b71c-6c030d026e0b","name":"Katherine's shoe","desc":"I wonder where the other one is?"},{"id":"28f5a689-4e1a-4cf5-8ce7-50f097ce4122","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"291129da-c3f3-408e-8099-44cdb1572d59","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"2921eada-ef5d-40b6-b3fa-ccae55933b30","name":"Excerpt from wedding contract","desc":"Another excerpt from the draft of the wedding contract between Lord Semine and Bailiff Thrush."},{"id":"29287483-8f15-4f6e-b48f-062a5f81877b","name":"Axe from Skalitz stub","desc":"This axe is done choping. First Kunesh, then Jezhek. The chain of unfortunate fate is broken with you."},{"id":"292a24a8-556e-43ff-ac73-ddef833399fb","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"292ea6c3-92b9-40a1-890c-d558ab00a8f2","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"295c54f8-76a3-42fa-8fe1-8f1ecb63576b","name":"Cooked apple","desc":"They say an apple a day keeps the sawbones away. When you boil them it makes for a tasty treat."},{"id":"295d5bcb-3871-486c-b635-905eab850ce2","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"295f18cd-7cd5-420a-adbe-9b2b36ce883a","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"29941c70-6337-4cad-9eca-50695b26817e","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"29963409-a8b4-4c9a-8c7c-02b674cb5883","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"29a4f58e-6e00-4f9c-9273-1a76e0eccff0","name":"Smoked sausage","desc":"A sausage slowly smoked in beechwood."},{"id":"29b105bb-b4d7-4bf8-bf7b-a214b8773728","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"29f0020e-1bf9-4fe8-b4f2-0ca2e2cb4be6","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"29f9e71e-7daa-4872-9dc3-1a330bad807e","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"2a10687c-b9ed-430c-bf7d-644ece4fc1e5","name":"Dried venison","desc":"It will last a long time, and it will be also easier to hide from the suspicious gaze of the huntsman."},{"id":"2a169fbe-251a-49f8-85d1-0b9a651f61d1","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"2a2ac072-a7eb-42f5-8757-776c02647559","name":"Quark kolach","desc":"For those who aren't fans of poppy seeds or nuts, a quark kolach is the best of all."},{"id":"2a4b891d-9131-4a45-8b93-4734da890724","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"2a4d5c1b-e9e1-415b-a708-3569db42d34f","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"2a668746-916a-41db-b079-29c7aa4a9845","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"2a7b98a7-254f-4d9a-bcf6-520ca577c97d","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"2ac0499c-a18f-425f-ab8c-bc81eaa0142a","name":"Plums","desc":"Delicious fruit with fragrant flesh. Watch out for the sharp pit inside!"},{"id":"2ae9b309-1d86-4476-9387-62228d391c56","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"2af03fae-82c8-41b7-a9bc-ace113a171ec","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"2aff8ed3-785d-49f8-995b-f5e550c1aa95","name":"Jester's disguise","desc":"A colourful coat decorated with jingle bells and an equally colourful jester's hood are worn by the minstrels in an attempt to attract the audience's attention. Be careful not to burst out laughing."},{"id":"2b0a8cdc-b084-4c43-ae71-714461e9ae29","name":"Frilled veil","desc":"Veils, or also veils or shawls belong to the everyday clothing of married and widowed women. They are most often white or light-coloured and are fastened with pins and brooches."},{"id":"2b1973d2-cabe-4775-bf67-0dac8d372e78","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"2b300a91-25bc-4bb0-95e9-7b4c1ac70ab3","name":"Sketch – Common sabre","desc":"An unusual curved blade used by nomads on fast horses in the middle of the Hungarian steppes and the remote Arabian deserts. It can be swift and excellent for offense and defense. Every good Christian should beware of losing his head to such a weapon."},{"id":"2b589656-196d-4eac-9c71-28eae376cb26","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"2b5bb6d2-f2f9-4c09-afdd-12f59ca8b5c8","name":"Bell-shaped bascinet","desc":"A helmet called a bascinet protecting the whole head except the face, so it looks a bit like a bell. Very often used by marksmen because the face is not covered by any visor and it is easy to see the target."},{"id":"2b62bd02-fead-4601-9aff-f4020dee293b","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"2b6858db-8eb4-49fa-86ba-70ca2b9e4d8c","name":"Human skull","desc":"Dust you are and to dust you shall return. The skull serves as a reminder of the transience of human life."},{"id":"2b785b0f-8e17-4296-b3af-1a2f77eaada9","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"2b8826d8-2676-41af-81c6-d21c7ccc4a8b","name":"Sketch – Farmer's horseshoes","desc":"A blacksmith's horseshoe sketch. Because every master had to start somehow."},{"id":"2ba148d1-d33b-4e88-837c-5cc1e12c32ff","name":"Miners' crossbow","desc":"A beautifully decorated and masterfully made crossbow for the traditional popinjay competition. Everyone would love to have one, but this one is mine now."},{"id":"2bac4905-4946-4a17-b728-8f059b588eb6","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"2bb1b2ed-63b3-4906-8f22-31dcf0a2a3df","name":"Mushroom picker's knife","desc":"Lost and found again."},{"id":"2bb1c148-8ee1-42bc-8a93-8c456a57eba5","name":"Dried sage","desc":"Can be found in pastures and on hillsides."},{"id":"2bc64ff6-88e5-4b0d-8f94-9c7810d29275","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"2be495ad-92ed-44d0-8839-8df4ad0fa931","name":"Scratched message","desc":"A piece of parchment with a message full of despair."},{"id":"2bf46965-a851-4602-8282-cbefe7f24945","name":"Raven feathers","desc":"You shouldn't brag about your own feathers, but this isn't mine. On the other hand, who would I brag to?"},{"id":"2c08d9d1-a824-4f90-b62e-5c90cf474c5e","name":"Key to Musa's chest","desc":"Key to Musa's chest in the military camp."},{"id":"2c375955-b00d-434b-8e0e-03e3d8c180e1","name":"Praguers' hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"2c3dd3de-a5a0-4a64-b325-b3d1f95b2198","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"2c501caf-4279-4bdf-82ea-9ba4bfaa4677","name":"Hauberk long","desc":"A long, chainmail shirt with sleeves covering the arms and forearms."},{"id":"2c6ad35a-c46c-4128-8881-926d02fb893a","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"2c78ec3d-c7ea-4326-9f9c-5536ea67a626","name":"Smoked boar tenderloin","desc":"A prime piece of a boar meat, juicy and tasty. Prague burgher Havel of Silberstein liked it very much and used to prepare it in a special way called wild boar on venison."},{"id":"2c7922c6-1182-4297-9712-8ef7a93403ff","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"2c8f7096-5b0b-4d9b-a50c-b1557f24e45a","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"2cb53d10-c5da-47ef-8789-8e1ae34dac6c","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"2cb59173-41e9-470f-bf65-efabee28cc9a","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"2cc453b4-7f3b-42db-945f-1b144ede0672","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"2ccaa0b1-46df-4879-b88e-b779670ca4eb","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"2cd02a0f-d7e3-44c3-ac8f-7b6da6ac3f37","name":"Bowman's Brew recipe","desc":"Improves your Archery skill and, if good quality, reduces loss of Stamina while aiming."},{"id":"2cd10021-c12f-4856-85f5-2699d6d8ea99","name":"Skull Crushers II","desc":"A skill book on Heavy Weapons combat. Can be read from level 5 of this skill."},{"id":"2cf70f1e-4d9d-41c8-93c7-a851f887f5bb","name":"Beggar's coat","desc":"A beggar's overcoat is all patch and almost falling apart. Still, in a pinch, it's better than nothing."},{"id":"2cfb13ee-d15c-48d3-84e0-fed50436c49f","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"2d081144-adc3-4eb7-9c6d-355daa600faf","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"2d19b8cd-ca77-4084-ba72-3dd18cec0162","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"2d2325bf-0b96-48a4-bbad-2f2dfcb8b90b","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"2d2efb88-50a1-4923-93d4-b4320ffab45e","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"2d3a480d-0813-4eef-a4b5-289d253f7898","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"2d3b3fd0-f566-4788-9b8f-8dd09dccd105","name":"Strange dragon bone","desc":"This is supposed to be a piece of a dragon, but I'm not sure which part this bone comes from."},{"id":"2d3fd34d-a481-4bba-827b-6a07fb07b213","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"2d466cad-74df-4337-ae97-4c7433a54b6d","name":"Tournament longsword","desc":"A longsword for swordmasters is a noble and damn dangerous weapon. Like the tongue of a viper, it can cut the thread of life in an instant. This blade is designed primarily for tournaments, but in a more fierce battle it could quickly come to naught."},{"id":"2d5e420c-3678-4cc1-a7d1-6d585dbf2d1b","name":"Cheater's noose","desc":"Fortune spins around and you're once down - once up. Once you win big at dice, and then at the end of the rope you'll hang ignominiously."},{"id":"2d650f43-0ffd-45a5-a03b-79dc7b9bc50c","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"2db34fd5-db13-44ce-843d-a794a8077f7e","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"2dc6bb39-979e-462d-9f65-0c9376c6426c","name":"Composite kettle hat","desc":"A simple kettle hat composed of several pieces of plate. It protects especially against blows from above and therefore it is good to wear it together with a padded coif or a full collar. The advantage is certainly its lower price."},{"id":"2dd6ea92-4024-4113-97ed-6a23f19b39d9","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"2ddbee30-d9c4-4bd3-bfc7-789d965677fa","name":"Beggar's coat","desc":"A beggar's overcoat is all patch and almost falling apart. Still, in a pinch, it's better than nothing."},{"id":"2ddf6256-0662-44c4-99fe-f713b6d900ea","name":"Herb Paris","desc":"It may be sought in deep woods."},{"id":"2e19ecc3-59fa-4dd4-b15b-6bf427e7ea69","name":"Crusader cloak","desc":"Brand new cloak with the Crusader's Red Cross symbol. It was only recently buried in the ground, unlike the rest of the old papers."},{"id":"2e1ef336-6b2b-467d-b753-56221ecfbdf9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"2e6c0926-0d37-4009-beb2-0a8edcb502cb","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"2e726304-beab-449c-9ee2-f21f24788fe8","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"2e79bbdc-51db-4c1d-88a7-83b8d8c59112","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"2e7d5a0a-3758-4c4c-9773-d0b7feaed665","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"2e876c86-60bd-4f7e-b5d7-149a0e49e7ec","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"2e9aa99c-f9f0-4128-8d8e-c82c4fd8c112","name":"Knight's notes III","desc":"Notes of the knight Taras Mura, found in the mines near Old Kutna."},{"id":"2eb7d615-249a-4282-ac7a-e10a7b829ac4","name":"Silver cross with insignia","desc":"A decorated cross is made from silver, but one can certainly pray without precious ornaments."},{"id":"2ebcd914-64dc-499f-80c0-b606636e12f9","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"2ebd6f82-4495-47df-8079-d79ee1470cd2","name":"Fried snow","desc":"This delicacy has great sentimental value."},{"id":"2ebfd5a8-c34a-418f-bea1-23c8f45e1651","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"2eeb7bf7-f0ac-4c46-9468-97c2f76cb254","name":"Pear","desc":"The pear is a symbol of generosity, goodness and modesty. On top of all that, it tastes great too."},{"id":"2ef04e80-e773-4120-b44a-7ff0715a97bb","name":"Map from chest by Sedletz","desc":"A map I found in a chest beneath the wall of Sedletz monastery."},{"id":"2ef1cf0f-c821-4d5c-9e6c-071f30bdbaac","name":"Decorative pins","desc":"A pin here, a pin there..."},{"id":"2efa4201-d81d-4066-ad8e-9cdfb73aa767","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"2f13a4b9-22c1-40b3-95df-a1436eb07577","name":"Guild Longsword","desc":"The guild longsword is a magnificent weapon crafted to celebrate the founding of the Kuttenberg swordfighting brotherhood. It was subsequently adopted as their emblem. The master swordsman, who leads the brotherhood, wears it at his side only on ceremonial occasions. Most of the time, it adorns the great hall of the Kuttenberg swordfighting house."},{"id":"2f2095b6-ad4b-4002-9af3-96612f3e143c","name":"Blacksmith's defender","desc":"Although it looks quite ordinary, this sword is well forged and perfectly balanced. This is the kind of weapon a blacksmith makes for battle, not for show."},{"id":"2f20e7ab-77ae-4c17-be1d-e6f4931769d5","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"2f21ce09-8b9b-487b-88fa-18d25620d44f","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"2f5a44d1-bbb5-4389-8cf6-a5ae3c97e42a","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"2f5a67c7-3298-44a9-bee4-106d42d3ce22","name":"Dried hare meat","desc":"There's even less of that little bunny now, but at least it won't spoil so fast."},{"id":"2f5c4392-46cd-4319-a710-f50edd0c2adf","name":"Horse hide","desc":"Horsehide is known for its good tensile strength yet considerable softness. It is commonly used to make halters, bridles, belts or even saddles and saddlebags."},{"id":"2f5d0549-b885-44c9-a82b-2b2b3a2c5837","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"2f88924c-f968-4d0c-80d2-ed8e63787783","name":"Milanese gauntlets","desc":"Fingered gauntlets in a typical hourglass shape. The individual fingers are protect a series of folded iron slats."},{"id":"2fb242f9-45b1-41aa-bd5c-c5a6017579b0","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"2fd1d0e1-28e3-4e7d-82ad-834ec45aa635","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"2fd517a8-e990-45a1-8fbc-e4b3636cf30a","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"2fd6171a-e788-45c8-b07a-c6d83db790d3","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"2feed599-4d8a-4567-ab7f-d73febe542d1","name":"Father Dietrich's rosary","desc":"It is said that the priest once survived several days alone in the wilderness, to face pagan superstitions with his faith. This very rosary helped him overcome fear and find light even in the darkest moments."},{"id":"2ffa5ff9-d5ed-44cb-b789-b62098383efd","name":"Cooked deer ribs","desc":"Best to make a roast out of it and serve it with a fruit sauce. However, make sure to bake it just long enough and be careful not to dry out the meat too much."},{"id":"3014c031-09e4-4818-97cc-4620c187a2ed","name":"Bell-shaped kettle hat","desc":"The most common shape of kettle hat, popular among the poor squires. It consists of two parts joined together by iron rivets, and therefore isn't as expensive as a helmet forged from a single piece."},{"id":"30200be3-9861-49fc-b3e6-61611bb53d34","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"3024ad3e-9647-41f7-9be6-0aa29c2e7bd2","name":"Mended cuirass","desc":"This cuirass has been in a fight before... and not for the first time. Battered, full of patches, but still a piece of metal that can make the difference between life and death for an unheralded warrior."},{"id":"3027c1fd-c093-42d6-acf0-f1794adaac2b","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"30468716-1e11-4b55-874d-36702add9114","name":"Half plate legs","desc":"Partial leg protection, coverinng only the thighs and knees of its wearer who, for some reason, decided to save on armour cost. One should think twice whether this is a good idea, though."},{"id":"306e8746-088f-456a-9454-f43df58bb618","name":"Monastic Rule of Saint Benedict II","desc":"On Monastic Obedience and the Monastry Abbot."},{"id":"3074b463-14f4-484e-afe6-a780ccad9161","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"307e72cc-6468-4ca1-9b5b-1411d6b4f9ae","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"30921247-8358-4c8a-b3a4-6ea2a69c4320","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"3092f087-b3bc-4d66-9eb9-b3498570ee9c","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"30a1474f-9a19-41af-bbba-c74154e7990f","name":"Dry Devil's longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"30ab29dd-cfb3-4bae-b549-e23728189421","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"30b6df49-7789-4c22-b645-e5e087df8ffd","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"30c79280-bd4a-4612-8d58-c47c982727aa","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"30c8a613-0b2a-4287-b1a8-3dbea94b3221","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"30dd9547-0ec9-4144-871c-cb66582244a4","name":"Kolda's axe","desc":"Lightweight axe designed for work in the woods or on the farm. An invaluable tool for all woodcutters, but also for angry people who don't have a better weapon at hand."},{"id":"30f8b9d6-1cd3-40c0-9b1d-e1f90c10abcf","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"3100d2d2-a675-4fc1-ae11-9a0f885259e4","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"310e921d-da62-48e4-88ef-de9f295e0045","name":"alchemySpiritus","desc":""},{"id":"31148cbb-8592-4b26-a1ae-8a9e07e309e6","name":"Weak Lullaby potion","desc":"Reduces Energy to 0 and decreases perception."},{"id":"311536e2-4455-4cf9-ac97-b0d92715c157","name":"Skull Crushers III","desc":"A skill book on Heavy Weapons combat. Can be read from level 10 of this skill."},{"id":"311f5baa-ce48-48e0-98f2-e480b677a05a","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"313d2643-ee11-4c74-95a3-75392e1cfb62","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"314c4126-a392-4c0f-bf91-dfd40773ebd3","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"315fa220-fcb8-44e3-9a68-545c6822ec9f","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"3165cfd9-692f-4605-8d51-b877e4959cd1","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"31726b70-4c84-431c-960a-a2751c65138b","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"317fe073-1c63-454c-99b1-ef3615fa49de","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"319a7fe7-1c5d-42fa-80cd-83126cb6eaff","name":"Salami","desc":"Spiced salami. Smells great and tastes even better."},{"id":"31c87d7f-6d8c-4285-80e7-5b69878ac025","name":"Sack of waste","desc":"A lot of indispensable and undoubtedly necessary things in one place."},{"id":"31d62b91-74d9-43d6-9d52-d21ded5dce3a","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"31ddd7b8-0b3a-4628-8d04-4350c50cbafe","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"31f86331-dfba-4b12-8641-f14af9307f09","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"32202dc5-3da2-4348-899a-745ad1b018e1","name":"Kuttenberg market book","desc":"One of the copies of the market book from the Kuttenberg Town Hall. It contains a list of markets and regulations for merchants."},{"id":"32233be0-375a-49dd-a8ee-37325e7c825e","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"3236e899-8d8f-43e6-8bf7-e5124e06a212","name":"Footpad's hideout map","desc":"A map of the old hideout of Innkeeper Beikovetz's disbanded gang of robbers."},{"id":"325afbbb-3f0c-4d79-a990-0a3124a44907","name":"Recipe for Marigold decoction","desc":"Gradually heals part of your health. Helps against hangover, or cures it immediately if good quality."},{"id":"3269615a-4b22-4f39-8f1f-e33bb44ea1a7","name":"Demon droppings","desc":"Are these actually demon droppings or just ordinary charcoal?"},{"id":"328a4dd3-9ca5-4496-9c96-7c492fd9a6a4","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"328f9996-a384-452e-a5a5-57c9c108a996","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"329d2697-b6d2-452d-9ba9-09649a607740","name":"Saint Antiochus' die","desc":"The Saint Antiochus' die always rolls a 3. Not 2. And especially not 4."},{"id":"32ad55e4-fb31-406c-a8d0-706872ba206e","name":"Recipe for Nighthawk Potion","desc":"You will see better in the dark and your Energy will deplete slower or if good quality, not at all."},{"id":"32c7d738-95a3-401c-b644-034da5870107","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"32cd8692-8c2e-4595-9fa5-a8cf66443da8","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"32ce2960-642c-42a0-8af8-cd98212eeb42","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"331cd114-03bd-401e-8c40-c7ddcfa14d8f","name":"City of Prague pavese","desc":"A riding pavese with the symbol of the Old Town of Prague."},{"id":"33392df2-2b85-4875-998b-c313de495f57","name":"Cobweb","desc":"An essential building feature of every human dwelling and a source of food for spiders and some magical elixirs."},{"id":"333a3cc8-516d-44cc-8d07-4158326c235e","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"3345f86c-96e4-45ed-aa77-997fd986a242","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"33463930-7cb0-4da4-9706-cd508c41d3c3","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"336de311-0438-46ae-ab3c-5366cb0cb1a4","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"3373a604-a2fd-4af0-a5e8-760e1a9893f9","name":"Weeds","desc":"That crap grows everywhere, especially where it's not supposed to."},{"id":"3387f048-d68f-4d03-a97b-29c1c6f6f35f","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"33cc23d2-2f9d-4da8-a6c0-db130bbfe616","name":"The Rule of St. Dismas I","desc":"A skill book on Thievery."},{"id":"33d169b5-b511-4149-ae1b-96d964ddd15a","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"33d6b02e-35fc-4b79-aa3f-25f42fc4dae6","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"33de1142-2f9f-4c4e-a991-609ecb0361c2","name":"Milanese cuirass","desc":"An excellent piece from the Italian armoursmiths. Thanks to the perfect tempering and fine surface cannulation, the sheet metal used can be much lighter and yet just as durable. The cuirass is composed of two parts that fit together perfectly to form an impenetrable shell on the knight's body."},{"id":"33f044a1-c7b1-497d-adbb-b514cb440fc5","name":"On the Prince Electors","desc":"About how the Emperor of the Holy Roman Empire is elected."},{"id":"33f06601-79ec-48f6-b581-324490c560bb","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"33fbc6fa-59cb-4c3a-a218-b35f759a9c93","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"3400df4e-8956-4a4c-a665-3d9294b36eaf","name":"Nebakov jail key","desc":"The key to the jail at Nebakov Fortress."},{"id":"34183ada-3a8f-4edb-bc87-56750b397a28","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"34249f9e-e0b2-4bd2-a462-770dacda5833","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"3426fb05-4786-493b-a64e-6c976aaa5321","name":"The Peculiar Siege of Prague","desc":"How Prague was besieged by several armies and how the siege was ended without any bloodshed whatsoever."},{"id":"342d11fd-a33c-46b0-91e0-0c1d44d3d24d","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"342d61eb-1a28-49da-9e9e-47ef03d12c6c","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"342dff67-b23d-4c95-a006-bb0e29193edf","name":"Scapular with insignia","desc":"A tiny pendant, usually worn around the neck or wrapped around the wrist, is associated with praising the Virgin Mary and other saints."},{"id":"3437c616-a14c-4ba2-a382-f4898765eeff","name":"Beaked kettle hat","desc":"Iron hat with a wide brim. It covers the head well and at the same time, thanks to conveniently placed cut-outs, does not restrict the view, which is an advantage especially for foot marksmen."},{"id":"34380658-48a8-4726-94f6-51ad4d69cce8","name":"Lamp","desc":"They say it's darkest under a candlestick, but have you ever seen the shadow this lamp casts?"},{"id":"343b563d-95f0-4ec2-9247-ebbde648d7ec","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"34438cdb-ef30-4b63-9878-89b7233000bd","name":"Scaled skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"344b633a-b7a0-44ef-8a11-9d1288f9a0ca","name":"Plate knight gauntlets","desc":"Better hand protection is a must in combat because as they say: hands go first in any fight."},{"id":"3461eaa6-f9ed-4435-b18a-c0fd91dd841d","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"3462cc25-3ff2-42c9-92ca-05022ff6a11e","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"34681c47-6337-4e4c-ab02-7a89a46fc8c7","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"346ae284-5a20-41ee-84dd-5997d562b3d5","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"346c9d81-aae9-4e28-865d-f76ac754e801","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"346e30e4-12c5-4321-8791-b007bd6b66bc","name":"Praguers' riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"347e61a6-d36e-4d1e-99ce-98c8ecbeee73","name":"Frankincense","desc":"It is often used in Christian ceremonies. Incense is mentioned back in the Bible and was used by the ancient Egyptians and later by the Romans. The smoke from this rare plant resin has a soothing effect on the human body, but it can also lift the mood and surprisingly increase attention. Its smoke can make one very dizzy and make dreams seem real. This is also why frankincense is considered a rare magical raw material."},{"id":"347f3a13-d4d4-44ae-9ef6-270f6e15087b","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"3480bc5a-b7a1-417a-b447-8051bcb30a2c","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"34a822bc-21b5-4b7f-9088-be794b94d4e3","name":"Silver badge of headstart","desc":"Use it to get a moderate point lead at the start of the game."},{"id":"34bd1d0b-1203-42a0-b9b4-d3585a4d9b48","name":"alchemyOil","desc":""},{"id":"34d1aa11-e0ae-4d87-95bc-bcdfd0f50d5f","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"34d6dfae-ed5c-42dc-80b6-2024c218f51e","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"34e26bcc-e179-4e10-8b7c-6b70dfbdb43f","name":"Punches, Kicks and a Few Slaps IV","desc":"A skill book on Unarmed combat. Can be read from level 15 of this skill."},{"id":"34e5b26c-272b-4af5-90de-89895b362fb0","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"34f0a15c-b01c-4297-bddb-1ed7576ab3d3","name":"Master's Studies II","desc":"A skill book on Scholarship. Can be read from level 5 of this skill."},{"id":"34f2f8b6-2ed4-4b89-ba68-ac4d6a8a7fab","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"34f8334d-d438-4d50-807e-659ab42901a8","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"3508576f-8726-40d3-af4c-bbde52511c17","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"352cb5bf-a09c-41c9-b190-3c96f9cd6d49","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"3540b5c2-50ef-4720-b6e5-77724397ab4e","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"355ac165-5e2d-4664-bd16-eccec7ec03b3","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"3561207a-fac6-4540-9561-03684d105178","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"35663a5e-7d0d-4392-85c0-c4498416b245","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"3577a2f1-b901-4b73-b72c-3c35ff75c53a","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"35880f76-5d1b-4d99-a839-98a8b74cae97","name":"Ordinary Praguers' coat with crest","desc":"Plain red and white coat with the emblem of the Old Town of Prague."},{"id":"3590f22a-3fcf-441a-9774-6c3f87f6d190","name":"Beef kidneys","desc":"Tasty and healthy. Fry them in fat or roast them on the fire. Just like with other offal, you need to take care not to consume too much and too often. They also make for an excellent dog feed."},{"id":"359700c7-14ec-413d-924d-b0a682ecb22b","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"35a9832a-6c2c-45fe-9029-682d8e4f47ee","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"35ad3b58-b9b4-4808-9512-13353f75a81a","name":"Leaf-shaped couters","desc":"Simple knee pads called couters with a leaf to improve protection against slashing blows."},{"id":"35bcedcd-dcd5-4209-9b93-4d8b14940b97","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"35c6c55f-52b9-4644-972c-ffd9d9405113","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"35e21363-7a25-43cd-a1cc-29ec4b273e85","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"35eed96b-1210-4801-a84a-7e24ac7d28f2","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"3625fd0b-94df-47ca-a0db-09f5f8833ac0","name":"Half plate legs","desc":"Partial leg protection, coverinng only the thighs and knees of its wearer who, for some reason, decided to save on armour cost. One should think twice whether this is a good idea, though."},{"id":"36348134-bc4a-4e9c-a33b-8930ef2f8ebc","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"363b64a7-9005-45f2-9bea-4b5330159fe5","name":"Cooked beef tenderloin","desc":"Great meat suitable for many dishes. It is best served with a white cream sauce."},{"id":"363f67fd-1f8c-4ff9-8e66-69df1ff00e7b","name":"Fork","desc":"Some still believe that the fork is the devil's invention and stick to the old tried and tested spoons."},{"id":"3650cb5f-c380-4eba-89aa-06be675c4dff","name":"Frikadelle","desc":"An unsightly mixture of meat and lead. Inedible."},{"id":"36599060-fae4-45f9-8932-3ebf97ff8dd7","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"366c6d07-8d42-460e-a66b-d6167f08e531","name":"Sword of Sir Valentine","desc":"A perfectly authentic replica of the sword with which the knight Valentine once accompanied the Abbot of Sedletz to the Holy Land."},{"id":"368bafe6-5f94-4ef7-a759-3293e3ee21c9","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"368cd5b0-fa57-444f-9e3d-6675ce6787e7","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"3694c855-086f-4ce4-b402-a97ecce944f9","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"36a701ed-2144-452a-b113-385efba2c0d1","name":"Knacker's gloves","desc":"A gift from Ignatius the knacker. Gloves made of fine deerskin are flexible and retain feeling in the fingers, making them perfect for grave digging or perhaps even thieving."},{"id":"36a86bf1-9714-4219-b877-9a7338a0a0e5","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"36af95a7-6be3-47c8-a2fd-6bff523492a0","name":"Sack of charcoal","desc":"A bag of supplies."},{"id":"36c57fd3-b52e-4dae-b14a-c4eedaaf1316","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"36d330df-f8dd-4402-8033-484525b6a815","name":"Hashtal's chest key","desc":"The key to a chest holding thieves' equipment."},{"id":"36d5a502-c280-40a7-bfbe-cf5dbdb69404","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"373747b8-5225-41ba-b511-56526ff90a30","name":"Cooked pork","desc":"You can make a delicious pastry with pork. Salt the meat and boil it until tender. Slice apples, add eggs and pepper, add to the meat and continue cooking. Mix the flour with the wine, add the eggs and cream, put a little saffron on top, and knead a good dough. Place the meat on top, cover with the pastry and then bake until golden brown."},{"id":"3751aef6-5604-46c1-958d-bb40d47ef163","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"375a0d96-e0e4-4fa5-9cf0-2186387aba97","name":"Cobblers' Guild knight shield","desc":"A guild shield. The symbols of the kneipp and leather shoes are the emblem of the Kuttenberg guild of shoemakers and novices."},{"id":"378397fe-1b00-4024-bfb9-b3cbb0cee55b","name":"Passionate mushroom-picker's hood","desc":"As soon as you put the hood on, the scent of mushrooms hits your nose. Or is it mould? Either way, this hood has faithfully served many mushroom pickers before you. With it on your soldiers, you're sure to know which mushrooms are a sensation to the taste buds and which will send you to an early grave."},{"id":"378b1660-f30b-4bf7-b240-4393636272be","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"37bffa89-4b82-48f9-9e84-b52c0130b0af","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"37c28762-b8bd-4441-96fb-8d52f65ae41a","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"37f96d3e-f73d-4d3c-8e06-996b1d9a0401","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"37ff1e91-4014-451b-9de6-bee40201ecb2","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"3803a2b8-6327-4678-8343-8b452c7600be","name":"Undigested bone","desc":"A human bone chopped with an axe."},{"id":"38102e92-9a28-4d57-85c4-716b97a0ecb8","name":"Italian hauberk","desc":"Lightweight short chainmail shirt with shortsleeves."},{"id":"382e1e0c-cf38-42c2-85d9-1b0f1abe5f42","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"382f2c19-517f-42c9-8570-268ba0bbbef0","name":"Voivode's letter of safe conduct","desc":"A letter of safe conduct issued by Sigismund of Luxembourg himself, giving the bearer the right of free movement and the privilege to judge his own subjects according to customary law, not the law of the land."},{"id":"3844bfed-e66b-4e97-bea4-4bf84d90ae82","name":"Even die","desc":"A die loaded in favour of even numbers"},{"id":"3858560f-cf48-436f-8815-4426003288fb","name":"Broad longsword","desc":"A perfectly balanced long sword with a wide blade is the gold standard. What it lacks in speed it makes up for in durability."},{"id":"385a7261-fdc8-42d8-9602-40dc24658728","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"38652784-56d9-48f9-ba18-d5b218ec24f5","name":"Key to the ruins of Slatego","desc":"The key to the door of the Slatego ruins, where the gravedigger Ignatius has a trap for wild animals."},{"id":"3865dd5f-af9e-4f9c-8147-d6d005c9a695","name":"Hendl's chest key","desc":"The key to Hendl's chest."},{"id":"38757ef5-789a-4dc9-a487-7d7d5157748d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"388534dd-e293-41df-ab94-596562e67592","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"389fbc5f-a9b7-4ef9-bafd-93b40fd7e46e","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"38b2c716-3447-45e5-aadd-8db9fa5463ef","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"38c34f78-cfa0-40c9-a94e-5e04dcf35608","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"38cafd4d-55a4-4121-bb3f-5b4815eaad03","name":"Walnut kolach","desc":"Flour, butter, honey, salt, egg yolk, cream, walnuts… and the miracle is done. It just melts on the tongue, tastes great whether hot or cold."},{"id":"38df365c-a4bb-462b-80cc-eb92f16930fa","name":"Cheap wine","desc":"A bitter young wine. Though it may not be the tastiest beverage, it'll still wash away all your troubles."},{"id":"38e9a461-5607-457f-bd8d-933fa9138551","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"38ea59b9-ead9-4fb5-a62a-2051abd844a2","name":"Gall","desc":"A thick, yellow to dark green fluid, bitter to the taste, that is formed in the liver, whence it travels via the bile ducts to the small intestine, where it takes part in the digestion process, primarily by helping absorb fats. Suitable for mixing potions."},{"id":"390c0dc8-23fd-42a0-91f2-a4d42f96a387","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"39141a90-7892-45cb-8a08-b3fac01980c5","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"391b0fdc-b7a2-443a-9dc6-3c51cd11e3f1","name":"Composite kettle hat","desc":"A simple kettle hat composed of several pieces of plate. It protects especially against blows from above and therefore it is good to wear it together with a padded coif or a full collar. The advantage is certainly its lower price."},{"id":"3930a67e-1f6c-4c83-b7d4-5339be178bdc","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the military, is decorated with the coat of arms of the Kingdom of Hungary."},{"id":"39686da5-f819-4f2b-aa3f-058c983d2022","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"396f4380-2f6b-4892-b14d-e65141ba4074","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"398c9ce1-fc83-4814-a997-88436ee3e822","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"39c04208-eee3-488b-a9f1-46c6a00bede9","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"39c52304-d3a7-443e-a229-686c192106d9","name":"Milanese plate leg armour","desc":"Leg protection consisting of forged pieces of sheet metal. The front consists of plates equipped with a dorsal edge, so the armour is harder to cut through and will even endure a crushing blow."},{"id":"39e48c8e-b408-4516-b725-b5223ef52293","name":"Jester's disguise","desc":"A colourful coat decorated with jingle bells and an equally colourful jester's hood are worn by the minstrels in an attempt to attract the audience's attention. Be careful not to burst out laughing."},{"id":"3a1811fb-124e-4dbd-95ee-114debe21091","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"3a20eafb-00a2-460f-8a2e-af8a03080078","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"3a369a3b-fbc4-4b4b-8d59-5ca8492daa33","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"3a4ff1af-07dc-44db-a3ed-f5a7a0e1aa23","name":"Old letter about the Order's commandery fire","desc":"An old letter to Seneschal Ambrose from a mysterious informer. It seems that Ambrose was once on the trail of a fire at the Order's commandery in the Old Town of Prague."},{"id":"3a5203e8-8204-4b49-bf4b-f226382e7488","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"3a640e5d-d8bd-4e8b-b61d-8cd5180e79e7","name":"Dagger","desc":"The dagger is the knife's more dangerous cousin. Most of the time it's used for slicing cheese or apples, however, it comes in very handy if you need to creep up on someone and dispose of them without attracting attention."},{"id":"3a66b6d0-c4f5-4a66-8ee8-78299ddfd318","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"3a6e12fe-a494-4a34-85a9-ebdf4f1d3a14","name":"Wisdom tooth die","desc":"A playing die made from a wisdom tooth."},{"id":"3a813885-1e00-4576-a62e-322edbcc0525","name":"Zinek's forged key","desc":"A copy of the key that opens the chest of stolen goods at the Troskowitz Rathaus."},{"id":"3a827797-78b5-4261-aa0a-a4616b8bfafd","name":"Letter for Buresh","desc":"Letter for Buresh"},{"id":"3a8e3e12-bd79-48f8-8b77-8db11d6c37c9","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"3a924889-7886-4a3f-b880-bd74618c0ccc","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"3ab80dff-9b7d-4278-9797-d810fe41b9df","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"3acd1712-9ab9-44f1-a0c9-275e89f1b2c3","name":"Silver badge of resurrection","desc":"When a throw doesn't go your way, use this badge to throw again. Can be used twice per game."},{"id":"3ad25b4d-bedd-45d3-8371-ccf5314f9af5","name":"Jasper beads","desc":"Stones the colour of blood are said to have a calming effect, help concentration and help women with their worries."},{"id":"3add3a6d-c382-4f80-97f0-01938cbe83a2","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"3af0df65-919e-4d53-b068-c113be16c5da","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"3af23d5b-b51d-4546-85f9-252aca92db12","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"3b01bffa-b555-494c-bdbd-389459ccd9f4","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"3b0a1c2e-c631-47d6-b5f4-ac798318e86d","name":"Grimey skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"3b0c9fdd-c00f-4c15-b0a5-a9f327ca5ae6","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"3b1384f8-36bf-453b-8f17-66fb360a72f9","name":"Tin badge of fortune","desc":"After your throw, you can reroll a die of your choosing. Can be used once per game."},{"id":"3b25ebaa-4d67-457b-a3e4-a22b50beccce","name":"Adam's chambers' key","desc":"The key to Adam's sleeping quarters in the loft."},{"id":"3b42d9a1-186b-4e40-b5c9-d5c20b566a76","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"3b4ce858-6133-49de-8b6a-d9ddeff2b6bb","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"3b5be706-3cac-4223-a780-039867c65c4d","name":"Broken arrow","desc":"As long as it served, it had purpose."},{"id":"3b7dd2f0-6a48-4fbd-807c-7f110110a7db","name":"Chemise","desc":"A chemise that was left at the bathhouse after the celebrations."},{"id":"3b87b900-7849-4230-8312-9342cf9815a1","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"3b912b8e-3669-43e6-a53f-8136b7ae3e99","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"3b97b6ed-09dd-428c-ad6b-b0888ac0ec1b","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"3b9c4a97-b176-4dc0-854f-c609020ab05a","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"3ba9bd0b-3c6f-4442-8d6c-57ee5ced85eb","name":"Dried thistle","desc":"Thistle grows in roadside ditches, in clearings and where there is shade and relief from strong sunlight."},{"id":"3bbfcad3-ff56-4069-9a24-b1b87dea38c6","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"3bdf1489-9b87-4dee-a205-30e0a939c1ec","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"3bebc0b5-dcf8-4449-b37a-a5a362995826","name":"Leek","desc":"A distant relative of garlic. It whets the appetite and is a garnish to any vegetable soup."},{"id":"3c056762-3e14-471a-8f0e-8d57919fb9c4","name":"Cooked lamb","desc":"This cooked lamb is melting on your tongue."},{"id":"3c0d4694-d99a-4099-9595-2d52e95234fe","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"3c1c0ae2-731e-40c1-a917-024fb3f000da","name":"Frankfurt steel","desc":"Steel is an alloy of iron, carbon and other elements, and is the main raw material for the manufacture of weapons and armour. It is valued for its hardness and durability, but it is also very flexible, a quality that a good blacksmith must know how to work with."},{"id":"3c3a5de0-1739-4450-8dee-8432ab87a71b","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"3c3d9405-57cb-4aae-8832-05cd9891f38c","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"3c488ae2-0031-48f9-92e3-3bbe612e161a","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"3c78b620-ca94-11e1-9b23-0800200c9a66","name":"Horse meat","desc":"It is well known that eating horse meat is not recommended and it should only be eaten in case of extreme emergency, if there is nothing else to soothe your stomach."},{"id":"3c9c621e-f4cc-4057-bb93-e5665b87452a","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"3cb71922-2eb2-42cd-8be0-c98831a36756","name":"Sketch – Horseman's pick","desc":"The horseman's pick is a light riding axe with a spike. Used correctly, it's a good friend in a pinch. Its sharp point can cut through armour, its blade through any shield."},{"id":"3cb76456-51fb-4c9b-a56f-ed2836e8ad71","name":"Painter's Guild knight shield","desc":"A guild shield. The three bowls of paint are a well-known symbol of the Kuttenberg painters who decorated knights' shields and painted the frescoes in the royal palace."},{"id":"3ccd2b58-f0c5-4148-a671-7d6ca024d22e","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"3cd47919-2e3b-4f47-ab95-df8456d12efb","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"3cea4901-cce2-4582-b4a0-c208df45cd53","name":"Aketon short","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"3d03fd46-32cb-4a9c-a7a1-f159a5f926d0","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"3d0538f2-85bd-4957-90e3-ebda66fbe67d","name":"The Art of the Sword IV","desc":"A skill book on Sword combat. Can be read from level 15 of this skill."},{"id":"3d0589c0-7949-468d-a781-4b373a9c0d74","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"3d3022c9-09d3-44ca-b647-d20e8c786b59","name":"Letter from von Aulitz's wife","desc":"A short letter from the wife of Markvart von Aulitz."},{"id":"3d4d4f2f-b6bd-4018-b0cf-1b3b1a4a4f93","name":"Suchdol pavese","desc":"A riding pavese with the symbol of Lord Pisek, owner of the Suchdol fortress."},{"id":"3d5708c2-65a2-433e-9792-03c3cbb5c14d","name":"Half plate legs","desc":"Partial leg protection, coverinng only the thighs and knees of its wearer who, for some reason, decided to save on armour cost. One should think twice whether this is a good idea, though."},{"id":"3d5a0649-a046-4eb6-9ca9-8ed9315f0622","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"3d64562f-8f1f-418f-a332-c2c735522c91","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"3d87d944-f57c-4c66-ad90-12145784ed3c","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"3d9aebf4-1a5e-466c-a19a-67cae4788848","name":"Italian Court Armoury key","desc":"Key to the armoury of the Italian Court."},{"id":"3db1577f-aae2-4fcb-85bc-5fcc20a0cd15","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"3db25e6e-dfe2-4b06-a079-80e6064073c4","name":"Antler shards","desc":"Antler pieces, most likely the remnants of a much more formidable hunting trophy. They can be sold or used to mix potions."},{"id":"3dd388f6-6e77-433a-ab12-a4b2dd5d5df3","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"3dd43c63-5ce0-49b4-9efd-db94895aaf50","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"3e066250-57a6-408e-b125-28269d8f3f7c","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"3e09f4df-d90c-4a67-8741-b17d99232e49","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"3e0d0c80-1476-41a4-a414-562e96b19452","name":"Letter to unknown servant","desc":"A letter to an unknown servant, who clearly can read."},{"id":"3e0e1606-ece2-4b25-953e-d15f25b5fad5","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"3e38f85f-a229-4a55-8b45-6ce9bb1d98d8","name":"The Czech Campaign to Lombardy I","desc":"The first part of the glorious deeds that the Czech warriors distinguished themselves with at Milan."},{"id":"3e41dacc-9864-4d09-ac51-ae427800c03a","name":"Scaled skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"3e49c0cb-1c91-4aba-9e2c-985f666283f9","name":"Pepper","desc":"Those who can't afford it don't need it; those who can likely pay handsomely for it. Pepper comes from far eastern countries and is brought over by merchants on their rickety ships."},{"id":"3e4e1ae1-ceab-47b5-b398-e9e49446f10c","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"3e54bbb5-6c17-488a-a41b-06f36b83b434","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"3e5b1f60-2ade-4db5-a345-77e0dec9f3db","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"3e63ce59-84b0-4220-870e-0c185892d1d4","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"3e6a1958-38f7-4191-9391-91ca91735eea","name":"Gotzlin's chest key","desc":"The key to Gotzlin's chest that he gave me as a reward."},{"id":"3e892401-2410-4d20-ab4c-896e031303f0","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"3e8f0ea1-2d2f-4d2b-9d65-1137dd3f170e","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"3ea25acd-bcaf-4074-9472-1142976c9970","name":"Sketch – Noble's hunting sword","desc":"The hunting sword – originally made for hunting wildlife, nowadays often carried by wealthy burghers, as they aren't allowed to carry a noble's sword at their side."},{"id":"3ea90725-e61b-4822-a94d-ab0b65d8f0b4","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"3ed5c65b-39fd-4552-9af5-8252aefee1b9","name":"Scapular with saint","desc":"A tiny pendant, usually worn around the neck or wrapped around the wrist, is associated with praising of the Virgin Mary and other saints."},{"id":"3edb6ed3-6fef-4f7a-9ded-e0a842dce10e","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"3eeff16e-c667-414e-a6a6-9c015cf4e44f","name":"Copies of the poems of Margrave Prokop","desc":"Florian's copies of the verses of Margrave Prokop of Luxembourg from his captivity in Pressburg."},{"id":"3f016165-3daa-44ca-a4f5-c1c3f58240a8","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"3f1553ae-e22d-4472-93e4-caaf782a166e","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"3f208d28-ef2b-4308-9b5e-2112dd2d7299","name":"Order of the cross knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"3f31f6fd-e150-4564-80a5-2a9d1ed7dd6b","name":"Magdeburg plate arms","desc":"Protection of the whole arm and forearm by precisely fitted metal plates. The armour is decorated with brass and artistic ornaments."},{"id":"3f45bb8e-f190-42b4-a2fb-4f3392d47c7c","name":"Chicken coop key","desc":"Key hidden in a chicken coop in Mesoles."},{"id":"3f4bef68-78ba-4668-8f42-15cec497c0d2","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"3f4dbb92-5d5b-44cf-a7b6-59581aef391e","name":"Three-legged cup","desc":"The three-legged cup is really hard to drink from, but it makes you look like you're consuming a mystical elixir."},{"id":"3f5426ab-1364-46f9-9b3c-c84e1654a441","name":"Found horseshoe","desc":"Finding a horseshoe on the ground is said to be a very lucky sign. Especially if I've lost it myself before."},{"id":"3f5dc1aa-ae52-4760-a466-0ebac0d483ed","name":"Couters with rondel","desc":"Simple elbow pads with round rondels. Unless one can afford better armour, every protection counts."},{"id":"3f72f25b-8763-4434-bec7-a2640057ad1e","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"3f8a55d6-5b3a-4b58-b88b-007560f6dc02","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"3f8d9377-29d6-425d-9843-ed9b9af4d52b","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"3fb953ff-bf19-431e-a20c-5600d6d69b96","name":"Ornate tin pitcher","desc":"Drinks served from pewter dishes taste a little strange, but the pitcher sparkles and that's all that matters!"},{"id":"3ff4015d-170c-415c-99e4-a03b94c63b96","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"40011bb3-7e8c-46bc-bf75-60f75e3dc0ec","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"401266f6-ffb4-4ad0-a8e1-4a3cb3edab3e","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"40237d19-ed2f-4fe1-8924-76e2a2854f34","name":"Engraved silver ring","desc":"Such a precious ring is intended for noble lords and prelates. A poor person should be careful not to get the noose for selling it."},{"id":"402f6fc6-147e-487b-8024-19e8d3ffb5b6","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"40328711-ad16-4dd6-9823-456e02a1e04a","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"4032f9a9-a779-4575-bfcb-bfeb80601f35","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"40337bef-e965-4a60-abee-695e9a784fa4","name":"Hunting bolt","desc":"A bolt suitable for hunting game."},{"id":"403db8bc-649a-4b10-9385-01275b96f141","name":"Bavarian plate legs","desc":"A leg protection consisting of forged plates of sheet metal suitably fit together. Such armour protects the warrior's entire leg, but its weight depends on the craftsmanship of the maker."},{"id":"403e5b2c-d3bf-4fa4-918f-f28528835f29","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"40411559-a4bc-44e7-8f2e-8d4d510426e5","name":"Golden chalice","desc":"I'll just have one cup and go."},{"id":"406fd171-acc1-4289-bf8d-cfc4b1ee54fe","name":"Excerpt from the Legend of Christianus","desc":"About the miracles born from the remains of St. Wenceslas."},{"id":"40700938-bd53-480d-80c3-2820ed3b5380","name":"Short gambeson","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"40727421-485b-4fff-8608-a4096e016500","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"40732042-069f-441b-a6c8-6ca46c8c483e","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"407d0b00-9517-45c5-9d87-63895ed72dd0","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"4088957e-d7f7-4cd9-aff9-996745340a35","name":"Canzoniere","desc":"A collection of poems by Petrarch."},{"id":"4088cfbd-c7cc-46ba-9e68-8db8815932e3","name":"Cooked onion","desc":"A nice onion can improve any dish."},{"id":"408b6a4a-b430-4cf0-bafc-abb35935a09c","name":"Florian's silver ring","desc":"The silver ring of Knight Florian Lomnicz, which he received from a young lady as a token of her favour."},{"id":"4092572e-a62e-44b2-bbff-c1faa4f9caed","name":"Noble's sword","desc":"A sword for the noble and those who think they can pass themselves off as such. Its beauty slightly exceeds its combat qualities, but it is still a superb weapon."},{"id":"4095a5c2-cdc0-4c86-8627-0c2646f75c3e","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"4099e298-3599-498b-942a-76716447c100","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"40a13121-6fb3-40f4-91f4-a275a3a2c67b","name":"Mustard","desc":"A rare spice from the southern lands."},{"id":"40abb1e6-7131-4eee-88a6-c7901ea0aa74","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"40b0ff59-7db2-4c16-bf66-253853a34344","name":"Noble's hunting sword","desc":"The hunting sword – originally made for hunting wildlife, nowadays often carried by wealthy burghers, as they aren't allowed to carry a noble's sword at their side."},{"id":"40d7047d-65c6-4e34-8ba0-ff8ca75d7f48","name":"The Art of the Sword II","desc":"A skill book on Sword combat. Can be read from level 5 of this skill."},{"id":"40dabf61-4728-45a7-8189-4c254f5e9dc9","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"40e261ff-e784-446d-ab36-6d25bec8f1b5","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"4100b239-1aaa-4d02-bb5e-1bff01948ace","name":"Basics of Philosophy","desc":"A very worn and battered tome. Can be read from level 10 of the Scholarship skill."},{"id":"4100eb21-1784-40ac-997e-fb3bf9bca9fa","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"410eca70-a174-404b-8ed6-edcc2137206b","name":"My dream diary","desc":"A diary of dreams of Otto von Bergow."},{"id":"410ee66c-ee38-4d67-9a93-ac1ec288f89c","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"412c3109-9030-4d83-ba93-22292e296162","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"412d7d1e-a940-4298-b1d4-5c336a2c5911","name":"Scribe's message","desc":"A piece of paper from the scribe Erazim posted next to his door at Trosky."},{"id":"41317002-bab9-4914-8e1d-537e339229af","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"417d64bd-3df0-4d98-9df1-bda691f36fc8","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"41ab85d7-3f84-4344-9cca-f5ad825a44fc","name":"Lords of Leipa heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"41acaacc-6a6d-4520-968c-329ac41054ad","name":"Cooked wolf heart","desc":"Wolf heart may be useful for some evil sorcery, but a true Christian should not eat such a thing even if he were starving."},{"id":"41f20deb-383d-455b-8d8e-fa31f9c783e6","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"41f61fe6-c890-4b56-ab59-54492f6b62ec","name":"Village elm bow","desc":"A homemade stronger bow made of elm. Elm wood is flexible and hard to split, so it is excellent for making very precise bows."},{"id":"42132ae1-c9d7-4554-92c3-eb26b0aad12c","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"4213ef1d-1a8a-4a7b-b89c-4c996679baed","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"421599c3-d048-456a-9e32-ea801d97f7e2","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"42206555-6ba9-4de3-95df-5d70c85c5042","name":"Hauberk long","desc":"A long, chainmail shirt with sleeves covering the arms and forearms."},{"id":"4223fd8e-e88e-47c9-a9f8-886e1086e281","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"42346c85-9142-4511-996e-72a063ea69b7","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"4240311f-d0ba-4d01-be4e-685cc75d1d4f","name":"Shoe soup","desc":"Tastes like a boot sole."},{"id":"425f69bc-3d23-48b4-b823-073823fa4c7c","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"4271804c-f39d-432b-a859-6aae4c56daa6","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"42a353f0-2794-4444-9a98-b2c6a7f98671","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"42b7de5a-fb21-4650-b896-c0e9ec7d4aaa","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"42e54d97-6e63-4e50-a09d-325ef4dd2286","name":"Weak Bane poison","desc":"Makes running impossible and reduces Health by 110 in 60 seconds. More suitable for poisoning cooking pots than applying to weapons."},{"id":"42ec210a-7603-456f-afb4-9b9ebe3f66ee","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"4306e2d9-f09b-444a-b05d-79c55449ef46","name":"Strip die","desc":"Legend has it this die will help you undress many a wench."},{"id":"43225a23-21fb-476a-916a-2becef0f4bf0","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"4326bea5-c4c2-4ea5-a7d7-6bc591a7009d","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"4329e12c-6e55-4419-8651-8f649318d311","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"432de2b5-9717-4165-9088-ebbc1083b1ad","name":"Horschan mines account ledger","desc":"Copy of the account ledgerof the royal mines in Horschan."},{"id":"432e5851-e789-4485-b2d5-3e878c626682","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"432f22d2-b7cb-45d6-9866-216ac34cc1c5","name":"Victoria's scarf","desc":"A nicely decorated piece of good fabric."},{"id":"4337c61e-987b-4771-be95-e77aadf36f29","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"433ad7d6-cdc0-4dda-94d4-71d4ca4cc68c","name":"Margaret's gold ring","desc":"The gold ring that Margaret gave me as a pledge. It originally belonged to her mother."},{"id":"435331ad-edbb-4007-9738-3a81d7ea39c0","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"435fca15-3125-4d45-b8c9-eb09694e22f3","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"436e4431-9c0b-41fb-a15d-9f534c16ebec","name":"Fur-lined hat","desc":"A fur-lined hat is favourite among the sholars andwise doctors."},{"id":"4375dd38-ef7b-4453-8bdc-ae24dd69154b","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"43778a4a-03a8-4e88-8ac1-e7a9310c0bec","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"43817982-b3f3-4df6-93bb-cc0d7f0eb4d8","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"438298f9-3657-4fce-8052-a7f393cba29e","name":"Magdeburg plate arms","desc":"Protection of the whole arm and forearm by precisely fitted metal plates. The armour is decorated with brass and artistic ornaments."},{"id":"43935b1e-f547-4a2d-b286-73e03b462809","name":"Life in the Saddle II","desc":"A skill book on Horsemanship. Can be read from level 5 of this skill."},{"id":"43d4f735-1fd5-4d87-b2bc-1e2c81c266a3","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"43e66d17-75e5-4832-a511-48c77b8d4cb3","name":"Cooked venison","desc":"Preparing venison is a lengthy process, but the taste is worth it."},{"id":"43eab5d6-dc99-494e-90fe-48f8c91b01d3","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"43ee0517-5498-4d41-8d84-d99396ee427b","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"43f25763-bdbd-4e22-a946-722e2fd156c4","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"43f9b16e-c585-4b5d-9ab7-c9d04241a0bc","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"440a54d0-5413-4e4e-9fec-8726cf4f8a20","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"440bb296-a04a-414e-8928-be00305f1df7","name":"Maleshov chambers key","desc":"Key to the noble chambers in the Maleshov fortress."},{"id":"440f40a1-d02b-4dd0-b977-49fa0972f4c1","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"4427fdcc-52fa-4ce4-8980-bf9de7fc8811","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the subjects and the army, is decorated with Kuttenberg symbols."},{"id":"4446bc26-efff-4117-b4f5-19ee9045847d","name":"Pork","desc":"There are many ways to prepare pork. Just be careful not to burn it or undercook it!"},{"id":"444a846d-c5ab-4a57-b763-f1e625a5b4dd","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"444ea7e1-cd53-40b0-8523-3b671379462a","name":"Stolen shoe","desc":"Some write poems out of love, others steal shoes…"},{"id":"445446b3-ebe4-4040-a3db-050b9500245c","name":"Simple headband","desc":"Coloured or embroidered strips of fabric or ribbons are a cheaper alternative to crowns and headbands, popular especially among the poorer classes."},{"id":"44566eb6-bca6-48a0-bae2-9ef94cc22d8b","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"44593169-7482-4293-80bc-01c3144e4fa2","name":"Cooked beef","desc":"This is how you make meat dumplings. Finely chop your beef, or better yet, crush it in a mortar, if you have one. Add the parsley, egg and salt, knead well and add some flour for thickening. Then artfully form the dumplings and fry them in lard."},{"id":"448d0ea2-c3b4-42ed-aadb-95bddecd206a","name":"Turnau beer","desc":"Turnau beer is known far and wide for its light taste and fruity aroma. An expert will recognise the lower bitterness and fermentation."},{"id":"44999759-bf8b-4c1e-b935-84695ccc1d8e","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"449c9e92-2693-4329-a560-d62c2229bbc3","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"44a1956d-a928-48f5-a8ce-0aa2fc15fcdf","name":"Spearman Training I","desc":"A skill book on Polearm combat."},{"id":"44a58453-2950-d995-4ba6-a3b72efd5ba0","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"44a65a44-426a-4a3d-9d41-3629a7be0e38","name":"Executioner's sword","desc":"It whistles through the air, one last attempt to scream, and then silence forever."},{"id":"44ab51be-5e5d-446d-815a-4c46bc72d1dc","name":"Adult's skull","desc":"A skull I dug up, from a grave under the walls of Kuttenberg."},{"id":"44c97615-ab07-4c13-9545-78da299ebab0","name":"Letter from an unknown noble","desc":"A short letter from an unknown Moravian nobleman."},{"id":"44e538cc-56f9-4027-a0ff-dbb96004d0e3","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"44ecbd68-f083-46bc-be86-b917e9529bf2","name":"Poacher's knife from Slatego","desc":"A poacher's knife found in the Slatejov forests. Evidence for the huntsman. A dog should be able to sniff out its owner."},{"id":"4529e983-fbeb-4c12-8279-ecc089f0ec3f","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"4559650a-f8a5-4621-9e9f-6f47f23e9c88","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"455c02d2-d6f3-43bf-a2ba-b0449b206022","name":"Henry's Mintha perfume","desc":"Increases Charisma by 5 for 40 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 5."},{"id":"45796d27-524d-43e8-9c0d-8e44890756e8","name":"Strong Lion Perfume","desc":"Increases Charisma by 7 for 5 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"458860b0-1f35-451e-b7d9-92edfc81ef45","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"459ae318-ac5d-4de1-b34e-f6ce5ef6492c","name":"Riding cuirass","desc":"Solid front plackart with a thin bar to prevent the tip of a polearm from slipping into the noble neck. The cuirass is made of tempered sheet metal to withstand the potential impact of a spear in a frontal collision of a knight's ride."},{"id":"45a8290d-4491-43bc-8d2e-c5962b94ed50","name":"Hauberk long","desc":"A long, chainmail shirt with sleeves covering the arms and forearms."},{"id":"45af22b4-22aa-49ee-bacb-a282c6ff605f","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"45b0f7d3-95bd-454a-805a-6a8a1b58d8e2","name":"Bull pen key","desc":"The key to Arnoshtek's pen."},{"id":"45b6d780-23e1-4a89-a0b1-dbc234a7ce21","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"45be2e1e-8f43-41e9-a2aa-e815d4e038de","name":"Barrel chest key","desc":"Key to the chest with the explosive barrel."},{"id":"45ef8f46-f855-4f34-8f82-111ec78c8aa9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"45f81a96-0f3e-43b5-bafb-144d4cf9a6c8","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"45f9883e-73b1-429f-a127-34fbfd7084aa","name":"Roe deer loin","desc":"A tasty and not too fatty piece. As with other game, the best meat comes from younger animals. It is advisable to let it hang out for some time before butchering, as there is still too much blood in a freshly killed animal, which makes the meat unnecessarily tough."},{"id":"4608da9f-1525-417e-bfb6-47d0ea019969","name":"Lords of Hradetz knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"461381dc-2805-48be-b238-f54b35386da5","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"46169253-fca0-413e-b5b9-b1a9783c9288","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"463d834b-b36f-439b-8e84-da8d5459e04a","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"4658ee9c-1842-483b-afe2-3a2cc6325e8c","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"466c01ab-e0e7-49b4-b27b-74111231fc74","name":"A collection of somewhat bawdy poems","desc":"A book of titillating verses."},{"id":"4674bb81-bc45-4750-b436-bdc1501a414c","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"468011bd-3f8b-4d56-ad94-20df49af6f93","name":"Tachov maypole","desc":"A wreath from the top of the Tachov maypole. It was the pride of the whole village up until recently, but now I have it. I reckon it'll be used as decoration in Olbram's cottage soon enough."},{"id":"46879403-d210-48eb-ac0a-109d79a489d2","name":"Colorful festive dress","desc":"A colourful dress is typical for dancers and troubadours. But wearing them is seen by many as an eccentricity and a blatant warning against decadence."},{"id":"468d5b94-e33c-49e4-b77d-18402efa5bb4","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"469034fe-952c-47a4-b6df-d7be3651f438","name":"Barnabas' ring","desc":"A silver ring from Captain Barnabas."},{"id":"46920fd0-cc38-41dd-bcfb-958b134ee717","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"46981958-4f04-42ed-b545-bc7564112d38","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"469fdbf9-4e6a-4ab6-b52b-b7ffb4241aa8","name":"Italian chalice","desc":"A golden chalice gifted to the vineyard by one Pippo Spano of Ozora."},{"id":"46a665ee-279e-4cbe-90f0-cec851d86543","name":"Clove","desc":"Rare eastern spice from the Silk Road for delicious sauces."},{"id":"46b051c4-d4e2-4f3a-8b88-e3f64dae4618","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"4704a6ba-02e5-4e45-8ac8-5fab7c6b3d83","name":"Miller's recipe","desc":"The miller's renowned venison recipe."},{"id":"470cfa96-9bf4-41ee-9c74-cf2a1176ce45","name":"Smoked boar meat","desc":"A piece of lightly spiced boar meat with an unmistakable taste."},{"id":"47177c29-7a96-46ec-bbc9-41ebba18b5d0","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"4724c8d8-c049-46bf-a5f3-8bf51ea74828","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"47350028-3216-42d2-b5ff-3baa3a75e122","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"47651279-5727-49bf-8f6a-8b2db5b2ad4e","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"4773c640-aa32-4644-87fd-89160d5ae844","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"47752a74-8dd5-4019-9050-ce836127474d","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"477821f4-91c4-45d6-95b2-3382e0d7350d","name":"Recipe for Artemisia potion","desc":"Increases strength and, if good quality, reduces how much Stamina it costs to attack and defend."},{"id":"4790b2cf-6eac-4d8c-addd-7444352ce4c7","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"47b7d91a-d691-4f20-afff-bef80580dcc5","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"47c62975-bc28-42ca-9ad8-dd7e67887240","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"47f1bb29-163e-4912-bea3-bea556b6bf16","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"4802fa80-37b4-4017-9ee2-7b48a83fe065","name":"Dried trout","desc":"Dried trout must be seasoned well, then it is a long-lasting delicacy."},{"id":"480838e2-d760-4d4b-856f-178b9f1acca7","name":"Fable of the Fox and the Pitcher","desc":"How the vixen found a pitcher and how resentment and anger led her to her death."},{"id":"4835b390-05a4-42d8-a77d-d4fb30ea03d9","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"48376b8e-26dd-4ce3-962f-f9be14924cfb","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"4841c334-f6ef-409e-9f33-70c51efcdca3","name":"Noble's plate legs","desc":"A masterpiece of plate armour decorated with brass lining. The forged plates are further hardened to achieve higher durability, while the metal sheet could be weaker and therefore lighter overall. The plate legs are completed with foot protection called sabatons."},{"id":"48484637-1a8e-487d-afed-8eb7e1573190","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"48818e87-d95f-48e4-9213-88b52b598bcd","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"48a89050-6c16-48fe-beeb-1b00a82e1c80","name":"Broken pickaxe","desc":"Useless on its own, but the iron could be put back into circulation."},{"id":"48aa7458-3c72-4034-997f-69ad1e5b3dd5","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"48ad9fe6-328e-446e-a46d-d63240fb974e","name":"Sulphur wicks","desc":"Smells like Hell itself."},{"id":"48b87e07-1043-4205-b5aa-a417aecf1c51","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"48bd6984-747d-4ae3-9489-666a2bdcd66c","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"48c3ebc8-8719-4c38-8e04-1669cd5d848b","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"48e7619e-9436-4f27-948c-1577daa9a6e9","name":"Plain laminar gauntlets","desc":"Simple arm and forearm armour composed of individual lamellae supplemented with elbow guards called couters."},{"id":"48e9a193-57c5-4f65-9692-f85d8abc07b7","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"48f25a62-e787-490e-83e9-9335bf303ef9","name":"Field crossbow","desc":"A well-made war crossbow. Its folded arms give it such strength that even with a lever called a Goat's leg, it is difficult to draw quickly. This crossbow is found in abundance on the battlefield, though it will not penetrate good plate armour. Anything else, however, it can penetrate like nothing."},{"id":"490b5820-b717-4750-bca4-ae5e26eb7368","name":"Boar rump","desc":"You can serve boar leg with rosehip sauce or cabbage, but never cook it the same way twice in a row."},{"id":"490e12f2-476f-4e31-87a5-88d711fa7c01","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"492f6e68-367b-40b4-8359-e1b8bb72a0a0","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the subjects and the army, is decorated with coat of arms of Ruthards."},{"id":"493563fc-0d46-4ee7-a947-85d6c4063003","name":"Pig skin","desc":"Tanned pork leather. What it loses in natural strength it makes up for in durability and distinctive softness. That's why tailors use it for lining, for finer cases and for book covers. That's the only way it won't tear."},{"id":"49421dbb-22ab-46e5-b146-2903bb139708","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"497fc3e0-199d-41b4-81c3-549f33553ad9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"49826b43-0a0a-4385-ae9c-3aa8dc53807d","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"49997e43-e2d0-49da-ba92-9ac2964890b9","name":"Simple bonnet","desc":"A simple bonnet is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"49a3c635-3131-4584-adef-1aebd771c52c","name":"Carefully wrapped handgonnes","desc":"A pair of hand cannons wrapped in waxed canvas. Something's rattling, but it's probably just ammunition. I have to bring them to Zizka at the agreed ambush site."},{"id":"49ac17ff-a290-4fb4-8ca6-0e3bed1ddbd7","name":"Hounskull bascinet","desc":"A helmet called a bascinet with a fitted klappvisor. It has been pejoratively nicknamed the dog's snout because of its strange shape, but it is easier to breathe in it and is more durable than its older models."},{"id":"49b40181-7b44-4e9f-824c-6c71b061a8d0","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"49b43a5c-3010-445b-bc93-412225a8911b","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our joint effort."},{"id":"49c066ef-3ffb-40ca-8bc7-90ea6380fc75","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"49cc7204-9567-4562-b0eb-7ba32945536f","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"49deb245-d231-4869-ae1e-6700b845426b","name":"Pepper","desc":"Rare Arabic spice for a delicious flavour."},{"id":"4a13b6f7-1b8d-4b60-ab66-cacbed951120","name":"Hungarian heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"4a151376-087e-4b29-86e7-3b7a95cfe5c8","name":"Old coins","desc":"Antique coins with latin writing bearing the resemblances of pagan emperors from ancient Rome."},{"id":"4a2d123d-2725-4159-8797-81ff1f544a96","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"4a3dc302-b035-44cc-a49b-9da912c28cc1","name":"Boiled pork liver","desc":"Fatty pork liver, a delicacy of courts and backyards. But it should be prepared first. Perhaps by frying them with onions in butter, then pouring black beer over them and adding pieces of bread."},{"id":"4a4da84c-f12a-4bc8-94dc-a7d8d76788ea","name":"Toledo steel","desc":"Toledo was already a city of blacksmiths and sword makers in the days of the ancient Holy Roman Empire. But the secrets of the local craft have been closely guarded by the local guilds for centuries. Toledo's steel is considered to be some of the finest that can be found."},{"id":"4a6269c1-5c01-473d-ad69-e0a0c41643e7","name":"Fastening material","desc":"A mixture of nails, rivets and wires. Everything a good blacksmith needs to hold his work together."},{"id":"4a6d818a-43c6-4c3e-9be1-9de8fba18262","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"4a6fa310-067a-404d-9813-bd1761d1c70d","name":"Onion","desc":"An onion: healthy, juicy and fresh."},{"id":"4a88571e-396b-4dd9-b032-746a32aa607e","name":"Golden cup","desc":"Even sour wine tastes good from a golden goblet."},{"id":"4a8e9921-fdc0-4eb1-9607-ecf52ef374c7","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"4aaab21c-0065-4577-aaef-2631e014223c","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"4ab7a21b-087d-4af2-8fc3-383df9a61eb5","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"4abe6efc-4cf3-4797-86e1-a7db80a0db68","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"4ac40ef0-f190-43bd-a3da-f0b05490e0a5","name":"Sigismund's orders","desc":"Orders from Sigismund, the sly fox, to his followers. Letter confidentiality is an important institution, but I'll make an exception this time."},{"id":"4acc4a3f-89ba-408f-a3fd-b0ac92f709b9","name":"Zavish's chest key","desc":"The key to Zavish's chest."},{"id":"4ad1da6c-e05b-4d75-9ca5-fb8c62674521","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"4ae5d82b-ca6b-47ae-be52-4319b1b45b73","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"4b371a94-5a03-48b5-82a6-3dd22ac4caea","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"4b59498f-30cd-49d1-b0d7-df2462965602","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"4b71b17b-1302-4500-a376-c33883127806","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"4b84117f-7972-4be6-84c2-c1e270a09452","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"4b84dc4e-6472-494f-a3e9-2e5470adc148","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"4b868326-ff12-4c25-b22f-eccf034a083d","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"4bacfae1-06e9-482a-be59-3d98ebf7410a","name":"Letter from Vavak","desc":"Letter from Vavak"},{"id":"4bc73e64-93e5-4dcc-81aa-4bf0e005a22b","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"4bc7d395-bc6e-4695-8e7f-7f0a1c57e9b7","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"4bda3dd1-871c-452a-87fe-b783946435c2","name":"Bardiche","desc":"A simple pole weapon for those who need to keep the enemy and the cities' scum at bay. Its original blade is joined with a hook for tripping enemies' legs and pushing ladders off battlements."},{"id":"4bfa707e-2a7b-4091-8230-0b7d83da716a","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"4c211401-3edc-4f85-b489-206b229420fb","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"4c2b02a0-eb06-4bb3-984b-50f3299238b4","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"4c2ca74e-d331-4d5f-96eb-d23be8c6082e","name":"Lords of Leipa shield","desc":"A shield with the coat of arms of the Lords of Leipa, which I found at the Nebakov castle."},{"id":"4c465f33-a20e-4428-b2f5-09cfc6c4f6d7","name":"Odd die","desc":"A die loaded to favour odd numbers. Most of the time."},{"id":"4c50b2ef-2103-4d64-91e8-209df3ae2368","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"4c5a74d8-92b1-4c78-bdef-6c19a762e062","name":"Smoked venison","desc":"Venison is the bounty of nobles' hunts and poaching expeditions."},{"id":"4c7218e8-78c2-49cf-b88a-06f567c24e5a","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"4c7e749d-3e49-4344-897e-f0df5101cf81","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"4c8f353a-0b3c-44f6-86b2-4b230438bb3b","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"4c93efb9-f7d6-40e7-a3b4-582931cec334","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"4cbd42bc-9953-4c98-a778-f310ad909d72","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"4cea28a0-0814-405a-bf24-4fd711f7eb63","name":"Torch","desc":"May it be a light for you in dark places, when all other lights go out."},{"id":"4cf936a9-1b07-47a8-a113-96c60c06eb9e","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"4d0c2c11-1406-4eb9-ae9d-8234da6096f7","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"4d19c12c-41c0-4d6b-8a05-fced4bbb6949","name":"Dead man's right boot","desc":"The right boot of a dead miner. Boots for burial are just for show, not for walking. One hopes."},{"id":"4d1d646c-ce45-434b-96ae-cfa27b86b4b6","name":"Mutton","desc":"You can make a good meal like this. First, roast some meat on a spit. Take some white bread, wine and plums and make a black sauce out of them. Add the roasted meat and sweeten with honey. Serve with lard and baked apples and sprinkle with almonds."},{"id":"4d230ef5-b319-4983-8c4e-4ffb7f395208","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"4d269478-7061-46da-bf62-08917cdc73cf","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"4d45ed69-965f-4d1c-8ec7-01c7c7e753da","name":"Lords of Hradetz knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"4d6a1362-6bd2-4827-bdb1-33cfece59fec","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"4d9e267d-72db-43b0-97a5-7d48b5eb2fde","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"4d9e61aa-3f90-4e5d-b836-f9e158196438","name":"Wormwood","desc":"Abundant grows on roadsides and in fields."},{"id":"4dab452b-7f35-4cd9-942f-f59fd14c83fe","name":"Boletus edulis","desc":"An estimable fruit of the Bohemian lands, tasty boiled or roasted, with meat or porridge."},{"id":"4db8cca1-984d-4680-855c-8e429bac8b22","name":"Argonautica","desc":"The famous myth of the voyage of the hero Jason and his retinue on the ship Argo to Colchis in search of the Golden Fleece and the tragic story of the love of Jason and the princess Medea, written by the poet Apollonius of Rhodes."},{"id":"4dc1302d-3a53-4e21-90a5-7c2fcd4c333c","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"4dc29de7-aab0-47d3-a246-72fdb321f3a8","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"4de2cb9a-a467-4d59-a7ca-677c1f595f54","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"4e15eca9-4a27-4f9f-89db-b1040f11b262","name":"Tavern drawing","desc":"According to a legend told by a merchant, this drawing was made years ago by the famous Master Theodoric himself at the King Charles Inn in order to pay his debt to the innkeeper."},{"id":"4e3394b9-fb77-424f-a7b5-eca35dc51c43","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"4e5c9449-d757-415d-b418-e5276218ee1e","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"4e91e216-73bb-47dc-bcd0-58b3ece477c9","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"4ea3ec22-970d-4ac7-b802-e801e0340253","name":"Toledo steel sword","desc":"A good blade of Toledo steel created from the broken sword of a dead hermit"},{"id":"4ede7cfe-e698-4917-a092-a01d8ac3646f","name":"Holy Trinity die","desc":"A consecrated die commemorating the Holy Trinity, especially by rolling threes."},{"id":"4ee86b89-aa4e-49b5-99a6-60617996ac19","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"4ee9b9ed-fa6d-4463-af64-eda3553bd609","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"4eeab1a5-b910-4be7-a34b-afc41a835082","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"4eed0a2b-1233-40b4-88f5-7f67de916b58","name":"Cooked chicken","desc":"A dead chicken… it looks a little reproachful. To soothe your hunger and lift your spirits with a good meal, roast a young chicken. Then boil some bread in red wine with parsley, sage, mint and lavender. Strain this sauce through a cloth and pour it over the roasted chicken. Finally, sprinkle it lightly with cinnamon or ginger."},{"id":"4ef86f81-b16c-4b42-a9f4-1463113c09c1","name":"Goose quills","desc":"Geese were used to guard property. No wonder, since they're always angry, as scribes are always plucking their feathers."},{"id":"4f37a3ee-a982-4fe1-a573-b3da90a0e57d","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"4f37a71d-5c25-41e2-944e-0ed80d527d48","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4f383f63-1eeb-40ec-a6d3-b0323a1f6e41","name":"Crusaders of the Red Star waffenrock","desc":"A waffenrock bearing the symbol of the Order of the Crusaders of the Red Star."},{"id":"4f4d7ed2-49db-443b-925b-63ea9e765b87","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"4f636944-e9d3-4bae-85b8-165b5a049486","name":"Krizhan's treasure map","desc":"A map leading to an abandoned mine shaft. And what's inside? We'll see…"},{"id":"4f668daf-d70c-418c-8617-5c8522fd8bbf","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"4f7a7d02-b8cb-4bcc-9b3e-edc1992ee580","name":"Eight-sided sword pommel","desc":"The end of the hilt of the sword. It is struck against an iron tang, which is then hammered and the pommel is thus fixed. It serves mainly to balance the whole weapon and as a counterweight to the long blade. In swordfighting, it prevents the weapon from slipping out of the hand, but it can also be used to grip and extend the hilt of the sword. Some swordfighting techniques use the pommel to deliver crushing blows to the opponent's face."},{"id":"4f864840-8011-4b3d-a070-4b8d987c8b42","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"4fc47d26-bd9a-4031-ad4c-d37a837065bd","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"4fc78f9f-4edd-4788-bacc-1bc9a07bd818","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"4fcfc2c4-4a79-422b-acf2-7bfa0741397c","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"4fd067ad-df3f-47ff-84c2-f33bc6a0610b","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"4fd1ba83-ce8e-41b8-a15a-2129570359c2","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"4fdffa7f-33e4-427c-80d0-aacc82511d3c","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"4ff9039f-374c-432d-ad2a-8969c9b957f9","name":"pellet_broken","desc":""},{"id":"5007c141-b935-4110-8a18-6e7077a51b21","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"5023b54e-f271-46a8-8eac-76f0b619cda7","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"502e2e4c-a4c0-4593-9205-f51b11ab2c56","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"50341116-226b-410f-abcb-4f2a52b0efe9","name":"Hungarian knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"50413cc2-f405-44b4-b80e-6150db354bb1","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"5044ce04-d7da-40fb-8f88-d038cbecb900","name":"Sketch – Battle longsword","desc":"A heavier long blade will last longer and won't break easily, but it must be balanced by a much larger pommel. This sword is designed for actual battle rather than a quick sword fight."},{"id":"504c76da-d9e4-4a75-b333-dfd9b358923d","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"505b8feb-9447-462f-ab3d-68557f89d9f3","name":"Burgher's hunting sword","desc":"A hunting sword is the faithful companion of every huntsman and poacher. Commonly used for finishing off hunted game, but can come in handy when chopping woodchips for a campfire."},{"id":"505e9d15-e910-4685-a2f2-f48eaf666386","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"50657f4d-6b62-4d9e-b084-ad078997fc1a","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"507c52b0-ff18-4d5c-96cf-b9da881752d3","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"50825def-8c4b-48f3-a5bf-2e31aa309606","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"50838533-edc2-4be9-bb35-36c27559368a","name":"Brunswick's map II","desc":"A map leading to a part of Brunswick's armour."},{"id":"50a690b9-dcd1-49b8-abf1-d7f89d66be33","name":"Key to Tibor's prison","desc":"Key to the room in the barn."},{"id":"50a9ac1e-dbb5-480b-8b5e-2ba3a1ff8d82","name":"Executioner's axe","desc":"A lightweight, well-forged war axe. The blade forged into the point replaces the spike, which can be used to cut through the ring armour and the belly underneath."},{"id":"50ae7fb3-aa5f-43df-8cd5-064646717269","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"50d3be3d-eac7-4cb9-a2ef-8af0fc889199","name":"Dried feverfew","desc":"A plant that is widely cultivated and used to reduce fever. In many languages, therefore, its name refers precisely to this beneficial property."},{"id":"50d486b0-b08c-4b3c-8001-2c4db8610e71","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"50e86a48-6730-4415-9b0a-bc76f3894b1a","name":"Opportunity","desc":"The sword worned by Vauquelin Brabant. Although he had been looking for opportunities all his life, for him, their window had closed for good."},{"id":"51304f56-c5b4-466d-8aaa-2b1a485f445a","name":"Skull fragment relic","desc":"A small fragment of flat bone said to come from the skull of Saint Margaret. In ancient times, the Roman Emperor persecuted all Christians and had many of them cruelly martyred. Margaret was reported by her spurned suitor to the prefect, accusing her of secretly professing faith in Christ. In prison, the devil himself appeared to the virtuous maiden in the form of a dragon and devoured her, but she overcame him with the help of the cross. She survived drowning and burning by fire, so they finally had to behead her. A few relics of this martyr were supposedly given to the Czech King Premysl Otakar by the Pope himself after his victory over the Hungarians."},{"id":"513342ce-7788-4c3e-8352-4febb17a609c","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"51555071-7c55-4da1-9b61-ee3c14fde18b","name":"Milk","desc":"A jug filled to the brim with fresh milk."},{"id":"519cda64-0ebd-4626-bf25-57344c41ac5d","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"51a6d174-1994-4ea8-a9a7-78b6c3e89777","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"51b7e0dd-885e-4558-9acf-7f671d4a67cf","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"51bb7893-2054-40d3-a355-d278f416c482","name":"Poleaxe","desc":"A knight's battle axe on a pole designed especially for noble warriors, because its forging cannot be entrusted to any village blacksmith. A terrible crushing and slashing weapon, it can cut through even the best armour like a knife through butter."},{"id":"51ca48f5-91ed-42a7-8941-b2666a94ffcb","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"51cbaef8-c34f-4879-a382-97d64829ac1f","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"51cea738-3446-43eb-9dd2-21cb3cf2a886","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"51d0bdc9-725b-4862-aa73-be0cf2734e25","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"51d9a001-eb09-4db8-98f0-d23b794c530d","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"51ea4abf-bff3-4458-89f2-2ed18a4340a2","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"51fff1e3-af18-4361-b86e-ed48bb6863e7","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"52661b06-fe67-4f0c-b7f4-7f7dccbf4338","name":"Hangman's hair","desc":"This talisman from the body of a hanged man is said to bring good luck to thieves."},{"id":"52706f30-e046-4459-b822-e825cbc1d575","name":"Aim and Fire! IV","desc":"A skill book on Marksmanship. Can be read from level 15 of this skill."},{"id":"528b4703-c5c5-41cb-8653-cd0aaa2434c2","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"52a1e5ca-ab02-4d10-814c-72ba2a817394","name":"Letter for Markold","desc":"A letter for Markold of Louny. It might be of interest to a few other people..."},{"id":"52afd6fa-9377-457c-83a2-b5b39321a4dc","name":"Beer","desc":"Liquid bread, a satisfying drink that also fills the belly. Don't overdo it, lest you succumb to alcoholism."},{"id":"52cade93-f5dc-48c5-814d-d49646c0a8d8","name":"Apollonia skeleton's key","desc":"Key I found in the hands of a skeleton in Apollonia."},{"id":"52d761bd-6c65-4eb0-9763-7c6c025a621d","name":"Poleyn","desc":"Simple knee pads that can be part of full armour. They are most often worn separately by those who cannot afford more expensive armour or who would be unnecessarily restricted in their movement by it."},{"id":"52e91d1e-5359-4c43-bbf8-ff7030f9ee8e","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"52ec7aa6-495d-45fd-8846-f0dcecc2c1ba","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"52f31e34-c712-443d-ba38-a8e0286158a4","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"5310b1cb-be0b-4f21-b141-75d22f9825b0","name":"Letter for Anna of Schweidnitz","desc":"A letter from Francesco Petrarca to Anna of Schweidnitz."},{"id":"531bff09-3e7a-4678-8c96-be573164591a","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"5338c259-1041-48c3-b17e-45e3d09b851f","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"53612e76-76fd-4dca-84b6-7905b986dc3b","name":"Bearded axe","desc":"The bearded axe is a battle axe which is a simple tool in its origin, but it can chop down shields as well as trees."},{"id":"53662240-ec45-4f1b-9854-0b1c0018ccc3","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"5372ed88-2ccd-475a-bba9-027d7f30d6a2","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"53760766-3d63-477a-b3e6-117a62cf115d","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"537ef442-be44-4e97-85a4-cc02344d8a5e","name":"Deer heart","desc":"A well-prepared heart is a real delicacy for true gourmets. Slice the heart in two and clean it, then marinate it in a mixture of red wine, vinegar, pepper and onion. After some time, coat it in flour, quickly fry it, then and bake until soft."},{"id":"53a0ba78-7f73-4f19-8932-a8bae86f7814","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"53a8f2bb-d4b6-4f6c-b503-a7d7c018d58c","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"53fd0cb7-015a-48ed-a42f-cd41f4b1b491","name":"War hammer","desc":"A really heavy war hammer designed to break through knights' armour. It can take a lot, but one has to be skilled with it to make it serve him well. It is used with a shield in a hard melee battle, where there is no telling what blow will fall where."},{"id":"54256710-5fc3-4b87-9bb6-e9b7c13bc312","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"5434fd25-94f3-434f-8b21-9c150eab547c","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"5441d6c2-5ac2-4e6f-8e2b-fe7e1e941878","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"5459ce70-3c48-402f-9f59-98e2594328e8","name":"Boiled horse meat","desc":"A proper chunk of boiled horse meat. You don't come across something this juicy and nutritious every day!"},{"id":"545a95c5-004e-4398-bafb-c395c09c8467","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"545d28cf-e1a5-4f3e-9509-32eacc8fb0a0","name":"Marathon III","desc":"A skill book on Vitality. Can be read from level 10 of this skill."},{"id":"54629bd4-e83f-4c4a-8fd3-7883d156d52c","name":"Butcher's apron","desc":"A long inner tunic joined with butcher's apron."},{"id":"546df9c3-6353-4065-bd44-3334aa326dee","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"5470bf89-ddb6-485f-8b0b-dfe50fd8ea9d","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"547814f3-1d5f-4435-a33d-7701983a87de","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"54933fe9-c9e1-43af-b0bf-8595fc3bad76","name":"Chainmail gauntlets","desc":"Fingerless chainmail gloves with tempered sheet metal are an older type of armour and therefore cheaper to produce than plate gloves. Unfortunately for archers, and especially archers, they lack any advantages."},{"id":"54a1327a-76f5-4f15-9780-5edcb794760d","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"54d7a9f5-fe2c-45f3-b386-b74e19155d6f","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"54e55d9e-6841-4298-98de-efbb9b638eae","name":"The Strength of the Knight III","desc":"A skill book on Strength. Can be read from level 10 of this skill."},{"id":"54e5c4a0-4f3d-4a2f-b0ed-eb2a3fb24758","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"54f297f8-62c0-41b5-9ab4-892c7475fc6a","name":"Steel","desc":"Steel is an alloy of iron, carbon and other elements, and is the main material for the manufacture of weapons and armour. It is valued for its hardness and durability, but it is also very flexible, a quality that a good blacksmith must know how to work with."},{"id":"551f51f6-54e2-4ed2-a99d-c7284ff38f98","name":"Embroidered heater coat","desc":"A coat with embroidered hem and forearm is fastened up to the neck with decorated buttons. It is decorated with the symbol of Kuttenberg."},{"id":"5520a038-c902-4a78-a33c-44d9b0740c84","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"5529d943-fec2-4c23-90b5-dae43e8049cd","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the lord's subjects and the army, is decorated with the coat of arms of the Lords of Leipa."},{"id":"552d20f8-a0b8-41ed-bb77-9f3ddd8676ec","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"5538d184-00b8-4604-a68d-9eabbef1f591","name":"Aqua Vitalis recipe","desc":"Reduces loss of health and slows bleeding."},{"id":"553df660-2d26-47b5-9e44-aac7fe1335c6","name":"Leaf-shaped couters","desc":"Simple knee pads called couters with a leaf to improve protection against slashing blows."},{"id":"554452f0-f7c9-4589-bfbf-d457cfab741b","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"55537a99-41ba-4497-925c-a543ced248e3","name":"Cooked beet","desc":"Beet is a very healthy vegetable. Cooking it does not change anything."},{"id":"557160b7-8b24-448b-85b4-c7f296cedbae","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"5580357c-15cc-4d93-b464-cd796ca2c97a","name":"Sketch – Duelling longsword","desc":"A perfectly balanced sword with a slender blade for true sword masters. The longsword is a noble weapon for swordfighting and a quick way to send any fool to the other side."},{"id":"5585da96-12c9-478d-a1a2-d5f206d9fe72","name":"Cooked cabbage","desc":"Cooked cabbage can be served with meat, in soups or just on its own."},{"id":"5589a34c-a5db-49b7-aa3c-528941d61389","name":"Skull Crushers IV","desc":"A skill book on Heavy Weapons combat. Can be read from level 15 of this skill."},{"id":"55aa7896-e052-4a9e-bbc0-b3617cfbb58a","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"55be7c8b-7ef1-4e45-820d-d04a2497f016","name":"Leached coal","desc":"Charcoal produced in charcoal mills and further leached for a long time to improve its alchemical properties."},{"id":"55cc9e0d-63b4-491f-a74c-098654f58e61","name":"Premolar die","desc":"A playing die made from a premolar tooth."},{"id":"55e0731f-4658-485e-96cd-74bda87edcd0","name":"Arrow from Karel's Head","desc":"A shaft with an arrowhead, which I pulled out of the head of the dead Karel, whom folk called Arrowhead. It's supposed to be magical, but I have my doubts."},{"id":"55f81ddb-7c17-41c5-a17c-c9948766c1c8","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"561852ff-75ff-4690-b820-69a83552ec8b","name":"Sketch – Knight's axe","desc":"A knight's battle axe. A dexterous weapon that can pierce good armour or crush the bones underneath with its spike. It also has a pointed tip to finish off tougher opponents."},{"id":"56271b31-57c1-443a-8d97-9524ee2a8240","name":"Poppy seed kolach","desc":"A good poppy seed cake is beneficial to all the senses. It calms and soothes. Quick, one more piece before it's banned for being too delicious!"},{"id":"56287624-0cbb-48ff-bf0a-d61144f1a3a8","name":"Decorated field crossbow","desc":"A war crossbow made by a true master, beautifully inlaid with bone and polished wood. This beauty may not look like it belongs in combat, but it can pierce chainmail armour as well as weaker plate armour. She stretches herself with an iron contraption called a Goat's foot, because no one can stretch her strong shoulders with their bare hands."},{"id":"5690cb19-872c-4b84-a437-d40d96b0ee51","name":"Dried horse meat","desc":"If you have to slaughter a horse, at least let its meat last as long as possible and not go to waste."},{"id":"569438e6-7cae-483b-a4db-d1d25aa783d0","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"56c60b82-5028-4b67-994d-7575e521ecea","name":"Lords of Hradetz knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"56cb0489-6199-4ae3-8530-f30af45b5be6","name":"Jakesh's compensation","desc":"Jakesh's compensation for all the hardships he caused Bozhena and Pavlena."},{"id":"56df0912-36ce-4658-93fb-9cd48883ef9e","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"56eae018-aeff-481c-b9eb-f2271fd227aa","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"56ec599f-1207-4bbb-bf9a-64b853a5927d","name":"Vostatek's empty waterskin","desc":"Empty waterskin of the hunter Vostatek. It reeks of an undetermined alcohol."},{"id":"56fb7288-7e6f-4f32-a0b2-75e2fa47295f","name":"On Simony","desc":"Treatise of Master Jan Hus on the Papal Simony."},{"id":"57002386-7329-4a53-a920-b7ae7c757abb","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"5724d31a-cb34-4418-a360-ccbb6558b118","name":"Jewish veil","desc":"Wearing covered hair by married women is not just a matter of Christian tradition. Jewish women are also required by halakha to wear scarves or hats covering their hair after marriage."},{"id":"573023a0-3e7f-400e-a43c-d3e16b4c72ab","name":"Wenceslas IV","desc":"About King Wenceslas IV and how he reigned badly and ended even worse."},{"id":"573f381a-884a-4afd-b7f9-5d13342decbf","name":"Meaningless moonshine","desc":"This moonshine can get cause you a lot of trouble, and not just an upset stomach."},{"id":"5774e410-d41f-4432-9bca-4fdd636f0b8d","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"577d652d-26d0-4bd7-9df7-b31ce3aa2a4f","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"5795b423-eb5c-4d58-b186-bbdfd0aded60","name":"Riding cuirass","desc":"Solid front plackart with a thin bar to prevent the tip of a polearm from slipping into the noble neck. The cuirass is made of tempered sheet metal to withstand the potential impact of a spear in a frontal collision of a knight's ride."},{"id":"57aef27d-5eec-40fa-839f-70d9db7aea4a","name":"Key to Vidlak poacher's chest","desc":"Rusty key to a chest in the camp of the Vidlak poacher."},{"id":"57ddd40b-3fbd-4bb3-8556-0f9ee5247f40","name":"Silver badge of transmutation","desc":"After your throw, you can change a die of your choosing to a five. Can be used once per game."},{"id":"581b8934-2b5e-4565-94a9-afb9b1063dc6","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"5822e9d1-2701-4ddf-b7f1-96f720ea9ad2","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"584cf614-367b-413b-be8d-20bc5d275b74","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"585fadfb-acb7-4c82-adf3-ef043d85ad21","name":"Golden tournament shield","desc":"Shield made for the Kuttenberg tournament. Compared to a regular shield it is considerably lighter, which is of course compensated by its durability."},{"id":"5866cdf9-181d-4a50-85d4-a6f704986e72","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"588c12c6-f0fb-4b3e-847d-ce1df2739e73","name":"Heavy crossbow","desc":"The heavy siege crossbow is used for shooting soldiers defending castle walls. The strong iron limbs have a considerable draw weight, therefore a hand crank must be used to load it. A bolt fired from this weapon can easily tear through plate armour."},{"id":"58938d62-627d-44f2-bf3e-fb728370d9f8","name":"Cracked skull","desc":"Dust you are and to dust you shall return. The skull serves as a reminder of the transience of human life."},{"id":"58993f70-9608-41db-97e1-3912687e9a3c","name":"Old pointy spindle","desc":"It looks a bit dangerous."},{"id":"58d205c0-3efd-421d-8f97-e377045ef34e","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"5905fc54-67d4-43b4-8f0f-fc9f3fd733c3","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"59179a10-d699-4bf7-87f3-924aabf31063","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"59198cec-bad7-4f70-aa44-f6721433d197","name":"Sack of flour","desc":"A sack of flour, as it was ground in the mill. Now we need to keep it dry and out of reach of rats."},{"id":"5929a2dd-aa17-4e7a-a198-d1fa3ecc0b52","name":"Life in the Saddle III","desc":"A skill book on Horsemanship. Can be read from level 10 of this skill."},{"id":"5936461f-a2d3-49c5-9c13-e38c2fe0d6b1","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"5957228f-d819-4832-9bd6-e0b6f977c364","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"5963c026-aed4-49e5-ad44-8ed048fae1ba","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"596b3395-6db0-4357-b02c-42bfdde8bc96","name":"Solid gold ring","desc":"Such a precious ring is intended for noble lords and prelates. A beggar should be careful not to get the noose for selling it."},{"id":"59700da5-0293-4239-a17b-48ca88a5c65e","name":"Lord Borumlaca's bond","desc":"You need to keep track of money. Especially the money we don't have."},{"id":"59705738-4e0d-4282-b2f1-d01565f85dc1","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"598ffca3-a36e-49b3-8982-e79864410620","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"59c8f6a2-c084-49b4-9699-69a29c58481d","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"59de403c-a85f-4a6d-9b5f-5cbde29c7b03","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"59f059fe-534c-4fc8-a12f-156054d99950","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"59ff0454-c574-4c6a-abb1-3e0b7de98bd4","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"5a0f4eb7-b011-43ea-8a68-8dac557ca5e0","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"5a0fb76a-1999-450d-ab39-48cf75d9952e","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"5a189394-0191-4545-9d9f-98db7fce4745","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"5a245999-c72a-449e-9ef5-3006e42e031c","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"5a2c4707-9ec5-4cac-b209-58b7f85b6d17","name":"Torn piece of dress","desc":"A torn piece of cloth. Looks like the hem of a girl's dress. A dog could probably find the owner by it."},{"id":"5a385f87-eadf-4542-84a1-728635365f4d","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"5a3a64c0-d3ee-4be1-b070-543de4a678f1","name":"Sheep stomach","desc":"This may not be the most popular meal ever, but what can you do. The best way to prepare it is to fill it with whatever you like or have on hand, sew it up and then boil it for a long time. A dish prepared in this way is very compact and portable and therefore suitable for travelling."},{"id":"5a3bf3ee-169d-4bee-84b6-21c9585aaee0","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"5a3e8ba3-e413-4167-b5de-16471793f4ab","name":"Cooked deer heart","desc":"A well-prepared heart is a real delicacy for true gourmets. Slice the heart in two and clean it, then marinate it in a mixture of red wine, vinegar, pepper and onion. After some time, coat it in flour, quickly fry it, then and bake until soft."},{"id":"5a4b0838-0aec-4d13-9f12-3e6a406b5305","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"5a6e55ec-f430-4459-a5e5-e144dbd6675f","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"5a7f1d9b-6053-4116-89e7-991ef4d9839b","name":"Strong Mintha Perfume Effect","desc":"Increases Charisma by 3 for 30 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 5."},{"id":"5a9e23d3-e8dc-4eb7-9805-3bd2fa6d8351","name":"King's die","desc":"An annointed head has no need of a loaded die, since he is always right and can never lose."},{"id":"5acca5da-33b7-4284-8708-c05c5a97382b","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"5ae19ed8-9e8f-4930-9618-ef6472043cae","name":"Straw hat with ribbon","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. Decorated with a ribbon, such headgear certainly looks more cheerful."},{"id":"5afa3ce1-db38-4b2e-9acf-25fea6dfb5d6","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"5afaf2f0-983a-42dd-9071-8e53e4af174c","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"5afcf991-f1ce-48f6-8188-71710835e538","name":"Troskowitz beer","desc":"This beer is brewed by the innkeeper Betty herself and some say that maybe she should stop."},{"id":"5b0a97b2-a305-40d8-93b9-8319eea92840","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"5b2194a2-cf0f-417e-8d38-5f9a9ca1d17c","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"5b300677-a3e2-4aab-b30b-54b25de03d39","name":"Minter's tools","desc":"Minter's tools. Property of the Italian court."},{"id":"5b7acd28-8f5e-43dd-807a-16c61c8f077e","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"5b9e7420-05df-46da-963f-97c63af73f6d","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"5bc71c77-9a4f-4463-8fc5-5a9a75363636","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"5bd2e7c7-b769-4a67-8785-089204d56325","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"5bda7534-6439-4424-bb9c-fe9737b79484","name":"Kuttenberg longsword","desc":"A beautiful sword of the highest quality, the ultimate master weapon! It was made by Enderlin, a swordsman from Kuttenberg, as a copy of the sword of the Kuttenberg swordfighting guild. For the greater glory of Kuttenberg, Master Enderlin then donated it as a reward for the winners of the Kuttenberg Tournament."},{"id":"5bf04beb-9527-4840-8cc1-229ed826e571","name":"Dried dandellion","desc":"Grows everywhere as a weed, but mostly on grassy slopes and meadows it is to be found."},{"id":"5bf2deb5-22b7-4d21-9f37-7892205fd204","name":"Milanese plate leg armour","desc":"Leg protection consisting of forged pieces of sheet metal. The front consists of plates equipped with a dorsal edge, so the armour is harder to cut through and will even endure a crushing blow."},{"id":"5bfa3795-1d9e-4fba-a02d-c15dd070ea73","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"5c0210fe-af18-49cd-b7b7-cfff7e1472f4","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"5c0981cd-1c99-4690-8e54-29dbfc315c1d","name":"Cooked beef tongue","desc":"Beef tongue for lunch – a joy for the whole family."},{"id":"5c17d1d9-70ec-49d9-9b05-ae23247c045f","name":"Weak Dollmaker poison","desc":"Makes running impossible and reduces all weapon skills by 2."},{"id":"5c1c81dd-f04b-4def-a735-e1b85e8bd919","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"5c23394a-3300-4570-a8b7-ef1c11519047","name":"Hazel longbow","desc":"A longbow made of young hazel wood. While it may not be the strongest longbow, but it can still handle small game or the occasional cheeky bandit."},{"id":"5c27901d-2c34-470f-94a4-2692c7ebf9a5","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"5c39d160-135a-4faf-ab1e-0e601a5dcc63","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"5c47a83b-041b-4621-96f7-43b16d42fb6f","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"5c51abfe-42b2-47b8-9fa9-623e1c67d3c4","name":"Forged documents about Anna of Waldstein","desc":"Forged documents covering up the questionable dealings of Lady Anna of Waldstein."},{"id":"5c56aabe-bed1-46d0-b6ac-cf9ba307a8d9","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"5c5bbf87-1f99-4d5b-b0b8-b66291bd1be4","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"5c84266d-d4e1-437c-a017-797081cbc726","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"5c974431-58ce-4717-bd13-e457a83e8383","name":"Stray dog soup","desc":"Soup from a stray dog that used to cheer up the defenders of Suchdol during hard times."},{"id":"5c9aa2cf-0117-46cc-a7c7-1eb8bcc59dc6","name":"Linen","desc":"Every blank canvas should be filled."},{"id":"5ca4ea9d-a556-4051-a90e-ad645eb16b80","name":"Unlucky die","desc":"Sometimes Lady Luck is on your side, sometimes she isn't. With this die, she most likely isn't."},{"id":"5cb3676d-3bf5-4b1a-ae3c-16b0c970a736","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"5cddb16d-56f5-4ed8-a954-7d4644307eef","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"5ce33a2f-2605-49df-b0b2-752e762bcd44","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"5d114fb7-639c-4105-8517-e1e07598e234","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"5d27b4dd-f411-4813-9428-0e54bd417b75","name":"Mintha perfume","desc":"Increases Charisma by 2 for 20 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 5."},{"id":"5d27e973-e497-43ac-9b34-411b84395a5f","name":"Small brass crucifix","desc":"The small brass cross is a symbol of Christian modesty, because no one takes any wealth with them to the next world."},{"id":"5d2ab73c-a011-4d5e-9b9a-79f3c0fc2fd2","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"5d44aaf8-9a56-4e9c-b5e3-ae9c6feecb03","name":"Silver cup","desc":"Essential equipment for every conscientious drinker. Silver, as is known, is good for your health!"},{"id":"5d5b2f4d-5f18-4ebe-ae2e-6eccbd8f92ea","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"5d628c15-9586-41a4-b9ff-67bd734771be","name":"Engraved gemstone ring","desc":"Such a precious ring is intended for noble lords and prelates. A beggar should be careful not to get the noose for selling it."},{"id":"5d68180e-69b9-4cd0-a562-09fdaff8c1b4","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"5d6b70ad-6da0-43fc-8f2e-6802c5bd85d0","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"5d85d44c-0f91-477d-95a3-61bde2d0164b","name":"Riding cuirass","desc":"Solid front plackart with a thin bar to prevent the tip of a polearm from slipping into the noble neck. The cuirass is made of tempered sheet metal to withstand the potential impact of a spear in a frontal collision of a knight's ride."},{"id":"5d87431e-03bd-4ae3-b73a-8ddb52a9af51","name":"Cooked hare heart","desc":"It might look awful, but offal and entrails are all healthy, the heart most of all. You can fry or boil them or add them to soups. The main thing is to use everything and not waste any of the carcass."},{"id":"5d9b16e8-fb1d-4efd-8c37-f3c359a104e4","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"5dac272e-157b-4c6c-8454-97c7d45edc6e","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"5dadef94-0233-4788-9ab2-aa9fb9bde4e5","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"5daf4825-6c03-477c-a196-7e6e7f6b0458","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"5db0bf71-c298-4c1e-a184-485770a9a69c","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"5dc552cd-ed2c-411c-81c6-10e9b2cb2d24","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"5dceabb5-aef0-4bf5-b401-acbc30a44e21","name":"Garlic","desc":"Garlic, adds flavour and will heal any ailment as well as seasoning many dishes. But raw it burns the tongue."},{"id":"5de44311-a590-4652-a76c-13b43f07e70b","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"5e161a0d-ed7c-409a-aaa9-180c596ba03c","name":"Recipe for Lead shot gunpowder","desc":"Gunpowder used to fire lead shot that even the best plate armour can't stop at close range."},{"id":"5e1f8bc7-a8c6-4763-bdd9-843d73fcdc16","name":"Cutlery knife","desc":"Part of the kit of every experienced cook and inexperienced killer."},{"id":"5e528984-9185-4543-af82-99b405753e42","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"5e5514d7-e603-4634-b4d7-e1801010f398","name":"Smoked roe deer loin","desc":"A tasty and not too fatty piece. As with other game, the best meat comes from younger animals. It is advisable to let it hang out for some time before butchering, as there is still too much blood in a freshly killed animal, which makes the meat unnecessarily tough."},{"id":"5e71ed75-4c1e-4149-acb1-3cb4355d9188","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"5e7bca7b-844f-4d95-a122-1ce537d7e8be","name":"Hazel longbow","desc":"A longbow made of young hazel wood. While it may not be the strongest longbow, but it can still handle small game or the occasional cheeky bandit."},{"id":"5e8aa93b-d1ff-476b-b526-a4f1b1eaa26d","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"5e8c8f89-dc82-40f9-b6b3-0f90614932bd","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"5e90d505-f647-4fbb-9a82-a9bfa1633e19","name":"Poppy seed kolach","desc":"A good poppy seed cake is beneficial to all the senses. It calms and soothes. Quick, one more piece before it's banned for being too delicious!"},{"id":"5e97249e-2b25-410d-a96a-8ec652de1794","name":"Radzig Kobyla's longsword","desc":"A sword forged by my father for Sir Radzig Kobyla, which was later stolen by that scoundrel Istvan Toth."},{"id":"5e97a0ba-5442-49b0-9c2d-55895d514b34","name":"Capon's poaching kit","desc":"Equipment of the poaching nobleman Hans Capon. Evidence for the gamekeeper Varel."},{"id":"5e99cdae-4d49-4c48-9a8f-a3428e41ec6b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"5e9b4fa1-aafa-4352-b5d6-58df2c263caa","name":"Nettle","desc":"It can be found abundantly by water, on the edge of woods and in the furrows of fields."},{"id":"5eae7fff-0b97-4431-8c44-f3ea4f348005","name":"Beggar's coat","desc":"A beggar's overcoat is all patch and almost falling apart. Still, in a pinch, it's better than nothing."},{"id":"5eb14c68-d99c-4a11-a260-51cbf2a9d2a2","name":"Recipe for Fox","desc":"Improves speech and speeds up reading if good quality. Also increases the amount of experience gained if best quality."},{"id":"5eb8af37-0db9-43f9-b6fd-d3d428b8ef6b","name":"Vinegar from Loretz","desc":"Someone fucked up and let the wine ferment all the way down to vinegar."},{"id":"5ee103d4-0be6-4d5b-b5a1-4449a3ca5046","name":"Dried belladonna","desc":"It grows in clearings and in leafy woods, but it is best not to seek it at all."},{"id":"5ee43a42-3ce8-490f-83d4-cb8294cbc51f","name":"Wreath","desc":"A festive beech leaf wreath is designed for big days, such as the wedding day."},{"id":"5f02ef0d-0551-44b1-902c-c96a8650d01d","name":"Cooked garlic","desc":"Although raw it burns, cooked it is beautifully sweet and flavours meat and vegetables."},{"id":"5f07ce3c-96a6-49cb-a2bd-0a43ec5325a2","name":"On Composition of Explosives","desc":"Miller Kreyzl's finished book with personal dedication to Hermes Trismegistos."},{"id":"5f0a8ce2-8ebd-4a1a-ade0-997c2621b7f3","name":"Riding cuirass","desc":"Solid front plackart with a thin bar to prevent the tip of a polearm from slipping into the noble neck. The cuirass is made of tempered sheet metal to withstand the potential impact of a spear in a frontal collision of a knight's ride."},{"id":"5f10b9cc-d33b-49f0-bd97-f2b8ab77ce7d","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"5f12b9a1-579c-4921-9a7d-afcc0f38294b","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"5f3aed6b-4415-4e45-ad5e-5ef74df8b2e6","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"5f4b1982-77c8-4d6a-a3b1-e3aa5ee499cc","name":"Wine","desc":"Excellent wine, the consumption of which can lead to fun, song, drunken blabbering, loss of memory and empty purses."},{"id":"5f5431a4-d9a7-4e09-b304-f1fc7a0fb258","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"5f5e8608-0395-45a1-97da-a14ef992b89b","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"5f78a252-2323-4236-874f-08c0092913d3","name":"The New Council by Smil Flashka of Pardubice","desc":"On the council of beasts, which advised the King how to rule well and for the good of all."},{"id":"5f7b7f74-bea6-4c7b-9861-5ac6f06f1d5c","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"5f7ecb68-3d15-4cbf-988a-9e8de87fa0d9","name":"Knight's war hammer","desc":"The war hammer is considered by many to be as noble a weapon as the sword, since it is used where there is no room for swordplay and hard blows need to be dealt. The war hammer is therefore designed to penetrate armour and crush bones in the heat of battle."},{"id":"5f89615b-ac64-4292-9b14-a03f6af04dd4","name":"Kettle hat","desc":"A simple iron helmet for all poor squires. It is usually a good idea to wear it with a quilted hood with a collar, as the helmet alone does not protect the cheeks or neck of the warrior. But it's cheap and can be repaired literally on your knee."},{"id":"5f9951e9-2b3d-4bfb-aaa7-0b5cada6d116","name":"Cooked boar kidneys","desc":"Kidneys are healthy if you do not eat them too often. Stew them and serve with some mushrooms."},{"id":"5fa40d05-bd02-480d-81ec-9b34263a88d1","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"5fa9d7c1-f8ee-45df-a4d7-5a9702302983","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"5fbd1980-82d3-46c6-b75d-cd40afe861ad","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"5fbf1604-f5ef-4dc3-9d6c-5bd98d56c00b","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"5fc25124-a74e-4357-b4ee-9a7ba68d8044","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"5fe3931b-0b18-46b3-9053-eecaf5aa3c27","name":"Brunswick's map IV","desc":"A map leading to a part of Brunswick's armour."},{"id":"5ff91d0f-e525-4b37-9256-d8fea8be1c8d","name":"Beef tongue","desc":"Raw beef tongue is a piece of perfectly lean meat."},{"id":"60013e69-0380-4cf3-a717-48840d9fa0f2","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"6004945e-9358-4778-93c5-fc2b10df87a9","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"602024ca-add6-454a-9b49-ee1e6e710b81","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"6021520e-b6a9-4daf-adce-21a8a208646c","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"6024f383-e716-4a87-aa60-ea2831c9e919","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"6035b2a6-cad7-4067-b0ff-d98f8bd2951f","name":"Master huntsman's hose","desc":"A proper hunter doesn't pull down his pants before a ford!"},{"id":"6039016f-464c-486e-8bb7-f4fe160dbe88","name":"Recipe for Buck's Blood","desc":"Increases stamina and increases stamina regeneration if good quality."},{"id":"604529f5-ba8b-46e8-8210-2683d67d6dbb","name":"Recipe for Aesop potion","desc":"Increases riding and dog-handling skills. If good quality, animals will take less notice of you and dogs won't bark at you."},{"id":"604a7a21-028f-4936-95f2-3d4f5dd1ee65","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"6069fdce-2661-4870-815b-20c37aeda40c","name":"Short gambeson","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"6073159c-6843-41f3-94a3-40e41617ea19","name":"Dried eyebright","desc":"Grows on pastures and heaths and in all places where there is light enough, as well as wet ground."},{"id":"607e172c-6af5-49bd-8adc-4d4297d0b371","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"60820b83-0b08-4c25-9598-1693740c494d","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"60827d19-7234-4004-b7ae-a88e7f17cfd9","name":"Dried herb paris","desc":"It may be sought in deep woods."},{"id":"60dc71ac-80c9-4349-b9b2-49eae3dcba2c","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"60df738c-dd40-4711-8816-8fbb741d87ac","name":"Rusty axe","desc":"Useless for any job. But the iron could be put back into circulation."},{"id":"60ec7359-d233-4de5-b29a-9cc66bcd67cb","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"60fa1492-0a52-48b5-8134-787453cdbcd3","name":"Sigismund's wine","desc":"Wine from Sigismund's personal stock. Sweet, probably italian..."},{"id":"611c2196-5e33-4846-a9e2-de1fda81882b","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"61290f6a-0630-4b68-8172-133c20dbb69c","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"6157c1e6-11e9-4949-a6ea-81f6acf753e4","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"6158e0af-7b8d-448d-ac14-2e501e5470a2","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"61790e19-ff9f-4e0b-9afc-4da65b234b0c","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"61cc4ee1-3066-4203-b331-0268c77ebb82","name":"Curd cheese","desc":"The goodness of curdled milk. Very valuable and nutritious food."},{"id":"61db00a4-24d0-4e19-a396-0e02513ef2f0","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"61f9f0db-1f71-4a5f-9970-7c1bb6e6dfb1","name":"Strong bandage","desc":"A longer strip of clean cloth that can safely stop bleeding."},{"id":"62096670-22ca-473c-adc3-bc63a9369550","name":"Henry's sword reforged","desc":"A sword forged by my father for Sir Radzig Kobyla, which was later stolen by that scoundrel Istvan Toth."},{"id":"6210c80a-e47f-4c22-b8d1-33683fa87fd9","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"6212128a-1a85-4f5c-8e6f-f943bed2e6d5","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"6212ded1-7c80-42a6-8678-cd1df9999fe2","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"6218183a-25c9-411c-a79e-c31e608f2db8","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"62183c25-a930-4044-8e08-243c5d46c6cc","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"622b27fa-3b5a-4c25-be4b-798b5774087d","name":"Bull paint","desc":"A colour darker than the night itself. It will stand out very nicely on a white bull. And most importantly, it won't wash off easily."},{"id":"622c59e5-c409-45c7-8be1-cac931926104","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"622fbf42-ac2e-4867-8d2a-a2f1ce141155","name":"Jan's letter","desc":"Charter with the seal of the Lords of Suchotlesky."},{"id":"623a91a2-4668-403f-bd6b-0d64996e0046","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"6254a511-0d8a-4d7a-93c4-735ad049c4d5","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"626184dc-8280-49b1-9721-791c3824f4ed","name":"Towards Flexibility of the Body II","desc":"A skill book on Agility. Can be read from level 5 of this skill."},{"id":"6269ab2b-3518-47f1-98c5-b7e7858d512c","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"627e8530-e405-487b-9bef-7f85d2459360","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"62875bbe-d9b5-4cd5-86d5-70e1bc640b80","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"629f080d-0a10-42ce-8ad9-c77a07f06a46","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"62a81406-526e-400a-bea3-16cc76dfd069","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"62c7912d-ae32-4217-83ba-440e01061aa0","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"62d366b2-9a4d-40ad-a8c8-f7e0bf663dd9","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"62e8b3b7-5cfb-47a9-b76b-866d736220ee","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"62f5f992-a5b3-4304-91d7-60207031a838","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"6328b5e5-3747-42a0-9d4d-c6e91f3c26ff","name":"On Old Father Czech","desc":"How the Czechs came to their homeland."},{"id":"632f63b1-27c1-4cf9-b1e2-5bee030ae65e","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"63416af1-a0aa-4d1d-943a-54633c8c96ad","name":"Knight's notes I","desc":"Notes of the knight Taras Mura, found in the mines near Old Kutna."},{"id":"634ed69a-23dd-43e2-8208-73c167490d01","name":"Rondel scullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"6356eaac-e97e-42e6-a736-18ebd8dffe5f","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"636790d9-e443-4677-978e-e034386f6f86","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"63942ce5-8009-4a68-b8a1-2c3038c7d21e","name":"Old chest key","desc":"The key from the overgrown shelter not far from Trosky."},{"id":"63ae760f-f5cd-49f5-a535-14ca1d73eda9","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"63d98446-f3c8-4407-8949-c246295b1496","name":"Hard boiled egg","desc":"Breakfast of champions, like from the caring hands of Goodwife Hanka."},{"id":"63e1c614-0694-475d-bb25-6a361db62f3e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"63edd2e4-d663-4d9a-a08f-9ba5e15704bb","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"63eff267-424a-43fd-a5ec-132c89c286f0","name":"Hourglass gauntlets","desc":"The most commonly used type of iron gloves whose name refers to their typical hourglass-like shape. It protects not only the hand, but also part of the forearm of the fighter."},{"id":"63f1a97b-c3c3-4dad-bb0a-a4dd6ecf9092","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"643000ee-d9ad-4501-8e07-b8fb2dd9aaed","name":"Candle","desc":"A candle made out of left over beef or mutton fat by a handy soapmaker or butcher."},{"id":"646a7c60-e4eb-4fd7-bba9-fde9d682b2cd","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"64780844-4257-4d10-8d28-f3898221e11c","name":"River pearl necklace","desc":"Captivating, velvety, shiny river clam pearls arranged nicely next to each other. Tempts the most virtuous woman to vanity."},{"id":"64822a10-ba70-4c6a-a3c3-cf936227a0c6","name":"Ordinary coat with crest","desc":"A plain red and white coat with the coat of arms of the Kingdom of Hungary."},{"id":"648c4232-67d9-4c18-81e2-f38084e864d9","name":"Marathon II","desc":"A skill book on Vitality. Can be read from level 5 of this skill."},{"id":"64aa7b66-2d69-4be6-8a2f-da8e4ee5651d","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"64d00084-c300-4e2c-85ce-eb9a4e81e064","name":"Basics of Gardening","desc":"Everything you ever wanted to know about gardening but were afraid to ask. Can be read from level 5 of the Survival skill."},{"id":"650c2205-584e-49bc-a113-71ee23b4a59e","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"650f0278-7968-43a1-9aea-cabbd0e072dc","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"651333f0-36d1-4321-975f-bc7833a773eb","name":"Winning horseshoe","desc":"The memory of a great victory."},{"id":"652db434-b7d6-448f-8671-10ca787ba1e2","name":"Homemade hunting sword","desc":"A dreadful skull opener or a mere result of the tortured mind of a clumsy journeyman who abused the blacksmith's craft to create such wickedness and called it a hunting sword?"},{"id":"65361263-0cfa-4bb2-a793-2a0f5294bbf8","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"6554936b-c550-4ee6-9b8f-ca61872fe7da","name":"Eldris's notes on gunpowder","desc":"A document in which Eldris, the gun forger, records the supply routes of gunpowder."},{"id":"65a211bd-2c7e-40a8-984f-66c8730444e4","name":"Ornate mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"65b21a98-55fc-4cb6-ac2c-c5a497939ece","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"65ccc0cd-de18-4305-9d64-42bb3c6d8d30","name":"Ordinary die","desc":"An ordinary playing die."},{"id":"6606ae71-7d17-43fa-bb0f-6055eb5b130f","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"660aebcf-2bf5-42c6-a5ff-6d17371d5308","name":"A suspicious bag","desc":"What might be inside?"},{"id":"661cee65-b667-46d4-9cf8-8bd3dafe5fdd","name":"Beef tenderloin","desc":"Great meat suitable for many dishes. It is best served with a white cream sauce."},{"id":"66274903-2236-4561-a6f9-8737facdc601","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"662a9ed1-db91-4c82-87ad-46e0a4fafcea","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"663d6ec1-c5b9-406e-9017-04f1688331ea","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"66454b50-eff4-44da-bff8-5af7a7c86e2c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"666ccc75-e92b-44ce-98eb-f0fa9118c70c","name":"Dried wormwood","desc":"Abundant grows on roadsides and in fields."},{"id":"66760529-5a60-4bc3-861b-6694d571f5a1","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"667f27c6-9994-4517-b839-9c53a932c526","name":"Smoked deer rump","desc":"Delicious hind leg meat. The topside cut makes for the best roast. Dice the rest and boil it in salted water. Now to make a good sauce to go with it, crumble some bread in beer, add a little vinegar and cook it with some pepper and cloves, if you have them. Pour the sauce on top of the cooked venison and garnish with baked apples. This is how Severin the Younger advises deer to be prepared."},{"id":"66854788-1d33-4707-9d2c-e6a9fc134141","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"6686bdde-d1da-4802-92e7-72c61481c11e","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"6692bde3-cd11-48e6-a796-06e6cda4a690","name":"Gold swap-out badge","desc":"After your throw, you can reroll two dice with the same value. Can be used once per game."},{"id":"66c9d3d6-5615-4d0a-a17b-7be8e97be0d4","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"66cc653b-8dd6-48ad-93d2-b0918fe74ae8","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"66d52880-55e1-4a68-9d05-6dabc80f18ea","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"66e8453e-db1b-4196-a0f8-2cd093fa67be","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"66f817cb-14f7-4495-b56e-32d5551ec5af","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"67174626-172d-4071-8e51-a6ee557a0ffb","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"6722f46e-b107-43d7-98ed-3008c6d9e277","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"6746ce07-78de-4fca-b37d-a6bbf3a17d50","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"6749e206-053f-4966-98fa-08ef99cf93a5","name":"Narrow straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. This one is a bit narrower, but it serves its purpose just as well."},{"id":"675384aa-868e-40ea-92e4-fbad5d25a287","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"675ce22d-2906-4d60-ab0d-e4e5a0b4be53","name":"Crusaders of the Red Star waffenrock","desc":"A waffenrock bearing the symbol of the Order of the Crusaders of the Red Star."},{"id":"676a1e4e-c6c4-4c62-9c6b-e8013f415be9","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"676cabb4-cc25-4798-9175-dbd5904d071d","name":"Silver nuggets","desc":"Small pieces of unprocessed silver."},{"id":"677f4c8d-8ec3-444e-b650-6ab58804fb13","name":"Hand wrap","desc":"A hand wrap is a strip of cloth wrapped securely around the wrist, palm and base of the thumb. It helps to protect the hand and wrist against injuries caused by blows, serving both to keep the joints aligned and to compress and lend strength to the soft tissues of the hand during a fist strike."},{"id":"67941ef7-bb74-4f4e-b84a-0421c88b204a","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"67b39af3-6074-4acc-8b28-f11ce62faeff","name":"Recipe for Lullaby potion","desc":"Reduces restedness to 0. Reduces stamina regeneration if good quality. Suitable for applying to weapons and for poisoning cooking pots."},{"id":"67c11981-a636-42d8-8bb2-84f5170825eb","name":"Fine bolt","desc":"A bolt slightly better balanced than a regular bolt."},{"id":"67d94657-0883-46f2-afda-4bccb7390dcf","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"6805d4c1-9b6a-440b-8008-929309767ca9","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"6806f7e5-3145-4f36-8269-3db5904d6978","name":"Strange potion","desc":"A strange tasteless and odourless liquid. I wonder what will happen if I drink it?"},{"id":"68335d8b-33ee-4400-a2e0-2fad06b6c4ab","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"68471905-e1e5-4036-ad1b-bd6acbf98fda","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"684cb3f5-a873-44cb-9a8e-413b3bd6a0e5","name":"Painted pavese","desc":"A riding pavese covered with linen without a noble coat of arms."},{"id":"68620240-b4f1-45fe-854c-ff916e6e9844","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"6899bb3d-1805-0681-c4f9-b0ec5b9a01fa","name":"Brabant's chest key","desc":"The key to Brabant's chest."},{"id":"68aa778b-9c3f-4c11-8c76-b68b617c58ab","name":"Bloody stone","desc":"A bad omen and a witness to an evil deed."},{"id":"68c2dda2-4031-4d46-b26d-e5e4d3dd3383","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"68d9f225-030a-43c0-83b3-c4bc57568581","name":"Cooked roe deer kidneys","desc":"Cooked roe dear kidneys are a true delicacy."},{"id":"68dda40c-cd13-4f23-bd55-02b4ec98d241","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"69035e60-2647-402e-ab30-74c0640062e6","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6919b54e-6f77-44a3-9960-fc33973fae8c","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"691efc71-4a91-4010-9d94-17331a39f79c","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"6928adc4-0e1c-40c5-820d-e779e2a538d4","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"6932b7a6-0870-4fa0-b8cc-f7dbde0add4f","name":"Sheep guts","desc":"Freshly extracted sheep guts. Carrying something like that around is a bit... disgusting."},{"id":"697d5f06-8baa-440c-8759-042718496455","name":"Jester's disguise","desc":"A colourful coat decorated with jingle bells and an equally colourful jester's hood are worn by the minstrels in an attempt to attract the audience's attention. Be careful not to burst out laughing."},{"id":"69883082-35a7-4d36-b00d-9ab08b3b2587","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"698912fd-ca7c-413d-8775-35c6700ee587","name":"Maleshov fort map","desc":"A sketch of the Maleshov fortress, given to me by Rosa Ruthard."},{"id":"6998be01-738e-4294-ad41-f164194f3afd","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"69bd176a-c672-4dcd-8d23-669bd66119c5","name":"Golden cross with garnets","desc":"Very beautiful gold jewelry with dark red gems."},{"id":"69d340fd-34bb-4b03-9796-00326060eb23","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"69e092f2-da95-43f3-877f-7095839bd72d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6a12847a-6efb-448e-a2df-b64406a997f2","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"6a235270-1a07-4397-98a8-ae6d38a96a4d","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"6a2e4d42-708d-412f-be0a-fa492961db4c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6a324aa9-a566-406c-a3f8-6c416a00b399","name":"Cooked trout","desc":"Tasty freshwater fish prepared with butter and herbs. It's simply a fairy tale."},{"id":"6a479d81-e642-40b3-92ad-0e43793f8c66","name":"Aranka's die","desc":"Aranka gave me this die to make it easier for me to play against her husband."},{"id":"6a5aba05-bbb5-45f6-83a8-c45128c586c5","name":"Bach moonshine","desc":"I expect the people who work at Bach have no choice but to keep this with them at all times."},{"id":"6a5b27db-d0bf-4d65-9456-99c1414f08be","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"6a64daf1-e6f8-40ca-80f8-584f8c058fde","name":"Von Aulitz's house key","desc":"The key to the house where von Aulitz is staying."},{"id":"6a7ecaa7-6a74-4fb3-aec1-3cb7be8b3a22","name":"Black powder keg","desc":"A keg filled to the lid with black powder. I shouldn't walk close to a fire with it."},{"id":"6aabc182-4cc0-4095-a134-a2b23eafc5c6","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"6ab498b8-f2d4-4c34-95ae-ac7b7d1434c2","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"6ad578ee-4e5e-4756-b4c9-c056d76dba75","name":"Bandit's brigandine","desc":"Folded armour made up of forged slats hammerd on a leather vest is a slightly older form of protection than the fashionable metal cuirass. Both provide similar protection, but the brigandine is a bit heavier, but there are warriors who will not let it go. This one's been through a lot, though, and has had more than one owner. Most certainly haven't given her up willingly."},{"id":"6adba5b0-f689-4bec-9cde-3e189eca468c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6adcc5b3-a614-464a-a828-d84c901aa0fe","name":"Saffron","desc":"One of the most expensive spices in the world. Less than a pinch is enough for any meal."},{"id":"6ae9759c-ee8c-44ae-9c0e-bffaa42d34b4","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"6aea3320-1597-49ac-9bf1-85d239d05f96","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"6af3c964-d481-4760-b234-9ee7648e3b0f","name":"Simple bonnet","desc":"A simple bonnet is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"6b04b8a5-24ea-491f-928b-669d84277dd0","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"6b131b8d-5bd4-4058-be3d-69de966b18c3","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"6b1eb8c2-e7ad-4523-9aaf-c57ba4311340","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"6b35be56-a572-4124-86c7-a686895e5bbf","name":"Fur-lined hat","desc":"A fur-lined hat is favourite among the sholars andwise doctors."},{"id":"6b55dd84-0aef-46b3-bc7e-3595b6a12959","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"6b6575d6-a553-43a3-9ad1-5ccc900e23ad","name":"Tin badge of might","desc":"Use it to add one extra die to your throw. Can be used once per game."},{"id":"6b9f3418-856b-4b4b-82a9-0e4256df4986","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"6bc4d54b-6742-4286-93a4-a2ce68c9ab8a","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6bdd6ed2-0de9-476a-94ea-e434215b4932","name":"Wayfarer's map I","desc":"A map to a site where there's treasure."},{"id":"6bfe50b1-dafb-4bf7-a1d9-1f61feb3ac53","name":"Horned sword guard","desc":"A cross guard, also known as quillon. It serves to protect the swordsman's hands from the opponent's blade. It can also be used to execute a grappling hold or strike to an unprotected face. In sword making, it is put on the blade's tail before the hilt is made and the pommel is put on. In cheap weapons made by poor blacksmiths, it will loosen over time and begin to clink unpleasantly."},{"id":"6c073097-d88a-4a30-ba87-281ab1e12ef9","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"6c0a9616-c84c-4cf3-bc1d-eda02b3473fc","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"6c17cdca-9a14-4295-9175-fe0808b3107c","name":"Order of the cross knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"6c236047-0990-474c-8b5b-81f7b7886e64","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"6c2840dd-3251-4768-b86b-2802671dc728","name":"Master's Studies III","desc":"A skill book on Scholarship. Can be read from level 10 of this skill."},{"id":"6c606ca6-be8e-4283-850d-f2c43690d20b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6c612eeb-92b2-4129-a6fe-4e072d01adeb","name":"Forgotten key","desc":"A key I found in a jug in an abandoned cottage."},{"id":"6c6d9f9a-a6fe-48d2-a1df-e939301db3c7","name":"Cooked perch","desc":"Perch or other fish are healthy, you should eat a lot of them. You can season fish with spices and coat it in flour. Then fry it in butter. Finally, sprinkle it generously with fried onion and serve with bread."},{"id":"6c784241-c718-4caa-8054-97bbcd7a6a11","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"6c7ea4d3-011f-4052-a23e-3349cc54d56c","name":"Chainmail gauntlets","desc":"Fingerless chainmail gloves with tempered sheet metal are an older type of armour and therefore cheaper to produce than plate gloves. Unfortunately for archers, and especially archers, they lack any advantages."},{"id":"6c901be7-2769-4a78-ae78-c0bcf4056a3f","name":"Sixer's braies","desc":"The very ripe braies of yacker Sixer."},{"id":"6c990432-ff7a-407e-b782-a671b8ab9db8","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"6c9dcdf3-7db0-4272-94d5-939014a6accc","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"6ca69142-da64-4abc-b989-682fc91b83c7","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"6d0db311-9bef-435c-adcd-b83c7c485709","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"6d2453f5-e251-4604-ae1e-863322604399","name":"Gold badge of might","desc":"Using it will allow you to roll one extra die. Can be used three times per game"},{"id":"6d8a625e-d9f1-49ee-8ee1-0f35e5c4e699","name":"Tournament practice sword","desc":"A wooden longsword that can bruise but not kill. For those who are serious about swordsmanship, this is an invaluable tool for practicing."},{"id":"6da25d7c-28e3-4f51-a8b1-83ca9d41bb0b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6db01b1d-af61-4f5e-8939-7f40a0e90e85","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"6db862f3-c954-4a98-88df-8d00c92227fd","name":"Songs of the scoundrel's pupils","desc":"Good poems about women, love and wine by pupils of the scoundrels."},{"id":"6dc80a04-dad0-4259-a854-e085caa74cc1","name":"Silver chalice","desc":"One day in the future, people with battle with sticks for such a trophy… maybe on ice!"},{"id":"6dc82f14-f86d-4e37-99e6-34b4f3408e12","name":"Wolf pelt","desc":"Wolf hide. Rumour has it that if you sleep in the woods under a cloak of wolf fur when the moon is full, you'll gain supernatural powers or transform into one. But you don't know anyone who can confirm that."},{"id":"6dd6d009-084d-48e8-a344-646d06467a4f","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"6de6b589-32f1-4626-a69b-293a4a35ff7d","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"6e3eb008-e700-4b9a-ada3-d06a309ba080","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"6e4534a5-9768-45b7-95ac-7f7052d6ca35","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"6e49be7e-8972-4a8f-bd3b-011ffa55a198","name":"Plain laminar gauntlets","desc":"Simple arm and forearm armour composed of individual lamellae supplemented with elbow guards called couters."},{"id":"6e5ffd57-f39f-4792-9fe4-d72d580ee42b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"6e6bdeb8-a74e-4b40-b7fb-1b1d871011f5","name":"Lords of Nebakov kite shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"6e7c50cc-0334-4a13-a079-89549ec3262f","name":"Letter of admiration","desc":"A signed charter expressing admiration for the Bailiff Thrush from Troskowitz."},{"id":"6e8a9ff0-cfa8-44ca-9936-7fccd76af714","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"6e94d811-77f4-414f-ad82-24d44e53269f","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"6e9b44a4-3e7d-4c26-881f-325b3214972b","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"6e9d99b8-42e7-4b84-809c-60fccf9824f9","name":"Plectrude","desc":"Biography of Plectrude, the wife of Pepin II the Middle, Duchess of Francia, Regent of Neustrie."},{"id":"6ea0d39d-e4b2-4621-b400-177d03fe1036","name":"Sheep remains","desc":"The remains of Siegfried's sheep, which was torn apart by wolves. It may help Mutt to sniff them out."},{"id":"6ea234fe-a242-4f2c-bf17-fe9e07efcde7","name":"Wysoka priest's alchemy book","desc":"A book by the Wysoka parish priest. So many years he spent working on it…"},{"id":"6ec70dbb-bba6-4d9a-88ec-d0b82d794ad9","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"6eda54cb-f9e9-4291-a497-e183a53d259e","name":"Killer's helmet","desc":"The helmet of the notorious murderer and bandit Burkhard."},{"id":"6eea57fb-b9db-4547-a833-db382b627e45","name":"Ramhead hammer","desc":"A masterfully made war hammer with a ram's head shaped hammer that excellently smashes skulls and penetrates armour. The mercenary commander Andrew earned his nickname thanks to this weapon."},{"id":"6eeda739-9694-4183-a6b1-154d0e828b98","name":"Sketch – Common longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"6f03da10-cc30-48ae-b449-02d311fa8fda","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"6f0c9c31-474f-4254-9dd6-2ab54fb87060","name":"Ci die","desc":"The second in the line of the demonic dice, she likes to get lost, but when she's with her sisters she's very strong."},{"id":"6f1d0e9e-d532-4476-af7a-e24ea01da040","name":"Hare meat","desc":"Hare meat is very good, healthy and tender. It's a welcome addition to the diet of many villagers. You can prepare it with onions by taking the whole hare and putting it in a baking dish. Salt it and pour some butter under it. Once roasted, cut it into pieces, put it in some beer and continue to cook with a little vinegar. Meanwhile, fry some onion in fat until golden brown. Then add it to the sauce, thicken with breadcrumbs or flour and cook until done. You can season it with any spice you have."},{"id":"6f22124c-8e9e-4396-ab53-07eaa9f5cff9","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"6f275925-deff-47ba-8bd6-68ac4ce1c6ed","name":"Aketon short","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"6f31e9ab-7eb3-4fe0-9785-653568eec882","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"6f4e253b-e2c2-4222-a5bc-82e08b7c1732","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"6f6bc011-d298-4f69-8877-71f94abe6d9e","name":"Hauberk long","desc":"A long, chainmail shirt with sleeves covering the arms and forearms."},{"id":"6f6fc0a8-71f6-428d-9adf-a3f32312b998","name":"Thunderstone","desc":"A finely smoothed stone of dark colour, endowed with magical powers, with a lightning hole in the middle. It's pleasant to the touch and slightly warm in the hand. It will bring me good luck and protect me from all evil."},{"id":"6f82c02b-bc46-4155-a289-514ce0193e73","name":"Lightbringer's secret","desc":"Leather cover, stamped corners. The mysterious book that the miller Kreyzl wants. The author is one Black Bertold."},{"id":"6f8f9e73-188e-4237-8d9b-10467f97b882","name":"Bohuta's map","desc":"Bohuta's map showing the place where he buried his equipment when he decided to redeem himself."},{"id":"6fad4fc0-eb11-4394-943f-d8def9871cc2","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"6fe74ea3-7daf-4a9a-9c17-ec33e25202fd","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"6fe85d68-4169-4b37-9b1c-6b5ce2f759a8","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"6fea0285-a936-4d49-8e6b-661c7d6c546e","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"6feafd6d-a1b6-4ae2-a98f-bc999a86e24d","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"6ff81f7e-18b6-4368-9203-eda0cb6e8286","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"6ffb3ec9-cf43-4fa8-86c0-72ee462943af","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"6ffe2d77-9d77-4e57-a37c-33ce270506c3","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"70282815-415c-4003-a752-8d9f8e3ab9c1","name":"Master's Studies I","desc":"A skill book on Scholarship."},{"id":"703a5c80-733e-4733-acc9-0e01d07ffe82","name":"Satin","desc":"Smooth fabric in satin weave. The nightmare of anyone who foots the bill for a wedding dress."},{"id":"704c3453-06b8-4b47-85db-7c0c87fc17b5","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"707470d0-9ce2-41ff-9836-1911f8420448","name":"Johnny the Gob's shield","desc":"A shield with the symbol of the infamous bandit, Johnny the Gob."},{"id":"709d5796-fbc0-49a5-9fce-2f8e5e6a7fc2","name":"Travelogue of the so-called Mandeville","desc":"On the wonders of the land of India."},{"id":"70b471e1-8770-4bfc-bac2-65e46d39d4b6","name":"Sack of supplies","desc":"A sack with supplies ready for travel."},{"id":"70b5b68d-93d5-49ef-8b32-a85fa50a4be0","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"70f059e4-6e15-4b6b-b2a2-40b94482d2d4","name":"The Tale of Melusine I","desc":"The first part of the Luxembourg legend of the fairy Melusine."},{"id":"70f838fb-ccb5-4f57-ba3e-71073bffa249","name":"Golden heraldic brooch","desc":"An exquisite piece of jewellery made of gold decorated with a nobleman's coat of arms. Such marked pieces pose a considerable danger to thieves and must therefore be sold or melted down quickly."},{"id":"710e3706-8974-404b-b23a-6f51670ef1ed","name":"Hunting arrow","desc":"An arrow designed for hunting game. It is extra accurate, and causes more damage."},{"id":"7134f452-e040-402a-92a4-19c57714b73f","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"713a4f57-647f-4ab6-8c6e-ad189f6f5eee","name":"Spined kettle hat","desc":"An iron hat forged from a single piece of sheet metal and therefore slightly more durable, but still unnecessarily heavy. Its spin makes it better able to withstand blows to the head, but it needs to be supplemented with a quilted hood or collar, as it does not protect the warrior's cheeks or neck on its own."},{"id":"713b9ee5-0611-4e5c-afa4-341d1e9f35eb","name":"Wolfram's spade","desc":"This spade is like a gift from the heavens. Its blade is so sharp, it could split the clouds. When you firmly grasp it in your hand, you feel as if it wants to speak through you. The subtle cuts and scrapes on it are like the graceful strokes of the angels themselves. On its blade, you can make out not only soil, but also traces of clay, calcium, and charcoal left behind by its many years of service. With a spade like this, you wouldn't even hesitate going up against the local invaders."},{"id":"71504cc0-3e40-4d15-a0b4-e5f127f4f8a2","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"716d5995-0ba7-4f04-a7ad-0f1e0a7b4783","name":"Lords of Nebakov kite shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"71940f4a-de33-4473-9006-c371f1a62ad5","name":"Cooked beef kidneys","desc":"Tasty and healthy. Fry them in fat or roast them on the fire. Just like with other offal, you need to take care not to consume too much and too often. They also make for an excellent dog feed."},{"id":"719dd7c1-eb23-4a91-bf97-78ded6fbe55a","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"71ac7078-9890-43ff-8eed-2b71f88b7dfc","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"71b2e63a-7b64-426e-bf85-30396f464798","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"71cf5f5a-5c61-4ad0-b91c-ebd2a14bca69","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"71eb8e1d-86a9-47a4-8d75-9f4a2d76e813","name":"Hunting bow from Hans Capon","desc":"A beautiful hunting bow, given to me by Hans Capon as thanks for rescuing him from captivity at Maleshov fortress."},{"id":"71f8bad6-f5b8-403a-984b-ca85acd7fc81","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"7202b003-6d27-47f9-a7e5-4dee6d0abeed","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"7203871d-9f36-4515-95a9-fc5bf8fb0855","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"721c3333-c48e-4306-8709-69b085bba566","name":"Victoria's herbs","desc":"A bundle of dried herbs from Victoria's house."},{"id":"722c1f3a-2ae7-45be-8d15-8f0e683b14e6","name":"Simple headband","desc":"Coloured or embroidered strips of fabric or ribbons are a cheaper alternative to crowns and headbands, popular especially among the poorer classes."},{"id":"7259b9bc-dfae-487e-a8bb-c1f500894e0c","name":"Chamomile","desc":"Most often it is found in fields and fertile land."},{"id":"726f19bb-1e66-49c2-8a7a-1526c8e11f3c","name":"Sketch – Ataman's sabre","desc":"An unusual curved blade used by nomads on fast horses in the middle of the Hungarian steppes and remote Arabian deserts. It can be swift and excellent for offense and defense. Every good Christian should beware of losing his head to such a weapon."},{"id":"72838e2a-40ff-445d-acdf-16555ca8c185","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"72a7e155-fae8-4c97-bad7-458664218252","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"72b7892f-4a47-4dc9-ac76-4601bc717294","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"72d798c0-7b6b-44e6-b8ec-0cb867d09f59","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"72f8e3ae-4825-4a2f-a8ac-c8d832fa5bcb","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"72fc5bfd-fade-43f1-8edc-dd3880de59d8","name":"Cooked crayfish","desc":"You can make crayfish soup as follows. Boil it in boiling water, remove the claws and tail and take the meat out of them. Crack the shell, add butter, set the pot on the fire and let it simmer. When the dish turns red, strain it through a cloth and make it into a soup or a sauce; finally, add the meat you took out earlier."},{"id":"72fd94b4-839c-4800-bc27-8b326a1763f5","name":"Old straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. This one is definitely past its prime, though. It looks as if the wearer was chewed up by a goat."},{"id":"7302d988-8c0a-4304-942e-e383a257c7bd","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"730595b4-73e6-4528-8bfb-d1f2caf1f7cf","name":"Pieschel's sword","desc":"This weapon has been through a lot. Maybe too much. The owner seems to be using it more as a baton than a sword, since its too blunt."},{"id":"73110793-50ca-4c3b-8091-7de1d117eca2","name":"Painter's Guild knight shield","desc":"A guild shield. The three bowls of paint are a well-known symbol of the Kuttenberg painters who decorated knights' shields and painted the frescoes in the royal palace."},{"id":"73390081-6964-4a5c-b403-2998423afd57","name":"Simple bonnet","desc":"A simple bonnet is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"73404591-f72d-44a5-91ed-e729ef7a3cef","name":"Vostatek's waterskin","desc":"Vostatek the gamekeeper's waterskin filled with pure spring water… or perhaps diluted with something."},{"id":"734e704a-38b8-4c71-a829-46262c7c78dd","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"735b8e98-48df-44d7-ab02-05ccef87f35e","name":"Hynek's letter","desc":"A piece of paper carried by Hynek the 'Greaser', a former thief."},{"id":"737fcf80-5ce8-45d2-9ffe-10b952d125a0","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"738bdbfd-a47c-48bc-8173-2a6dbbc7ea3d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"738ca996-5bb8-4719-ad97-c941c3759ccc","name":"Praguers' waffenrock with buttons","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"739f8e83-1b0c-45f6-9ba1-df921e042e6c","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"73a1c315-e542-4629-a64d-867af9d32098","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"73b693a0-8dda-456e-8590-a2f291a1bccc","name":"Sigismund's sausage","desc":"Sausages from Sigismund's personal store. They seem longer than Czech ones. Could the Emperor be compensating for something?"},{"id":"73b9efe7-4082-4d5a-a879-4b5c7bdc5ea2","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"73c0db9c-8885-4490-86c5-20df546f693c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"73d76cba-003a-4d6f-afcd-cfdec4819a96","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"73f70c33-c24f-4053-8ea4-c5a8ed5ac358","name":"Mortuary chest key","desc":"The key to the chest where the gravedigger stores the belongings of the dead."},{"id":"74047697-1962-4284-8b5f-c9f93c2716b7","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"7407d0ea-c069-4b07-8f4d-63e123e3c0ef","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"741f2a1b-abbb-423b-9808-a2515e2ae7fd","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"74261b17-d32f-4332-b28f-f66ca78f2493","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"7439ee5f-e530-4392-adea-8f6dc4c50f65","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"745cdd86-68e3-4753-a337-c815df38ed03","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"74885c5c-e489-45c2-bb69-6011092396b3","name":"On Libusse and Premysl","desc":"How princess Libusse found a husband and thus began the Premyslid Dynasty."},{"id":"7493a39f-6649-477a-9f00-a059c1e396dd","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"74a53093-fb6e-4ca9-b2c3-9438c7d27f76","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"74a5b8e2-4cdf-4609-9460-105da3e98284","name":"Nutmeg","desc":"Rare eastern spice from the Silk Road for making delicious sauces."},{"id":"74bc6c64-73f9-4128-bbc1-3da5894cc28a","name":"Dried pork tenderloin","desc":"Here is a Hungarian way of cooking pork. Pound the meat, put it in water and let it rest overnight. Take it out of water, salt it and sear it. Fry plenty of onion, add wine, vinegar, juniper, caraway, cloves, pepper, ginger and a little nutmeg too. Bring everything to boil, add the meat, keep the lid on and cook over a low heat for a long time, while basting with wine."},{"id":"74bf3396-241c-4c6b-a886-f5f966048852","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"74fff27f-c725-416f-95fe-8f02d81f7dc5","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"750a5405-4896-4459-8382-b27b27b53824","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"75356aa3-08ea-430a-8989-f8a2bb31746f","name":"Sketch – Noble's sword","desc":"A sword for the noble and those who think they can pass themselves off as such. Its beauty slightly exceeds its combat qualities, but it is still a superb weapon."},{"id":"753ff5b2-e5f9-4866-8ff0-67d272d9ee02","name":"Weak Lion perfume","desc":"Increases Charisma by 3 for 3 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"75536233-0d88-432f-aee2-f9028ead6404","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"75864a5a-541a-4b68-8465-793f9082127a","name":"Master's Studies IV","desc":"A skill book on Scholarship. Can be read from level 15 of this skill."},{"id":"758e27bb-d5ed-47b6-92c7-ba952b44a04c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"75a0739e-fa75-4f99-be68-e1c3ba30d57e","name":"Lu die","desc":"The first of the line of demonic dice."},{"id":"75a2775b-94d5-4ae5-8613-f57530d052ab","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"75a79bb7-9f5f-432d-b910-d97bea2b22d0","name":"Trosky armoury key","desc":"A new key to the armoury at Trosky."},{"id":"75bd92ba-d594-41ed-beec-b6cc457a6f60","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"75c1d086-48e9-4ee5-b570-92b4cec7f203","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"75dddb4a-a5b6-4bca-898a-00768065b79a","name":"Sketch – Nobleman's horseshoes","desc":"A blacksmith's horseshoe sketch. Because every master had to start somehow."},{"id":"75ed6ef0-ba24-45c4-95f6-1602aeb2c816","name":"Dorothy's laundry chest key","desc":"A key of the owner of the Zhelejov baths, which opens a chest containing washed and patched clothes."},{"id":"75efc6ff-2f7b-48a9-b059-009cee57e6bb","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"76009b72-1e65-4a78-98c7-6ada2f172c1f","name":"Duelling longsword","desc":"A perfectly balanced sword with a slender blade for true sword masters. The longsword is a noble weapon for swordfighting and a quick way to send any fool to the other side."},{"id":"760d7474-6e5f-4987-9631-d007d5fff22e","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"762523e1-9df5-422f-b0a4-6124fd75c44d","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"763cc45b-c826-40d5-ab76-fd2b8c1194a2","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"765d83b6-e6c8-4caf-8fb4-cdae43c41985","name":"Simple shoes","desc":"Simple shoes, also called krpce, tied around the ankles with a lace. Footwear mainly of poorer families."},{"id":"7668a95d-22d2-4754-b9a0-1ceb0cda2182","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"7673efc2-0566-4dde-9e18-f96c7790ce2e","name":"Old hunting crossbow","desc":"An old, homemade lightweight crossbow that is long past its prime. Its arms are made from a simple piece of wood. therefore it has little power, but it can be drawn with the bare hand. It reloads quickly, but is more suited to hunting small game and scaring off poachers and vagrants."},{"id":"769e850a-6bd6-40f5-9238-1be7b7dfa6ac","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"76a0c8f1-c55e-44b5-93ce-22a7145eac8d","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"76c4e088-94c3-4d66-9360-8e69eea6640d","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"76cbf2ce-ea18-4cb2-a839-7f079473622d","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"76def0f7-1464-471c-aa02-10e3f1de4d36","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"76f096c4-6829-43fb-8101-a163d15468e0","name":"Couters","desc":"Simple elbow pads. You can suffer all sorts of injuries in combat, so it's best to protect yourself however you can."},{"id":"76fd4ad3-84e2-444c-9822-b67c4adbc349","name":"Roasted chicken leg","desc":"No one will refuse a juicy chicken leg."},{"id":"7711224d-e467-4e4c-a2cb-f4e8445d7909","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"77262956-daee-4a0e-9035-517569f18ef4","name":"Ash longbow","desc":"A long strong bow made of ashen wood. It has a decent range and thanks to its draw speed it is suited very well for fighting."},{"id":"77288289-02b0-4664-86b7-c786163388c9","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"7729cc59-e459-40e9-b0d1-a00b5b00c9d6","name":"Tin cross","desc":"A simple cross made of plain pewter, but it will certainly suffice for a supplication for a better tomorrow."},{"id":"773b7147-0bac-4005-9e3f-f3a4c942cc0b","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"7768d70a-6a1c-41c8-a193-d0a9e463b6ad","name":"Woodsman's Journal III","desc":"A skill book on Survival in the wilderness. Can be read from level 10 of this skill."},{"id":"777154c4-0a50-4d59-bbbb-323bbceefc3e","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"778a51bf-4b25-4882-8d47-eb43cfc60297","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"77c0b6af-c12b-4097-8318-cf026fc97560","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"77d8b552-8618-4506-ae20-fd3f74cad8f3","name":"City of Prague heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"780cca43-280a-4b59-ba08-03b636931b98","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"781627f1-b0b4-4553-8132-41ebcd11a065","name":"Wooden duck","desc":"A wooden dog toy."},{"id":"7822a4bf-5937-4ea3-aafc-ddd6774711a2","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"7826bc93-2e22-430a-8e8c-0224f2a7f503","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"7834651d-efed-4730-8289-2fcc82556aba","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"7857db34-2407-4585-a4a7-d7546be3cf81","name":"Sword for young Lord Semine","desc":"A good sword of Toledo steel, made from the broken sword of a hermit."},{"id":"786efb5a-320e-4c2c-aec8-fc4c8ba2d534","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"7890f319-861c-4af4-932d-0226b4e55112","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"7899825d-ed6f-4f00-b698-649ba652cf6d","name":"Beet","desc":"Beet can be eaten even raw. It's really healthy."},{"id":"78a2ec95-1821-429d-9228-8550784545d6","name":"Sketch – Basilard","desc":"A short sword that is said to have been given its special name because of its origin. Whether it really originated in the Swiss city of Basel is questionable, but it is certainly a great weapon that can be carried, unlike the sword, even by non-noble townspeople."},{"id":"78c3bff8-c964-439c-a0b8-053497ac80e7","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"78c516d4-f64c-4d26-b59a-7a6a793632f4","name":"Pinot Noir 1401","desc":"There was not enough sun and the autumn was rainy, so the grapes did not have time to ripen properly."},{"id":"78ca2b08-e64c-42d0-b546-f59193e965b5","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"78dca400-f504-42ff-a02b-700018f39993","name":"Boar tenderloin","desc":"A prime piece of a boar meat, juicy and tasty. Prague burgher Havel of Silberstein liked it very much and used to prepare it in a special way called wild boar on venison."},{"id":"78edc2df-34d8-4657-abb1-252b20dbe5f6","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"78f07bb7-990d-4c5f-8020-db8ba62ade02","name":"Love letter for Regina","desc":"A love letter whose contents only Regina understands."},{"id":"791f83ac-d633-474e-b76a-1e566da1f7e3","name":"Mary the Jewess, Mother of Alchemy","desc":"One will become two, two will become three, and the third will become one as the fourth."},{"id":"791fb136-8c52-4575-9c8a-a938bd24f9b9","name":"Buresh's safe conduct","desc":"A letter of safe conduts entitling the bearer to enter the smelters at Grund managed by Master Buresh."},{"id":"79382f9c-6435-4a1d-9724-2c8496923f0a","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"793ae9c7-739f-4754-a6c8-530d29c50b0a","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"794a5046-d543-497d-8613-734dc777ff81","name":"Quilted coat","desc":"Quilted thick coat, suitable for every splash and slots."},{"id":"7963c946-f52a-4373-94f4-b30fabd15f8f","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"798db76e-9d15-4697-b995-7b8cbf7c2f34","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"79d777bc-14b9-4073-8cdb-85a94b91ba98","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"79fd972e-9fc4-403c-ad6c-ea085fda50e1","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"7a3ca93b-262b-42d4-b371-e82b2cfe511c","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"7a4b6b2f-b66e-45e9-8267-40c0a1a8acea","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"7a622750-5d38-4d8f-94e4-ed8c42dabe58","name":"Strong broth","desc":"This broth's so strong it could wake up the dead."},{"id":"7a8ae393-45e3-4a7f-b1dc-7b8f5b6bd589","name":"Turqoise rosary","desc":"A pretty turquoise rosary, which, God knows why, is the focus of attention of many in Trosky Castle."},{"id":"7aa28765-c119-4fc7-99d4-c01cce00560b","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"7aae14d0-e0da-489e-9424-22ec626965e1","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"7ad4078c-6119-4b31-850b-1439b4296b7c","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"7ae2e77b-bdae-46cb-b6ac-f532cf225748","name":"Egg","desc":"It's not advisable to carry raw eggs into battle with you. Things could get messy."},{"id":"7ae64aa3-444f-4f10-b05d-4a943c965551","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"7af660c5-cf0a-4ee8-ab26-8727dcfd18a8","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"7b0531bd-cbd8-4f35-a626-a872467e4fd4","name":"Wounding bolt","desc":"A bolt with a serrated tip to increase damage and bleeding."},{"id":"7b0c9bba-19d9-463b-8831-b27431060ed1","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"7b1804a5-0a41-4acd-9260-037ae252c5d8","name":"Training bludgeon","desc":"A soft wood bludgeon, so that it doesn't hurt too much in a practice fight."},{"id":"7b1c57a3-54fd-441f-8cad-21157bd1a85b","name":"Wolf fangs","desc":"The fangs of an adult wolf. In their time, they must have brought down many a doe or sheep, and perhaps even drove some stray unfortunate from the world. Maybe I'll get some coin for them, or I can carry them around for protection. Either way, I should avoid doing any unfair witchcraft with them."},{"id":"7b1c6ee9-b6f0-406b-85cf-23a6260d19ca","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"7b2fb402-c0ab-44d3-aaaa-fe1ab228e29a","name":"Tournament kettle hat","desc":"A kettle hat that was lent to me as part of the equipment for the famous Kuttenberg tournament."},{"id":"7b31ad0f-1443-4421-a43f-f380dde5bdf0","name":"Dagger of Astarte","desc":"At first glance, an ordinary dagger that seems to beg for another soul hidden in the heart."},{"id":"7b327a11-7007-419d-80b0-e885085bf9b5","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"7b34c172-9e0c-4ab4-b4e2-8ccb8665e853","name":"Bone rosary","desc":"One of the most common types of counting beads. It doesn't count coin, but something quite different."},{"id":"7b41ffb2-dbcf-4497-b197-b5245c3628b6","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"7b47b880-79db-49d0-b3d8-0105c1065ea4","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"7b672958-3452-4d3e-afd0-07baccde7f57","name":"Strange strawhat","desc":"An odd straw hat I found lying under an old tree. I have a strange feeling about it. It seems to carry with it the will of those who wore it before me."},{"id":"7b6aad88-4205-48fa-b4cf-353e4b744985","name":"Simple shoes","desc":"Simple shoes, also called krpce, tied around the ankles with a lace. Footwear mainly of poorer families."},{"id":"7b77a0e9-91cd-403f-be3e-6be6bac8e589","name":"Worn Cuman bow","desc":"Cuman riding bows are one of the lighter bows, easy to handle even from the horse's saddle. Their strength comes from the layering of different materials similar to better crossbows. This bow has been through a lot, it's weaker, and you can hear it creaking. It can still deliver a killing blow, or at least one that hurts."},{"id":"7b8050dd-265a-4cd5-aa17-de869950a3dc","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"7b84f3b7-71da-46a4-929e-8a1c96b859b4","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"7b85aa56-71a8-46d4-8ea3-d891bcd1511b","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"7b9efff4-7c84-4b60-98e7-6ea367ca3525","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"7bac4681-ec39-4521-ba88-cda1df928917","name":"Stolen cup","desc":"A finely decorated silver cup. No wonder it attracted the attention of a thief."},{"id":"7bb1fdb5-a8f0-44a8-a4da-db674cbc66ed","name":"Sketch – Hunting sword","desc":"The hunting sword is the faithful companion of every hunter or poacher. It is usually used to finish off hunted game, but it's also handy for cutting kindling for a fire."},{"id":"7bb206c5-9417-4721-94b9-6cb8c506f01d","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"7bc9ff60-3fab-45ff-a563-83460c2f351b","name":"Oak bark","desc":"Well dried and ground, it's an invaluable aid in tanning and dyeing. The bark is supplied by the millers, who dry and grind it when they have nothing better to do."},{"id":"7bd19eb9-22aa-42b4-a76d-05e9af9e4de4","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"7bd295d3-f5dd-42f7-a922-9fd277cf566e","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the subjects and the army, is decorated with Kuttenberg symbols."},{"id":"7be1d9a0-e772-4e83-92b1-30b6fd8aa2ea","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"7beb4bdc-6478-455c-8746-afb92c604be8","name":"Honey","desc":"Honey in a honeycomb, useful to the apothecary, cook, candlemaker and brown bear."},{"id":"7bee2fc1-5396-4247-b96e-b17da94c368e","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"7c187d42-171d-4a95-80c5-03ea4c7e5849","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"7c1bdbe2-b586-400e-98dc-4b7f81c247cc","name":"Products of Skilled Hands III","desc":"A skill book on Craftsmanship. Can be read from level 10 of this skill."},{"id":"7c278c7d-7e5c-4329-a3c7-695974e970f0","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"7c3877fd-c929-4245-a451-2c18ce3b5729","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"7c5126cd-b010-4484-8465-22a3d69fa0df","name":"Wine","desc":"Excellent wine, the consumption of which can lead to fun, song, drunken blabbering, loss of memory and empty purses."},{"id":"7c555686-2a47-45d3-9547-0d29c0dc27d6","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"7c557521-9b40-44bc-a34b-2a52097110fd","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"7c621760-e296-4069-9303-14c05f1745ba","name":"Recipe for Lethean Water","desc":"If you want to put to rights the imprudent choices of your life, all it takes is 1 mouthful, and you can chose your perks anew. Beware, though, the procedure is irreversible and painful!"},{"id":"7c63de58-f0e9-4daf-b646-6a651aace476","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"7c6ed87e-5c87-4550-9aec-6a4c2e1e5980","name":"Ye Wicked Blacksmiths","desc":"How the wicked blacksmiths help the dishonest craft and to all manner of theft."},{"id":"7c8cdd6c-b094-4b70-b588-286b50cffe02","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"7c9715cd-dca4-46f1-93e7-c48111bbac1b","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"7cac0c1a-ad34-4fd7-a1e6-4d45edcf307f","name":"Morgenstern","desc":"A crushing polearm weapon whose name may refer to the first morning star, but for the enemy, a blow from its blade is likely to be the last thing they will ever see. A seemingly clumsy weapon that can command respect in any brawl."},{"id":"7cdbd3d0-a99f-40a3-8e85-2ea554473628","name":"Jewish hat","desc":"A pointed yellow hat, also called a Judenhut, is a strange and hard to miss head covering for Jewish men."},{"id":"7d0d48fd-bfdf-445d-8c74-8860fb2e667d","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"7d1d5034-1463-428e-91bb-9453de22af15","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"7d273b3b-b9dc-405c-a003-92c7b087a067","name":"Fresh milk","desc":"A jug of fresh milk."},{"id":"7d2bac32-2999-491a-88c7-9c9394838061","name":"Kvyetoslav's love poem","desc":"A love poem that a miner dedicated to me when I promised to help him write a letter. I don't think it's a very good love poem. It's a pretty nasty thing."},{"id":"7d45902e-57ea-43e7-96bc-71dc79caedae","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"7d602455-05bc-49b9-a11f-67c76992016c","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"7d830ff0-3632-42d6-83ee-f2dee122c998","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"7d84f5d5-bec4-417c-ae82-a49e48fb1c63","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"7d965e53-8b82-4708-a0d7-65a88aef1875","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"7da04bba-0564-42da-bcf1-9a2fc5faf025","name":"Mint","desc":"It is rarely found in nature, but rather alongside houses and in gardens cultivated."},{"id":"7da54a04-67c4-4767-8b40-ee9211cc465c","name":"Noble's belt","desc":"A belt is primarily used to hold weapons, which are then much easier and faster to access. Of course, the amount of things that can be attached to the belt is limited."},{"id":"7da54a04-67c4-4767-8b50-ee9211cc465d","name":"Knight's belt","desc":"A belt is primarily used to hold weapons, which are then much easier and faster to access. Of course, the amount of things that can be attached to the belt is limited."},{"id":"7da54a04-67c4-4767-8b60-ee9211cc465e","name":"Hunter's belt","desc":"A belt is primarily used to hold weapons, which are then much easier and faster to access. Of course, the amount of things that can be attached to the belt is limited."},{"id":"7dab39b0-da4f-44fc-a7a4-57410ec57bf8","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"7db6b854-e307-4a47-ba39-943190b2469e","name":"Enhanced long-range arrow","desc":"A well-balanced arrow with modified fletching designed for better accuracy at long range."},{"id":"7dc23682-02cd-43d9-bcc8-e805489ae1a0","name":"Bascinet with bretèche","desc":"An older form of the bascinet with a removable wide bretache, complete with a chainmail aventail protecting the warrior's neck and shoulders."},{"id":"7dc3c5f1-3903-4c3f-9094-f58b893a9b82","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"7dc96cc5-13a1-4cf5-82a9-586ad446f1d2","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"7e2a262b-6a46-48e5-ab87-a2ececdfa89f","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"7e3aeefd-f28f-4920-a07f-a0cdc91effa4","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"7e55a88a-1a07-443e-846b-b24217c732f9","name":"Rondel scullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"7e94e8d4-c0d5-4713-bf06-8bfcb72afc88","name":"Tied jester's hose","desc":"These colourful trousers are worn by jesters and generally eccentric people. The higher quality suggests that whoever had them made was very serious about their insouciance."},{"id":"7edcd587-f3ec-496b-87c4-0eee3b759acb","name":"Bloodied wedding dress","desc":"A woman's wedding dress full of dust with a dried bloodstain. The ruined dress has been lying here for a long time, but it's still neatly folded. Interesting…"},{"id":"7ee19ec0-1656-4680-85d4-dabd707a783d","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"7ef3972c-8441-4ac4-9927-102ddcfd6e32","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"7f0bddf1-0202-4328-9512-5254a68a0211","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"7f0d4823-7fa2-4db2-9582-abfd873ebdbb","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"7f0d6ed2-42eb-4556-9d66-97c50fe145d6","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"7f2e56ae-21b3-41c5-a0de-c6070090443a","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"7f34e014-4a60-46e6-9d60-5cbe691b9101","name":"Atalanta, maiden to men equal","desc":"About the maiden Atalanta, the huntress and favourite of the Greek goddess Artemis."},{"id":"7f4cb8d6-d9f6-44dc-b883-5ae4da20cb26","name":"Samuel's hunting sword","desc":"Samuel's hunting sword that never leaves his hand."},{"id":"7f607c14-7345-4234-abfb-563d4845a921","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"7fa36676-6346-47a7-b064-01311fef7443","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"7fb874dc-eb91-4d29-896d-b4acbf40bf53","name":"Woodsman's Journal I","desc":"A skill book on Survival in the wilderness."},{"id":"7ff1bc2e-8664-4691-a8c7-0e6d9cf0e96c","name":"Godwin's longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"802507e9-d620-47b5-ae66-08fcc314e26a","name":"Better hunting arrow","desc":"A well-balanced arrow designed for hunting game, it is slightly more accurate and causes more bleeding."},{"id":"802510a0-b398-4898-ab4b-e28b9882aba1","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"80591e34-92ce-44d7-a4ed-b2fcd073eb6e","name":"Stolen dagger","desc":"A stolen dagger found on the arrested thief."},{"id":"805ba438-34c7-4ef5-8699-d7a61721b1c4","name":"On Saint Adalbert","desc":"On Saint Adalbert, his life and miserable death at the hands of the pagans."},{"id":"80653340-ef06-469c-bad5-54769fed366d","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"806c81cc-2959-4a5a-9644-40174d336f4b","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"806f1ee6-fd67-4c11-bf13-abd76c30da79","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"807cb386-d194-48b5-a9b6-1c6679c5ae33","name":"Marble head","desc":"This head carved out marble must have fallen off a statue. Its strange features and remnants of old paint suggest it's quite old."},{"id":"808101ad-28ff-4425-ad2a-5fbe4f9fbbbe","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"8085164b-616a-40a4-b966-4a884e9248b6","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"808f9b56-d847-4e04-ba12-5a434012c6ff","name":"Gnarly's crossbow","desc":"The faithful companion of Captain Gnarly."},{"id":"809d192c-b92b-43ab-b064-95ff3815bb08","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"80a17c01-d59a-4b6e-b043-f68a0ff413ae","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"80da65ef-da4d-4b61-95e6-200932aa5d1b","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"80f33a28-4368-4672-a3d3-5d3d39cb5f86","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"8116d7f0-5115-4141-b1a7-499bdf88f8ff","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"811d8a20-3cff-4319-ac69-00d233d65e89","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"81358847-cc24-4036-aa0f-99f180cd4ecc","name":"Cooked boletus","desc":"An estimable fruit of the Bohemian lands, tasty boiled or roasted, with meat or porridge."},{"id":"813e821c-983c-4cbf-afe3-2676d2c2a886","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"81402465-f7ee-4af1-9dc7-23e58632d8e3","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"81494400-b654-4aa7-8f31-c95c689db5f6","name":"Carpenter's axe","desc":"Heavy work axe used by carpenters for working beams. If there's no better weapon at hand, it can become a tool of revenge."},{"id":"817509c8-c13b-47c2-a066-aff854ebb9e6","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"81804c8b-379a-474e-b6fc-a8cc79252ec8","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"818ddc7b-ec27-4585-8abc-059c8a178878","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"81912e06-3a19-438f-ba3b-01ed492b9d93","name":"Noble's spurs","desc":"Riding spurs, also called rowels, help control the horse when riding fast or in the heat of battle. Their purpose is of course not to torment the animal, the individual spikes are therefore blunted."},{"id":"81bfb39f-d6da-4299-9776-98a93360dcff","name":"Composite kettle hat","desc":"A simple kettle hat composed of several pieces of plate. It protects especially against blows from above and therefore it is good to wear it together with a padded coif or a full collar. The advantage is certainly its lower price."},{"id":"81c21fdc-3d62-4d1f-854f-eb364db1bcff","name":"Beef","desc":"This is how you make meat dumplings. Finely chop your beef, or better yet, crush it in a mortar, if you have one. Add the parsley, egg and salt, knead well and add some flour for thickening. Then artfully form the dumplings and fry them in lard."},{"id":"81db3800-aded-4a25-8e6b-c53b7b056d30","name":"Basilisk egg","desc":"An egg laid by a black rooster and brooded by a frog. Perhaps it gained magical abilities, or maybe just a slime shell."},{"id":"81ddb564-7b10-4412-b8ae-15d521482c18","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"81e27f41-709f-47c8-96b3-8f8c9619d2fa","name":"Composite kettle hat","desc":"A simple kettle hat composed of several pieces of plate. It protects especially against blows from above and therefore it is good to wear it together with a padded coif or a full collar. The advantage is certainly its lower price."},{"id":"81f039de-85b3-4bf1-b6a3-4e2370794ffe","name":"Suchdol pavese","desc":"A riding pavese with the symbol of Lord Pisek, owner of the Suchdol fortress."},{"id":"821a808c-4858-4257-b08f-150f35b40555","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"822799d3-5523-4e07-90f1-52d5f163529d","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"82567c71-c11f-49e1-a527-c5187301a3b6","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"826b17e5-9fc9-4a25-81ab-98c740972e98","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"8282730b-0195-4b73-b4b8-5fb1e46a78ac","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"8289ff89-ec8d-4958-884c-26b115cd79f9","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"82c48b4f-8ff9-40c0-8217-38dfef73de15","name":"Balshanka","desc":"A valued halberd of Sir Jan Posy of Zimburg, which he lost when Cumans ambushed him."},{"id":"82c61093-683e-4f7b-8c91-c6b09aecc8a7","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"82d7b0ad-1048-4bed-8d97-a11315b2388f","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"82e8b2bb-185a-4c74-becb-e8cee1afa435","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8305d806-a858-4f8d-813c-6904dc584a01","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"830da116-3885-48c0-b080-cef6481be0ca","name":"Breviarium Romanum","desc":"The Breviary contains psalms, prayers and stories from the lives of the Saints and is therefore an invaluable aid for the salvation of the soul of every Christian who can read."},{"id":"8325dc40-0ffc-4dfe-95dd-03f8a0735883","name":"St. Anthony's standard","desc":"The standard of the miners from the St. Anthony's mine in Kuttenberg. Such a standard is the symbol and the pride of every miners' gang!"},{"id":"838f1bb8-0f54-4f99-a460-2c0daf464a9e","name":"Letter from Sokol of Lamberg","desc":"A short brief letter from Lord Sokol of Lamberg bearing a coat of arms with a goat head."},{"id":"839992c8-657b-4d5e-97c9-96ff94430d72","name":"Flanged mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"83c76770-b0a4-4885-9d38-427f5b70b99d","name":"Song of the Merry Poor","desc":"On how the poor take no heed and sing merrily to themselves."},{"id":"83ca3839-e8e3-4e2d-a9f0-d73b56348cb4","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"83ddc936-0659-44d0-a16e-0a3e187c5027","name":"Horn","desc":"Cornucopia. The horns and hooves of animals are traditionally used mainly to make good glue. However, good hornwood is also needed to make bows, crossbows and even some jewellery."},{"id":"84007a37-4b69-488c-a010-deb4d2e1764a","name":"Key from half-built cottage","desc":"A key I took out of a jug in the ruins of a half-built cottage near Slatego."},{"id":"8411acde-9099-499c-8dbf-b493eb6b4452","name":"Golden crucifix","desc":"Looking at his disciples, Jesus said: Blessed are you who are poor, for yours is the kingdom of God."},{"id":"841abec7-6ed2-4760-85a8-2c8ff133db25","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"84286824-882c-48a0-b261-e5ccea6929f6","name":"Vidlak bandit's map","desc":"A map from the bandits that camped above the Vidlak Pond."},{"id":"842c178a-54b8-4c2b-8255-77d430165320","name":"Marksman's hook gun","desc":"The hook gun is a much more massive weapon than the handgonne. The barrel is fitted with a hook on the underside, which serves to wedge the weapon behind an obstacle and limit recoil when fired. This particular piece is cast from bronze by a master gunsmith, therefore can be fired repeatedly without breaking."},{"id":"8438f1a0-18c2-4a47-89c6-bf3f00bcae67","name":"Pork tenderloin","desc":"Here is a Hungarian way of cooking pork. Pound the meat, put it in water and let it rest overnight. Take it out of water, salt it and sear it. Fry plenty of onion, add wine, vinegar, juniper, caraway, cloves, pepper, ginger and a little nutmeg too. Bring everything to boil, add the meat, keep the lid on and cook over a low heat for a long time, while basting with wine."},{"id":"84408a4e-1255-4977-ab47-6173d7938574","name":"Breviarium Minorum","desc":"This breviary is a small but invaluable guide for daily spiritual consolation."},{"id":"8444bd63-5c51-4293-9b95-946d091e12f5","name":"Short chainmail","desc":"Shortened chainmail shirt with long sleeves."},{"id":"8460003f-637f-4713-92c9-4954037c4b9c","name":"Common bolt","desc":"A regular crossbow bolt. It won't fail or surprise."},{"id":"8466a2fa-e47e-412a-b866-bb1478190da3","name":"Punches, Kicks and a Few Slaps II","desc":"A skill book on Unarmed combat. Can be read from level 5 of this skill."},{"id":"846e3bca-9deb-427f-a5d5-c46f4663506b","name":"Hroznata's rosary","desc":"It is said that work in the vineyard is as busy as in the church. And who should know more about it than Hroznata himself, who devotes his life to both. Through the wine he finds the way to God, and through God the way to the wine. One would think that the beads on the rosary would be the actual vine grapes."},{"id":"8472dd03-91d6-4496-a92e-e6e9baaa46ba","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"847e9aa2-8c3a-4a4f-a38e-dab873310062","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"8490f7fb-7301-4769-801d-6cdd3b1e761f","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"8496e8fa-0dc4-4c9c-bca6-4a6e6e2bd05c","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"84bd1572-adb9-493f-a4e1-998e93f35c24","name":"List for the feast","desc":"An unfinished list of food and drink needed for the wedding feast."},{"id":"84ca4884-ef3e-408c-8de2-923c7b74e852","name":"Coat of arms surcoat","desc":"A jacket of traditional cut, designed especially for the lord's subjects and the army, decorated with the coat of arms of the Lords of Semine."},{"id":"84d65f27-c7be-47a9-8c29-ffcebcf3598b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"84d9ed44-7ee9-4dd0-a7de-51305fe85e80","name":"Wreath","desc":"Wreath of meadow flowers. It looks nice, it smells nice, but it doesn't last very long. Plus, it can attract bees."},{"id":"84f3a3a4-5a12-4812-84d2-e84ce0d758a1","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"84fb8a3d-fa6d-4b01-a354-f0ac110a3536","name":"Boar kidneys","desc":"Kidneys are healthy if you do not eat them too often. Stew them and serve with some mushrooms."},{"id":"850d6119-5d19-485d-b6d8-a6888afaadb0","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"85310d06-2845-46ee-be8f-295503b35035","name":"Cobbler's kit","desc":"A set of tools for repairing boots and other leather items. Includes a cobber's hammer, pliers, lard, wire, rivets and various small nails."},{"id":"85409fc6-36ff-4de7-b337-e2889e435f1b","name":"Spade","desc":"Spades are for digging graves, shovels are for tossing sand."},{"id":"854a719a-ac44-4447-8c8a-5ed857053589","name":"Vidlak poacher's gear","desc":"The gear that the Vidlak poacher was carrying on him. Evidence for Gamekeeper Vostatek."},{"id":"854c2f9f-f2b6-481d-b0d9-7721888562e5","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"856c0dc8-23fd-23a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-43a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-57a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-82a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-85a0-91f2-a4d42f96a458","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-85a0-91f2-a4d42f96a547","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-85a0-91f2-a4d42f96a841","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-85a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"856c0dc8-23fd-95a0-91f2-a4d42f96a946","name":"Mead","desc":"A quality mead that tastes great, warms you up and gives you strength."},{"id":"859204c7-683e-4238-97d6-dafcd7aec3ed","name":"Tin badge of resurrection","desc":"After an unlucky throw, use this badge to throw again. Can be used once per game."},{"id":"85aa1df6-7bec-4795-af54-b8126d8b55bf","name":"Lord's overcoat","desc":"Long lord's overcoat made of fine fabric, decorated with rows of buttons. Perhaps every person in it looks robust and dignified."},{"id":"85beaf9d-e351-45b1-8144-0bec039e2803","name":"Farmer Matthew's pitchfork","desc":"A pitchfork left here by farmer Matthew. Everyone in Tachov knows that wherever Matthew and his pitchfork go, merriment follows. It seems Matthew may have gotten a bit too merry, as he left his pitchfork behind."},{"id":"85bf9cdb-d3ad-4ff3-b77e-a01319ed87d3","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"85dfcef8-f8aa-46cd-a4c3-798a23a42c23","name":"Trosky pavese","desc":"A riding pavese with the symbol of Lord von Bergow, owner of Trosky Castle."},{"id":"85e24c29-d5b7-4792-89e4-19350e3e14ac","name":"Three die","desc":"For some reason, this die usually rolls a three. Why?"},{"id":"85e87002-4e6d-4ab8-996c-bdfddd360cd7","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"86055ea8-0e06-47f2-a976-e5453bdf84d1","name":"Plain laminar gauntlets","desc":"Simple arm and forearm armour composed of individual lamellae supplemented with elbow guards called couters."},{"id":"861ab92f-faa2-4e0d-b1ca-240174145021","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"861e1fd9-346a-428b-87a2-406c35649b55","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"86258ffd-5382-4d7b-99ec-119c2ded4766","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"863f6da3-f947-4079-98b3-8a3eb584e4f2","name":"Waffenrock of the Lords of Garbow","desc":"Waffenrock bearing the coat of arms of the Lords of Garbow."},{"id":"8648e136-a8fa-46a2-a72b-9256df46d76a","name":"Old nail","desc":"The nail used many years ago by the Troskowitz bailiff to mark the border between Tachov and Zhelejov. Too bad he didn't tell anyone about it."},{"id":"8662ab7a-6af0-468a-8bce-a1a8768c24b7","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"8675c3c9-c719-47b4-8e08-362292f6cbd5","name":"Huntsman's lost key","desc":"The lost key to the gamekeeper's house, he must have lost it on his way home from the tavern."},{"id":"867cddb7-32e6-4a3d-98f2-f6b9ba3ae7c9","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"868581d6-f9ab-4ae2-b074-9200e7d054bd","name":"Kettle hat","desc":"A simple iron helmet for all poor squires. It is usually a good idea to wear it with a quilted hood with a collar, as the helmet alone does not protect the cheeks or neck of the warrior. But it's cheap and can be repaired literally on your knee."},{"id":"8693b7c4-27e7-4b4e-99ac-44cb415d2ac7","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"86aa32e1-d4be-4518-91d8-393412d85849","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"86b5ee8c-f9c2-4e35-8faa-11ac3a1ce71d","name":"Laxative for Alshik","desc":"Some concoction that Olbram gave me. If I put it in Alshik's food, it should really send him running…"},{"id":"86cf52c6-4329-4e07-b316-facdb667a386","name":"Mail coif","desc":"A quilted hood with a collar and wide mail hood."},{"id":"86d438d0-975d-4e2e-9988-ac5023f5f064","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"86e325c8-9104-4e55-9c2c-8797f29ffc58","name":"Jitschine beer","desc":"In Jitschine, they brew a thick full-bodied beer that will satisfy every lover of the golden beverage."},{"id":"86e4ff24-88db-4024-abe6-46545fa0fbd1","name":"Bread","desc":"They say not to bite the hand that feeds you. And if you can feed yourself, just stuff your belly and shut up."},{"id":"86f116d5-fbe1-4c46-b138-9b23902fd917","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"87025dc2-eab0-427d-8a4c-8c7559286ef7","name":"Key to painted chest","desc":"The key to a painted chest in which the lost charter of the Prague soldiers is hidden."},{"id":"872fd123-42e0-4fac-a578-0cc1bb821fe1","name":"Flute","desc":"I'd rather not whistle on it. I don't want to be annoying like the fools I see on every corner."},{"id":"875843c2-c4fb-4cba-923e-62c37a534130","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"876c3d2c-003a-4a7d-87d8-c1ccc9caa964","name":"Picatrix","desc":"A copy of a mysterious Arabic grimoire filled with descriptions of magical rituals, the creation of artefacts and the secrets of planets."},{"id":"87912053-8c20-4bee-9bb2-dbc3961e94ea","name":"Marksman's kit","desc":"A set of tools for keeping your bow or crossbow in good condition. Includes lubricant, replacement bowstrings, and tools to repair other minor damage."},{"id":"87a568f2-79f7-415f-a690-9a04c4585455","name":"Exotic wood","desc":"Ebony, Zebrano, Rosewood and other exotic woods have been valued since ancient times for their extraordinary hardness and beautiful colour palette. It is used to make fancy furniture, weapons or chess pieces."},{"id":"87a65e52-dfa1-4b45-9306-0b7083f93c90","name":"Hare pelt","desc":"A hare pelt. A common but useful material used for skirt hems, hats and coats. It'll fetch a few groschen for sure."},{"id":"87a669a7-cfd7-41b1-9986-8efa6d7190e3","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"87b9e727-43da-4968-94d1-749dd40e4850","name":"Dead dwarf's thumb","desc":"A talisman made from the thumb of a dead dwarf is said to help a woman conceive a son. +2 erection bonus."},{"id":"880808bf-82e3-4a4b-8a90-b30ad087ad21","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"880953a0-c5f8-4b71-a33a-9979e1f32bc2","name":"Riding boots - high","desc":"Thigh-length boots that protect the horseman's legs against chaffing. Putting them on and taking them off is a rather lengthy process, so they're worn more by folks who tend to spend the whole day in the saddle, such as messengers and grooms."},{"id":"8831967e-dfc6-4442-b01b-b45222fbf830","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"884d8895-7406-46a7-9e86-ac8c4a1f70c1","name":"Bloody knife","desc":"It may look ordinary, but it has ripped open a very important belly."},{"id":"8895b262-ddfb-4392-a784-eee616798c96","name":"Heavenly Kingdom die","desc":"A miraculous playing die, sent down from the Heavenly Kingdom to earth."},{"id":"8899ffd5-15ef-49a2-b042-ea2f594ebd18","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"889e883e-aef9-4a88-a9fa-f64f4d840306","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"88c08905-fb68-46e2-813e-4176d12cc493","name":"Ambrose's broken sword","desc":"An old broken sword made of otherwise fine Damascene steel."},{"id":"88c42663-ca9b-4fea-8f62-84488ba8cb1d","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"88cf91cb-5e8c-4640-acff-393c8500f2c3","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"88f1ceff-5a1e-40b5-92f7-68e941268f3b","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"8905fc7c-991b-43a3-ada8-a2cf09301f0e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"89252a76-e81a-4c7e-9251-5b633d9289e3","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"892f8540-77ed-4f33-9bf5-a8c2b17df4bf","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"893b1c5b-785e-4e22-a446-1cdda3324846","name":"Dragon claw","desc":"Such a curved piece of a dragon must surely be his claw, right?"},{"id":"8963e3d4-16ab-4aab-8eb1-2a1953267565","name":"Knights of the Cross hood","desc":"A hood with the emblem of the famous Order of the Knights of the cross."},{"id":"8968966d-829f-4ce0-bd18-5d325aeb40bb","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"896b3e6e-5080-4c23-86bd-dcb959320590","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"8970ef5c-72c0-4509-ac07-8a789d4629a8","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8991005c-98ac-4847-8e7e-9548a8c16e0b","name":"Treasure Map - Fourth","desc":"Heplful to a person in material need. And in a time of supreme need, it can be used to wipe one's arse too."},{"id":"899160f1-d144-41bc-bd72-998c83c09dea","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"899ea0bb-89ea-495c-ad69-29e76fb7bb9e","name":"Simple shoes","desc":"Simple shoes, also called krpce, tied around the ankles with a lace. Footwear mainly of poorer families."},{"id":"89a0d670-0b19-4433-8ea6-86e1a0d559b0","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"89a60e7b-f80e-4999-8560-fa018737deae","name":"Nuremberg gauntlets","desc":"A masterpiece from the best armoursmiths. Finger gloves of hourglass shape made with metal decoration and brass lining."},{"id":"89c9a049-c9af-4454-a2be-d7abb468ca6a","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"89db88bd-c49c-4e32-925c-d6d5724b1f31","name":"The Cat and the Poet","desc":"A book originally from the remote islands of the west."},{"id":"89e30a08-6966-48ee-aa7a-b8b4922fbf07","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"8a007e87-9d44-4fcc-8ce3-6dc5171a0eb4","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"8a0bfe8a-ff7d-4059-bb6f-ae062fb00d9a","name":"Smoked mutton","desc":"An excellent meat from curly Bohemian sheep, raised in open paddocks and guarded by a red-haired boy with a whistle."},{"id":"8a30d58f-67f7-49db-90c4-38d6523899a7","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"8a34fd3a-dba8-4b92-8be8-b1887b301b67","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8a369c66-6ca3-4be2-9999-5053d9de916c","name":"Wanderer's robe","desc":"An overcoat is made of thicker fabric and is designed for long journeys in bad weather. It is recommended by nine out of ten wanderers who have reached their destination."},{"id":"8a3e203a-7c11-4e88-8fdb-6dbcbd15e2ed","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"8a88ac39-471b-4088-8826-5a47adf6c16c","name":"Silver badge of fortune","desc":"After your throw, you can reroll up to 2 dice Can be used once per game."},{"id":"8a8e914e-d384-4e7b-ae5e-534f48679c85","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"8a9e3a36-213e-4b90-a4ec-518fdec1d980","name":"Canker's mace","desc":"A mace of the leader of the bandits from the Troskowitz gorge. A crude weapon that cracked many a skull and was never properly wiped clean afterwards."},{"id":"8aa945cf-fbdc-422d-a0da-4b864a4bf666","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"8aae6517-dd6d-4ed1-88d0-eccff5273846","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"8ab8d048-2ca7-4bb4-a0d4-963555750bc9","name":"Grimy die","desc":"One could say it will get you out of the frying pan into the fire. And sometimes it will let you stew in your own juice."},{"id":"8ab9a8de-78e4-48fa-9b20-e0417b74655f","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"8acd858e-97e4-4d65-ba2c-c4cb4ca1deb7","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"8ad17f24-e12e-4982-a5ff-8faf60ae2b74","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"8ad3299c-2165-4c2f-9b23-42cacc025589","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8ae96c33-8557-4410-8401-2c2e40d00e36","name":"Wolf heart","desc":"Wolf heart may be useful for some evil sorcery, but a true Christian should not eat such a thing even if he were starving."},{"id":"8af14bc9-54d2-4442-a3d9-6f8b688c2973","name":"The Art of Demosthenes IV","desc":"A skill book on Speech. Can be read from level 15 of this skill."},{"id":"8b1abf32-b28f-465e-8e52-a20267efb140","name":"Vidlak Pond poacher's gear","desc":"Poacher's kit found in a secret stash in the woods near the Vidlak pond. Proof for the gamekeeper - my dog should be able to track down its owner."},{"id":"8b2cb8f5-31e8-4ee3-b4bc-b50c06f7ff4c","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"8b44923c-63db-4cc5-bb59-709da6b51975","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8b7515e1-21fb-4c18-b3da-86fabb5025bd","name":"Copper","desc":"In ancient times, copper was a very rare metal for making jewellery and weapons. Today it is mainly used for the production of tinware and for the smelting of other metals."},{"id":"8b85f082-9af2-45c1-9acd-50a606577b5f","name":"Sir Zavish heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"8b96acec-7e33-4320-abde-08978461f149","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"8b9778e4-7dc8-4b21-9c03-490b7c357d3e","name":"Halved pavese","desc":"A skillfully painted riding pavese."},{"id":"8baa70c0-222a-42dc-a289-035c83a33d5e","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"8bd23228-d7f0-404a-81bd-20653463b240","name":"Henry's Lion perfume","desc":"Increases Charisma by 10 for 10 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"8be134b9-c1fd-436a-93a0-f4323b210a91","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"8c21aba6-cc35-4022-807b-22e4bd987e5a","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"8c4dec01-9ab1-4049-afb0-22617e4aef59","name":"Miners' Underground Map","desc":"A map of the Kuttenberg underground, used by the miners themselves."},{"id":"8c541449-a00e-447c-b817-f11abd075f15","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"8c650a45-77ef-40cb-abbd-e3ef481f65f7","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"8c7cf9ff-cf06-41fb-a92a-14651c0005b9","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"8c84de46-0026-4a6f-bc3a-804fc6284968","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"8c8bb0a0-382f-408e-819d-1661850a82e3","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"8c9b425c-c8a9-49b1-b828-220b2cb47518","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"8cba0ee8-0862-4819-ba33-b19e9e67150e","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"8ccaf2e3-7fa5-427a-86b4-3718b1400d45","name":"Decree of Markvart von Aulitz","desc":"A letter from King Sigismund of Luxembourg to Captain Markvart, in which he commissions him to pursue the miscreants from the Italian Court."},{"id":"8ce50591-6530-4787-96cb-726683dae13e","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"8cea8859-e4a5-425c-9614-59d6af57afee","name":"Cellar key","desc":"I wonder what this opens? And why was it hidden?"},{"id":"8cfad378-f16e-418f-b8a7-2a23ae724932","name":"Lavish warhammer","desc":"The war hammer is considered by many to be as noble a weapon as the sword, since it is used where there is no room for swordplay and hard blows need to be dealt. The war hammer is therefore designed to penetrate armour and crush bones in the heat of battle."},{"id":"8d10b609-0c3c-42dd-acec-991e89874bfe","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"8d171856-10a9-4588-b8d6-cec21a649b0c","name":"Weak Mintha perfume","desc":"Increases Charisma by 1 for 20 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 5."},{"id":"8d1a44b8-574f-4172-b5b8-820a00ef4742","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"8d414fa3-e215-48a0-919b-a8a80605e29e","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"8d46a6b3-d1b8-48a1-aa92-3d4ae20c69a2","name":"Spiked horseshoe","desc":"It doesn't seem magical, but the spikes on could prove useful when riding on rocky terrain."},{"id":"8d591641-5354-464c-b30f-cc2157a9d32a","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"8d6964b1-b645-4aa1-adcc-db22646f3722","name":"Cabbage","desc":"Cabbage is a common ingredient of meals - and a healthy one at that!"},{"id":"8d76f58e-a521-4205-a7e8-9ac077eee5f0","name":"Lockpick","desc":"A tool used for picking locks. Just don't get caught doing it."},{"id":"8d867250-efd7-4191-a975-c4c427dd0bcd","name":"Life in the Tavern III","desc":"A skill book on Drinking and alcoholism. Can be read from level 10 of this skill."},{"id":"8d8c079e-066c-4e00-bb56-37c52f6b4442","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"8da1d2ca-a7bb-4d63-891a-969ec8f06f10","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"8dacaafc-77ed-43e8-9358-e98b72f49ba9","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"8db59cbb-55da-437d-894f-865dd281677d","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"8dc40bbd-aa60-4f56-b49a-58595d79b4d2","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"8dd041d8-a2a6-4a89-8683-adaf243fc0d3","name":"Kuttenberg Court Book","desc":"One of the copies of the court book from the Kuttenberg Rathaus. It contains a list of municipal laws."},{"id":"8dd4862d-8290-4f36-ac8b-c53d42c60f65","name":"Couters","desc":"Simple elbow pads. You can suffer all sorts of injuries in combat, so it's best to protect yourself however you can."},{"id":"8dd487d6-de84-450e-9179-d68019395734","name":"Bagel","desc":"Jewish pastry with a beautifully soft crumb and a crispy crust."},{"id":"8deddb7c-8ba6-42ea-87c8-c0cacf8535ed","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"8df913e6-3f2f-4a83-85a1-25fec51073f5","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"8e0a3341-c746-4f34-8d4b-7ea98ccdfa1e","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"8e4c3ce6-3e4a-40ea-bb40-a4cb2c2254a0","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"8e5179d1-7ffd-49c1-85da-62b801a7396e","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"8e5cbba2-340d-4ba5-a2f7-e18254fb173b","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"8e5db048-68ee-4fd8-9a04-dca3b3b44c16","name":"Noose remnants","desc":"Remnants of a rope, likely a noose."},{"id":"8e68672a-e4d0-4c7f-87fe-081d2d9ad5f4","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"8e725bdf-bf78-4866-aa18-1220edbdd5df","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"8e837873-db5b-415b-9f98-508a1e74baac","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"8e9bbf5f-a334-4859-9e1b-8da270ddb4b5","name":"Cooked roe deer loin","desc":"A tasty and not too fatty piece. As with other game, the best meat comes from younger animals. It is advisable to let it hang out for some time before butchering, as there is still too much blood in a freshly killed animal, which makes the meat unnecessarily tough."},{"id":"8ea0ebbc-fd34-49f2-a5e9-b1369e220d1c","name":"Drowner's map","desc":"Rough sketch of a map of the site by the pond."},{"id":"8ebd6028-b2fc-4bde-9f16-265f5d446fcf","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"8ec57fec-ed49-46b3-be45-9ddc0d8429df","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"8ec8f99a-57a7-4006-bb61-1f737996a0a9","name":"Gambeson worn","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"8ee40993-eb24-4ee3-bbd7-8138bbd510d1","name":"Hair strand relic","desc":"These few strands of hair are said to have belonged to Saint Barbara, who was cruelly punished by her pagan father for accepting faith in Christ. As she fled from him, she hid in a rock crevice, which is why today she is the patron saint of all miners. Only a certain shepherd revealed her hiding place to her pursuers, and the young maiden was captured and cruelly tortured into renouncing her faith. Finally, after she was whipped and her breasts were cut off, she was led naked to the execution block where she was beheaded by her own father."},{"id":"8ee413b8-903c-4389-a783-f0908bb76937","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"8ee58bb4-d928-4caf-9246-9a4706299543","name":"Lousy gambler's die","desc":"A shoddy loaded die. It's quite noticeably unbalanced."},{"id":"8ee88581-6dc8-4246-a92f-654ce4b5c63c","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"8eeb5d63-5d50-421e-9a3f-a006a319a5e1","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"8eee3594-8fe9-4eb0-8971-07bfe8643898","name":"Flushing from the barrel","desc":"Good enough for the Prague folk."},{"id":"8ef83ab2-eeee-4b9d-840c-1f6aeb389113","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"8efaed15-badb-4979-a608-e4157a19a2e8","name":"Woodsman's Journal II","desc":"A skill book on Survival in the wilderness. Can be read from level 5 of this skill."},{"id":"8f0a3404-518c-42ca-bbd0-d702e1b5e401","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"8f1ba3e0-aece-4a2b-be7e-bbc80374f9c7","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"8f382638-29f3-458d-bc5c-265901364f97","name":"Spearman Training III","desc":"A skill book on Polearm combat. Can be read from level 10 of this skill."},{"id":"8f4968a8-ce4b-4ece-9211-988fd47857b3","name":"Hanged man's key","desc":"A key found on a hanged man above the pond near Horschan."},{"id":"8f654b16-cf8c-457d-a88e-0b88aa8d823c","name":"Records chest key","desc":"The key to the chest in the secret mint where Vavak keeps his records."},{"id":"8f866797-6137-4cc8-a565-f17e0f0d4cfe","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"8f867e5d-4044-4775-af05-1bd097cd2667","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"8f882709-5192-4c95-bf1f-d44fb8ffd214","name":"Blue crayfish","desc":"A blue-green crayfish, you don't see that every day."},{"id":"8f9e6cd4-679a-421a-9dfb-82bda185cda1","name":"Embroidered heater coat","desc":"A coat with embroidered hem and forearm is fastened up to the neck with decorated buttons. It is decorated with the symbol of Kuttenberg."},{"id":"8fb49e8a-9c17-452d-bd86-418f6b8c0daf","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"8fd5ee32-1d34-420e-a485-36bdaf57d0c4","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"8fda905c-f217-4405-82c8-21b2c3391ae9","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"8fdb519f-51a4-4531-a20e-732065dd1ede","name":"Smoked trout","desc":"Smoked trout is not as tasty as freshly baked, but it definitely lasts longer and is still better than dried."},{"id":"8fdc225b-e016-4698-b44b-feeaad509688","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"8fe4bb2e-e1f3-4055-ab13-58c5f40ab8f9","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"8fe7dc99-4ff6-4baf-84c4-44e931fa8a6d","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"90018ae3-4fe3-4121-bc63-9cb8e1883ebc","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"900f0f15-39e0-4df7-a7f5-05d1b7ea27f2","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"9019a96a-d751-4a2f-b7d2-d9d397f54b71","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"9023c10e-025c-4580-9b08-b0919e9f7346","name":"Pear sword pommel","desc":"The end of the hilt of the sword. It is struck against an iron tang, which is then hammered and the pommel is thus fixed. It serves mainly to balance the whole weapon and as a counterweight to the long blade. In swordfighting, it prevents the weapon from slipping out of the hand, but it can also be used to grip and extend the hilt of the sword. Some swordfighting techniques use the pommel to deliver crushing blows to the opponent's face."},{"id":"9023e808-a974-48b8-b66d-03f6ba6c21b3","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"902d20eb-6456-4abe-9b8b-8058e185f230","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"9032d5a3-d215-4004-89a9-bde859d7740d","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the subjects and the army, is decorated with Kuttenberg symbols."},{"id":"9040190f-884b-4a42-bc34-cd68564a0af9","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"904cb53e-3a8d-42fc-9624-a4084399d586","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"9071b358-2ee8-4a1a-96c0-33ace2cf41e2","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"907a2cd5-2730-424e-bf11-ef1f2db8f7e1","name":"Horseradish","desc":"Horseradish with a flavour so sharp, it could cut your tongue."},{"id":"9093ac5b-ced2-4e17-99aa-f1342572ed78","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"90a65d86-bd06-4542-b687-f4300f60cfd4","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"90ae33aa-e93b-44a2-9ebf-adba8f2a0e99","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"90bc395d-39ee-460a-a658-f434ed2df760","name":"Hare's Heart","desc":"It might look awful, but offal and entrails are all healthy, the heart most of all. You can fry or boil them or add them to soups. The main thing is to use everything and not waste any of the carcass."},{"id":"90bd14a2-f6a1-4853-8451-e3fb90bb7888","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"91056111-bb80-4db3-b63a-a3971129e53b","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"910d7740-736b-414a-9876-c066bfff35c5","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"91147117-cdbc-4f7d-b216-5584ca4ac009","name":"Gemstone silver ring","desc":"Such a precious ring is intended for noble lords and prelates. A poor man should be careful not to hang for selling it."},{"id":"91242efc-c004-438b-a083-9a2b1db9153e","name":"Strange little verse II","desc":"A strange verse, probably referring to a certain place in Kuttenberg."},{"id":"9125bc0c-a152-49fe-aaf5-f16869c2b820","name":"Milanese cuirass","desc":"An excellent piece from the Italian armoursmiths. Thanks to the perfect tempering and fine surface cannulation, the sheet metal used can be much lighter and yet just as durable. The cuirass is composed of two parts that fit together perfectly to form an impenetrable shell on the knight's body."},{"id":"91376e3d-05b4-4d1a-aaad-fa2f59443c35","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"913dd9b5-1596-413e-a1c6-0021929e16d0","name":"Punches, Kicks and a Few Slaps I","desc":"A skill book on Unarmed combat."},{"id":"915216ab-26d1-44c2-9d97-a06db6c20b5a","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"915244fe-306e-4d6f-944d-3c459efff196","name":"Thigh bone","desc":"A human thigh bone, or femur in latin."},{"id":"9164ba4d-cccb-4889-b4f6-a73e924a9bcc","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"916a6a5e-a1c1-4db7-b573-909c139a1b52","name":"Hourglass gauntlets","desc":"The most commonly used type of iron gloves whose name refers to their typical hourglass-like shape. It protects not only the hand, but also part of the forearm of the fighter."},{"id":"916e6f56-c606-4d70-892e-e4558d09e7ff","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"9173874c-7494-42ee-8965-a0d12d673945","name":"Walnuts","desc":"Eating walnuts helps keep your nerves strong and your mind sharp. It's no coincidence their kernels look like that thing you carry around in your head."},{"id":"917c2ca3-dc44-46da-b35b-fb1afa66993b","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"91899c3f-36b5-44c2-a229-7f0dca4de277","name":"Tin pitcher","desc":"Drinks served from pewter dishes taste a little strange, but the pitcher sparkles and that's all that matters!"},{"id":"919c26be-59eb-45e5-ba63-9938e9bc7719","name":"Copper ewer","desc":"A copper ewer reserved for noble guests and special occassions."},{"id":"91b0c4fd-c4e8-4695-8ea4-2cb0095dc68e","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"91b47469-d884-40c2-b41b-9a9ca7dac595","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"91e17195-0d9f-4373-ab2a-aed59193ac2d","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"91f46ac5-14d0-445d-9d83-ed6458eb429e","name":"Coat of arms surcoat","desc":"A jacket of traditional cut, designed especially for the lord's subjects and the army, decorated with the coat of arms of the Polner family."},{"id":"91f6571c-d954-4645-a6b4-7340e8f99046","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"91f6bbdb-2a80-4baf-880a-d17e6803539e","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"91f76dc9-7d86-4fd3-b4f0-e518ca6c342e","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"9214fb0e-3979-4243-bd69-1cbd709765ab","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"921a52ca-5fbe-4013-aa3b-745fa11077b8","name":"Beaked kettle hat","desc":"Iron hat with a wide brim. It covers the head well and at the same time, thanks to conveniently placed cut-outs, does not restrict the view, which is an advantage especially for foot marksmen."},{"id":"922ed4f3-f1f1-4a1b-b5c3-127ea624fcfc","name":"Sketch – Bearded axe","desc":"The bearded axe is a battle axe which is a simple tool in its origin, but it can chop down shields as well as trees."},{"id":"923226be-5c9f-4824-a235-377c43e1933f","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"92343d9d-3084-4cec-b0ef-be2f0bef3416","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"9251906f-2fc2-4abd-b1f1-1ed82842fa11","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"925441ee-a7bf-451c-bb3a-ee5396900f66","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"92895c0c-eb20-42ab-8e25-c87b31812fda","name":"Straw hat with ribbon","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. Decorated with a ribbon, such headgear certainly looks more cheerful."},{"id":"928dbd70-563e-4873-9fc9-ffa9826553ad","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"92aa6120-028e-48ee-8ed1-1c5f91afaa26","name":"Iron","desc":"Good quality malleable iron. The iron is soft, but nicely homogenous, so it can be used well for most blacksmithing products."},{"id":"92c8681a-e101-4961-b7fc-e8067e638e08","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"92e221f5-0db7-4a9f-a43f-3531d65dd222","name":"Kettle hat","desc":"A simple iron helmet for all poor squires. It is usually a good idea to wear it with a quilted hood with a collar, as the helmet alone does not protect the cheeks or neck of the warrior. But it's cheap and can be repaired literally on your knee."},{"id":"92e723a4-b4ce-445e-a636-d1b0fecf1ce3","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"92fdb06e-b97e-4886-b468-6d278e4a1024","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"9307cce2-4994-4298-87d6-282d9641ca31","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"930b8b3a-5d86-4f15-851e-5fb1b6bef80d","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"932a7c22-975e-47c7-ab61-ea8c1c2eaddc","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"93352a50-a605-455d-b873-be575a68b134","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"93557378-21da-4664-aa52-a469e4834aa0","name":"Commemorative ring","desc":"A ring given to me by the refugees from the mill as a thank you for God's blessing."},{"id":"93595b3f-64b1-411b-bd7d-79518aff3e35","name":"Wedding beer","desc":"A festive beer brewed for the Semine wedding. Full-bodied flavour with a dominant bitterness and honey aftertaste."},{"id":"936416bb-7cf8-49de-9951-eeb11924f4d8","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"9373471a-28cd-4719-a343-4669dd501a0a","name":"Parsnip","desc":"To make you last a long time. Healing from root to green bud."},{"id":"937c40aa-a575-47b5-a9d2-69fcaa22d944","name":"As Quiet as a Cat IV","desc":"A skill book on Stealth. Can be read from level 15 of this skill."},{"id":"93a87db1-c332-409a-9044-6e54b516c0ee","name":"Trollbane hammer stub","desc":"Even a weapon against non-human creatures will eventually be destroyed, even by killing mere humans."},{"id":"93a9a2ec-5efb-4906-bab4-21a2c5cff14a","name":"Spined kettle hat","desc":"An iron hat forged from a single piece of sheet metal and therefore slightly more durable, but still unnecessarily heavy. Its spin makes it better able to withstand blows to the head, but it needs to be supplemented with a quilted hood or collar, as it does not protect the warrior's cheeks or neck on its own."},{"id":"93b6193a-f147-4e27-b232-d6bbd17cd908","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"93bf5ba8-4202-4400-bb5d-d68eab7f803b","name":"Ius regale montanorum I","desc":"An abridged copy of the Royal Mining Law on the people in the mines."},{"id":"93d145b7-251f-49e2-b44d-8c3e455621a4","name":"Bandit's brigandine","desc":"Folded armour made up of forged slats hammerd on a leather vest is a slightly older form of protection than the fashionable metal cuirass. Both provide similar protection, but the brigandine is a bit heavier, but there are warriors who will not let it go. This one's been through a lot, though, and has had more than one owner. Most certainly haven't given her up willingly."},{"id":"93e67a15-6545-46d3-8820-87fd690e1f0d","name":"Greasy die","desc":"A more reliable die than a normal one, but it cannot be relied on for everything."},{"id":"93ff6de8-435d-495a-bc43-91a783669cc7","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"94013e8b-23a8-4c0b-bfdc-dec8f225cbd0","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"9402402a-e0e9-4541-a90d-2a75e7c8abd0","name":"Vejmola's house key","desc":"The key to the Vejmola's house."},{"id":"94086ac7-8252-4530-9e2b-b04119335be5","name":"The Art of Demosthenes II","desc":"A skill book on Speech. Can be read from level 5 of this skill."},{"id":"940ced42-bde0-4f0f-a709-4f32fe5efdec","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"94111648-b45b-4a1c-b189-8dd628deaa56","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"942286d1-bffb-4ce6-8988-c02f4e500dd7","name":"Aim and Fire! II","desc":"A skill book on Marksmanship. Can be read from level 5 of this skill."},{"id":"942a42a0-5c46-4c46-983a-71d86adb43c4","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"943b1882-e306-464a-a065-5772483c1407","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"945a88ff-f401-4ace-af56-c928b8f2a769","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"946ff824-0e6a-4341-ba4e-5193eac4ebb7","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"9475fa39-7ce3-4253-9953-fe03c753d8fd","name":"On Prague","desc":"On the City of a Hundred Spires."},{"id":"9477a8a1-8b69-49dd-b746-3f987a2f8c6c","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"94acf2dc-fca2-4e19-8d4f-57e5ff93f972","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"94b0fa8d-f75a-48b2-bfd6-8eec5a767557","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"94b119d6-2e57-4d63-ad93-56e669ea0294","name":"Hungarian knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"94d8f5f1-20a7-4840-98ad-1d198d381389","name":"Scrap metal","desc":"Malleable iron of questionable quality. It is a mixture of various scrap and waste iron. But as every blacksmith knows, no iron can go to waste."},{"id":"94de53e1-8874-4a64-9837-ae758cb62e8b","name":"Pasha's crossbow","desc":"The crossbow that was to bring Pasha invincibility and God's favour. Unfortunately, it failed."},{"id":"94f31361-094b-4f8a-ad6c-dbf357c98d74","name":"Dried mutton","desc":"It's a pity for such a delicate meat as lamb, but if you're already getting sick of it and you really don't know what to do with it…"},{"id":"94f335e3-ae54-49b3-a9f8-762bf2f68620","name":"Minting die","desc":"Authentic die for minting the Prague groschen."},{"id":"95191099-030c-4e55-9e22-c6f6551766fc","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"951c694f-0067-4456-b182-16b9938bbab9","name":"Couters with rondel","desc":"Simple elbow pads with round rondels. Unless one can afford better armour, every protection counts."},{"id":"95328452-30e4-46b9-a90b-195c67708e52","name":"Deer ribs","desc":"Best to make a roast out of it and serve it with a fruit sauce. However, make sure to bake it just long enough and be careful not to dry out the meat too much."},{"id":"95348c0c-05ee-4a09-a205-87f53e7f353f","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"953b8e18-bf41-477a-91f3-8c261c684f45","name":"Cooked sheep stomach","desc":"This may not be the most popular meal ever, but what can you do. The best way to prepare it is to fill it with whatever you like or have on hand, sew it up and then boil it for a long time. A dish prepared in this way is very compact and portable and therefore suitable for travelling."},{"id":"955c4fc0-205c-42d7-abd7-07fb4b31b499","name":"Embroidered bonnet","desc":"A quilted cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"956af166-1412-49ed-a678-14000c200f3b","name":"Map of the Zhelejov marshes","desc":"A map that was clutched by the hand of a skeleton in the Zelejov marshes."},{"id":"956df49f-59b4-4b0d-87ff-3dab99ad9375","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"958487ca-d5ef-42f9-ae8b-3b2c76941757","name":"Wreath","desc":"Wreath of meadow flowers. It looks nice, it smells nice, but it doesn't last very long. Plus, it can attract bees."},{"id":"959b851a-922f-4491-82fd-0527029d264d","name":"Suchdol pavese","desc":"A riding pavese with the symbol of Lord Pisek, owner of the Suchdol fortress."},{"id":"95a93516-8a38-43ac-8b36-8d70406efa87","name":"Treatise on Nought","desc":"A remarkable treatise on the mystery of numbers and the symbol of emptiness."},{"id":"95f97b05-8a66-4695-a9c1-b3ca18ed9ee1","name":"Finger bone relic","desc":"A tiny fragment of bone, which is said to have come from the hand of St. Maurice, is certainly a very precious holy relic. In ancient times, Saint Maurice was the commander of a Roman legion that was decimated by the Emperor for refusing to sacrifice to pagan gods before battle. The martyr is the patron saint of soldiers, weavers, armourers and the protector of vine. This bone may indeed be genuine, as the entire arm was once brought back by the Czech King Vladislav II and later distributed to many Czech churches."},{"id":"95fd0f07-3682-470c-96f2-adcaaf417a04","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"961d80db-9847-4c65-aa1e-3b2366d66068","name":"Smoked pork","desc":"Smoked pig tastes best on plum wood."},{"id":"962a26c0-078e-430b-b806-c19fc52526da","name":"Bascinet with bretèche","desc":"An older form of the bascinet with a removable wide bretache, complete with a chainmail aventail protecting the warrior's neck and shoulders."},{"id":"963f4e9b-765e-4c33-9ea5-f89bd80fa03c","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"965274e3-4b6e-49de-b49e-778aafbe1762","name":"Bell-shaped bascinet","desc":"A helmet called a bascinet protecting the whole head except the face, so it looks a bit like a bell. Very often used by marksmen because the face is not covered by any visor and it is easy to see the target."},{"id":"967cc7c9-596a-47d3-81ab-7c06ade9a294","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"96a4278f-9bdd-4b30-80ed-c22deacec3b0","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"96ad9835-ecc5-455d-8c3b-6f32c0ac798b","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"96c3311f-0d00-4ec1-bc85-72719e644fd4","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"96ebb4c3-04ae-4fbd-9e98-2c73e97da3c3","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"96efea9e-1cdf-462a-a8b5-8aa58035d16b","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"97318a25-2aa3-458b-b4f0-7f265fba32a0","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"973e5a44-e096-4bed-97eb-52b5e432d20d","name":"Physician's journal","desc":"Physician's notes."},{"id":"9748ecfc-9f6d-4a84-88f8-d5259070a35c","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"97502171-d138-403b-8745-75776a9809fc","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"97572af8-2acc-40d6-89ae-21e940fe34c6","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"975e6b9b-06a9-407c-873c-79602ae690f8","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"976bda3f-81bd-49db-ac7a-9c2faf3bbc8a","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"97794f51-ac0d-46ca-b73f-06dffaaf9b7e","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"978586ca-3269-493b-a1fd-88ae04a6ded6","name":"Plain laminar gauntlets","desc":"Simple arm and forearm armour composed of individual lamellae supplemented with elbow guards called couters."},{"id":"97aeb82a-cba6-46c1-8208-ab043db41603","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"97b29e9b-bab2-4e2a-a6f8-6eaec0ae0ef0","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"97bd58d3-13cd-4832-8977-20329b9dd5cf","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"97cb515b-b6da-45a8-a650-463be38288ef","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our joint handiwork."},{"id":"98038466-ce31-4924-b188-742c00d36b60","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"9843792a-1792-4e9e-80c4-2dcbb5f62863","name":"Simple headband","desc":"Coloured or embroidered strips of fabric or ribbons are a cheaper alternative to crowns and headbands, popular especially among the poorer classes."},{"id":"98498cc2-8514-4412-afb4-9585a6c13df1","name":"Von Bergow knight shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"984b9db9-3783-44be-852c-79417d0caf74","name":"Bandit's brigandine","desc":"Folded armour made up of forged slats hammerd on a leather vest is a slightly older form of protection than the fashionable metal cuirass. Both provide similar protection, but the brigandine is a bit heavier, but there are warriors who will not let it go. This one's been through a lot, though, and has had more than one owner. Most certainly haven't given her up willingly."},{"id":"9852222d-5114-495a-bec0-31edcdefd62f","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"985fba5f-ad3d-4ddf-a901-52199528ea6f","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"9868b40d-0871-4a65-afce-33604730a74b","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"986c4a80-eff0-4198-9958-aff51b2303f3","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"9875d003-86c0-4820-805d-12f5d23a9205","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"98856c10-14ad-4f68-a4c2-136b3f8df156","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"98cf6948-4785-467f-bc2c-c66abebade19","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"98df7fa4-9948-47aa-bcc7-7998114cae7e","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"98e69e65-3a0a-4ac7-8e3e-a96875cbb2ee","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"990115a0-70c4-4665-a86d-bd3bc6cc6a88","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"991b9519-d017-42aa-96ab-8b7c9b805e10","name":"Dried deer rump","desc":"Delicious hind leg meat. The topside cut makes for the best roast. Dice the rest and boil it in salted water. Now to make a good sauce to go with it, crumble some bread in beer, add a little vinegar and cook it with some pepper and cloves, if you have them. Pour the sauce on top of the cooked venison and garnish with baked apples. This is how Severin the Younger advises deer to be prepared."},{"id":"992f2afc-ee61-4787-a359-8c6adbfa7c40","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"9932076d-2a57-4da6-933b-2cd01a886418","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"993d563a-7a0b-46d9-8aba-5a9d689bfa03","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"99568f8c-fbbf-418a-811d-9874fab20cd2","name":"Hungarian knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"9960d4db-344a-4e9e-98e2-e68318139c8a","name":"Letter for the Abbot","desc":"A letter addressed to the Abbot of the Sedletz monastery, written by the monk Slava."},{"id":"99733d2b-1e54-40a9-a15b-bb637f1feed5","name":"Knight's soap","desc":"Soap made according to a secret recipe from the musk of noble war horses, just like Sir Tobias used to sell at his stall in the old days. Cleansing for the mind and body, and great for when you don't want people recognising you by scent."},{"id":"9977bb72-3e9c-47b9-8a39-3ab77b8f911a","name":"Silver scraps","desc":"Scraps of a silver plate or waste from the minting of groschen. I reckon it's worth something."},{"id":"99ab23c5-0980-4f1c-8bc8-a0b0f40cd8e6","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"99acb2ca-5557-474c-a92f-2eb4ba4156ec","name":"Ordinary coat with crest","desc":"A plain coat, made in red and white and decorated with symbols of Kuttenberg."},{"id":"99ae492a-33aa-434c-96f5-c34ce2fd1a51","name":"Kuttenberg sausauge","desc":"Kuttenberg sausage, best with some cabbage."},{"id":"99c4dd5a-8bea-4b7f-82d4-81d236ccd3b4","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"99f1aec0-1f14-4006-ac1d-5614b28c5ba4","name":"Lousy Mary's concoction","desc":"What's on the heart is on the tongue and worse."},{"id":"99ff086f-7dc0-4c38-9df1-88d63bcc88f8","name":"Lords of Leipa heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"9a042027-bf77-450b-8a73-530b130362bd","name":"Broken axe","desc":"It must have been a beautiful weapon once, but years underground have left an indelible mark on it."},{"id":"9a05a648-5c75-4d2e-a876-f65cf60b29c8","name":"Key to wager chest","desc":"A key found near two dead marksmen."},{"id":"9a1bb464-4ec1-4c34-a071-ffcd9000404c","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"9a354274-f8bc-43cc-be5a-b522b829b61c","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"9a9d9c0d-2c94-475d-ab72-75b8ced9ac05","name":"Devil's head die","desc":"A die that feels hot to the touch. In place of a one it has a devil's head, which is not something folk like to gaze upon…"},{"id":"9aa773b1-ede0-4ff5-bbd8-2595b36c8a1a","name":"Broadsword","desc":"A light sword with a wide blade and a thin tip, it stings like a wasp sting."},{"id":"9acebf6a-64a1-4d03-b090-f69332278cdc","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"9ae5932a-5122-48bf-b8a7-56b054340580","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"9aeacf98-e160-4270-b1c8-09e60eb6e611","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"9afb8d78-6f8d-4311-a9b9-11727f211ff3","name":"Common war hammer","desc":"The war hammer is considered by many to be as noble a weapon as the sword, since it is used where there is no room for swordplay and hard blows need to be dealt. The war hammer is therefore designed to penetrate armour and crush bones in the heat of battle."},{"id":"9b3cb525-6d94-4f44-9c74-bb1aff104212","name":"Troskowitz Chronicle","desc":"The history of Troskowitz, written down by the famous Bailiff Brada."},{"id":"9b4caede-3eee-4ffb-b73b-951c9905e7bd","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"9b4e1e48-1572-4748-9390-e0239d96288e","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"9b5ee641-63c9-49c0-8cc6-050ce015881b","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"9b614795-8193-4107-9c63-f8f7e9fd2216","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"9b750e23-86ff-4b8b-ac97-9498121800c1","name":"Dried poppy","desc":"It is found abundantly in fields and furrows as a bothersome weed."},{"id":"9b771c16-c0b1-438c-aeda-8c4d3ce28465","name":"St. John's wort","desc":"It is most fond of leafy woods, glades and clearings."},{"id":"9b83c780-fd31-45a7-9df1-cb44367cb84a","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"9baedc28-f193-41a6-8035-2c6e3343219b","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"9bd6afca-f2cd-45b2-b057-2586811817f8","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"9bf17d06-8f2c-4b00-af30-5571fc2bfb0a","name":"Perch","desc":"Perch or other fish are healthy, you should eat a lot of them. You can season fish with spices and coat it in flour. Then fry it in butter. Finally, sprinkle it generously with fried onion and serve with bread."},{"id":"9c2af4e3-87ab-4067-9efe-8c445daafae5","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"9c4f369b-ee4b-4abb-8b4f-11ab75038e1c","name":"Fake thunderstone","desc":"A smooth stone that Thomlin tried to pass off as the true thunderstone. Though it doesn't have the same power as its authentic counterpart, maybe it will bring you some good luck anyway."},{"id":"9c5b14e6-f3bb-405d-a1cb-74afd2e850ff","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"9c6aac7c-4797-4aa9-a297-939fd5e5a54e","name":"Beaked kettle hat","desc":"Iron hat with a wide brim. It covers the head well and at the same time, thanks to conveniently placed cut-outs, does not restrict the view, which is an advantage especially for foot marksmen."},{"id":"9c7ace12-1010-4d4f-b2ab-2585f6f02dac","name":"Riding boots - high","desc":"Thigh-length boots that protect the horseman's legs against chaffing. Putting them on and taking them off is a rather lengthy process, so they're worn more by folks who tend to spend the whole day in the saddle, such as messengers and grooms."},{"id":"9cc07405-4195-46ab-bf17-fd0fd99721bd","name":"Light mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"9cd4c555-9e0c-468e-8829-a62a93dda80c","name":"Smoked deer ribs","desc":"Best to make a roast out of it and serve it with a fruit sauce. However, make sure to bake it just long enough and be careful not to dry out the meat too much."},{"id":"9cdc47ea-e15e-4be6-ac52-8ad62073f89e","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"9cf0a787-aca0-4a9b-8a27-67f1f3423f18","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"9d23b721-adad-415f-8b81-885894c335c5","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"9d29ed14-5ee2-4ad2-97ad-aa7458c2fa4b","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"9d2d947b-bd6e-4a28-9ca2-f59181d296ed","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"9d3703c5-d3e7-4386-907b-e11a2b936cfc","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"9d4fad9a-8c08-45df-aeca-ceebe90764fe","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"9d8239a9-185f-443d-be7a-33249be68126","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"9d8531f7-52af-42b6-a418-a85f02bc1b42","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"9d8b45f4-3b2c-4cbf-8271-7f8adc2064e0","name":"Water for Trosky devils","desc":"Interesting... and yet it looks like ordinary water from the well."},{"id":"9d92cb27-4bc0-49dc-8b99-2fd26afd651b","name":"Lost purse","desc":"Lost and found again."},{"id":"9da82290-e31b-4ba6-b0e8-680081e06e9a","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"9db7dcf1-53c0-45aa-8a63-c4a658a1dd46","name":"Peter of Suchotlesky's sword","desc":"A sword of the late knight Peter of Suchotlesky. It is an excellent weapon with a decorated pommel in the shape of a clenched fist."},{"id":"9dd42af6-e0e0-42e8-81e8-fff02f8d1579","name":"Pepa's Sauerkraut","desc":"Sauerkraut from Pepa the dimwit. I don't know how the lad does it, but this sauerkraut can cure anything."},{"id":"9dfd4215-673d-460b-a052-a38ba439857e","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"9e06cfd7-6412-446c-99dc-e27c6bcef003","name":"Dried cheese","desc":"Drying gives cheese a more distinctive flavour. With some bread and a bit of ham, it's a fine substitute for a hot meal."},{"id":"9e072e05-5b7e-4cba-a8b4-397a4d8227fc","name":"Life in the Tavern II","desc":"A skill book on Drinking and alcoholism. Can be read from level 5 of this skill."},{"id":"9e1498ec-47de-4111-b9ff-b341c72630ab","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"9e19280b-f3a2-445b-9283-8bd2b6b611ad","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"9e1c7ec5-0b95-4b48-bfbb-4f3e291a3629","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"9e1d7955-1f97-4f49-a889-837edd151e1d","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"9e31a288-7de0-4c0d-81cd-5cf00548d2d5","name":"Common longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"9e4d7348-77d2-42ac-926e-88bf505c4f56","name":"Rooster feathers","desc":"Black rooster feathers. They seem more fallen than plucked out."},{"id":"9e55c53f-696f-438f-a492-e1649becb68c","name":"Tied jester's hose","desc":"These colourful trousers are worn by jesters and generally eccentric people. The higher quality suggests that whoever had them made was very serious about their insouciance."},{"id":"9e5875bd-2b99-4483-9181-15f7dd08e144","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"9e831117-8620-4c03-bde6-f99a9c0b2642","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"9e95435e-1d6d-4ea5-a504-c6e4b909495d","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"9ea80468-1233-4abd-9d8e-a0f984a80c7a","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"9ea8f404-685b-4e02-b73b-3d3875eb41f4","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"9eb8db52-658e-48e6-a146-7b6efa510ece","name":"Dried wolf meat","desc":"Only eat wolf meat in an emergency and always keep it in flames for a long time beforehand so that all the evil is burned away. Also, you must never eat too much of it, for then you may become afflicted by a bad disease or a cruel curse."},{"id":"9ed686ed-1ae4-4374-a311-6c4afe8c7720","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"9ed9a88d-f31e-4f6c-bc61-ffdfd2e40594","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"9ee3d3cc-4545-4c5f-bc3d-9dbfba2dd85c","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"9f01b6d5-a9ea-4c14-9c14-4ee7857ec9c0","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"9f0855c6-76a4-4fcf-af00-e07d1831cf04","name":"Shed key","desc":"The key to the shed at the mill."},{"id":"9f0de888-bcab-482e-bef2-0967e4567ac8","name":"Wreath","desc":"Wreath of meadow flowers. It looks nice, it smells nice, but it doesn't last very long. Plus, it can attract bees."},{"id":"9f23695c-47f4-4652-b738-02014e18a16c","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"9f540535-0255-4049-aaee-9a0cbc15fc24","name":"Recipe for Hair o' the Dog","desc":"Reduces drunkenness or, in better quality, removes it completely. In better qualities it also helps with hangovers or alcoholism."},{"id":"9f79ce5e-ed24-4b21-97ae-7c921544f240","name":"Village hazel bow","desc":"A homemade weak bow made of hazel wood. It's not very strong or accurate, but it'll do for a rabbit or a fox."},{"id":"9f7a0c0a-6458-4622-9cc5-2f4dd4898b50","name":"Tailor's kit","desc":"A set of tools for repairing clothing and quilted items. Includes fabric for patches, scissors, needles and various threads."},{"id":"9fa3000e-3807-48a8-bed8-81427f0bda55","name":"Bandage","desc":"A longer strip of clean cloth that can safely stop bleeding."},{"id":"9fab5004-c2bc-4f9a-af62-8b3b82aa3bb5","name":"Dry Devil's longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"9fcaff60-d405-434a-9148-c2c43b3b42bc","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"9fdc5e97-6905-4458-87cb-3d8df1ea3cef","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"9fe8ee63-f75f-4362-a90d-3f1baa42b568","name":"Bawdy Whistle Tune","desc":"That must have been a torture live."},{"id":"9ff660b7-3ef4-4cd6-b61d-7e9e33185d69","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"a03b2465-ffeb-419c-9a16-1da38da68c13","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"a0503616-90d8-410a-afb1-db600bf40c6a","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"a0670dd2-1818-45d3-98db-5ab9ee90a061","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"a06cfbf0-3d59-4003-89d4-69a82eb735af","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"a0a6a756-e204-4943-b215-543471b5cc39","name":"Deer meat","desc":"Deer meat has its place on every Lord's table. It has a firmer texture, yet is lean and easily digestible. The meat of younger animals up to three years of age is usually the most valued, the meat of older animals is usually firmer and more aromatic, especially suitable for making stews."},{"id":"a0a9d335-44c5-4664-af92-558cf97d8283","name":"Tin badge of transmutation","desc":"After your throw, you can change a die of your choosing to a 3. Can be used once per game."},{"id":"a0ab454f-2935-4744-8115-53aafe17d66b","name":"Prokop's first wine","desc":"The young winemaker Prokop's first vintage. It's drinkable…"},{"id":"a0c2cd23-a88f-40c0-86bc-47dbab2d45c2","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"a0ff8ee9-9c48-4906-b25d-1ee2865f8c4e","name":"Bascinet with bretèche","desc":"An older form of the bascinet with a removable wide bretache, complete with a chainmail aventail protecting the warrior's neck and shoulders."},{"id":"a103d73c-c15a-4bd7-bd4b-57c3431dc643","name":"A treatise on the beauty of the crossbow","desc":"A treatise by the venerable Albrecht the Sharpshooter on why the crossbow is the new bow. Can be read from level 10 of marksmanship."},{"id":"a107a74c-d12a-424b-b97e-61aaa12c05be","name":"Merchant's coat","desc":"A simple merchant's coat with a flare and a wider skirt. It is intended to convey the traditional impression of the wearer's trustworthiness and wealth."},{"id":"a10e616f-d143-4a6c-8405-82314ccf841d","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"a11cc7f6-b499-4003-aef1-938e87b30a2e","name":"Dandelion","desc":"Grows everywhere as a weed, but mostly on grassy slopes and meadows it is to be found."},{"id":"a1255517-4c81-4403-999c-df5a0307b6b6","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"a133f7dd-1910-414e-b186-0ce4585a378a","name":"Letter for King Wenceslas","desc":"Letter from Jobst of Luxembourg to Wenceslas IV"},{"id":"a1526093-c93e-4b10-9bb2-6d75ef8bf9dc","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"a157447c-3c6f-463a-a02d-d4b696e644e1","name":"Padded chausses","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"a15a1849-ec36-4b51-833c-1903d2c14b24","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"a16e6c86-2970-4106-a25b-9b4ffa181977","name":"Silver badge of might","desc":"Using it will allow you to roll one extra die. Can be used twice per game"},{"id":"a16e6c86-2970-4106-a25b-9e4ffa181972","name":"Executioner's badge of advantage","desc":"You gain a new dice combination called The Gallows, which consists of 4, 5 and 6."},{"id":"a16e6c86-2970-4106-a25b-9f4ffa181972","name":"Tin badge of headstart","desc":"You gain a small point lead at the start of the game."},{"id":"a16e6c86-2970-4106-a25b-9f4ffa181982","name":"Silver doppelganger badge","desc":"You double the score of your last throw. Can be used twice per game"},{"id":"a16e6c86-2970-4106-a25b-9f4ffa181983","name":"Gold warlord's badge","desc":"You double the score of your turn. Can be used once per game."},{"id":"a18262f3-24c7-415e-ad0b-b5589961edb8","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"a18df8ed-8a4a-47fa-a9fc-bbf8a7f72d68","name":"Kuttenberg knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"a19f631a-cde3-49fa-97c8-8dc7ef8eab03","name":"Aujezd beer","desc":"Weak beer with no taste, almost indistinguishable from muddy pond water."},{"id":"a1bbf4df-3242-498e-9595-7879665c4ee8","name":"Broken bolt","desc":"Nothing can mend this irrepairable damage to the dignity of this once fine and dandy bolt."},{"id":"a1ce916e-52da-4b7e-89ce-1082f239ae2c","name":"As Quiet as a Cat I","desc":"A skill book on Stealth."},{"id":"a1d895cb-0495-45dc-be7b-0b72698c8116","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"a1dda25f-3a35-4376-b198-4e5173c742a8","name":"Deer skin","desc":"A well tanned deer skin. Fine and highly prized leather, used for higher quality products and a wealthier clientele."},{"id":"a20c4364-fe42-4a25-91b4-216a9beb15bb","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"a22aa670-5448-4f38-b3b2-2c9b823d72aa","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"a22e8f79-9f34-4d18-aadc-4db93458e9ef","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"a2c99721-0958-439f-a42e-f71e13a31ecc","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"a2d34481-de50-41ed-8d9f-a52a5c9706af","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"a2dabe71-e0a3-45cb-8f9f-7aca2f233c6b","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"a2ebabda-34f0-4907-b368-965075bef0a4","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"a2f2589a-aa7e-4f6d-a27e-8fb3f8af3577","name":"Player mark","desc":"A secret player mark to enter the lair of the All Saints."},{"id":"a2fe0244-0070-4552-984b-7fa0055a3dcd","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"a30e5fae-634b-4a97-8a16-f06ad72a0b7f","name":"Bacon","desc":"Fine smoked bacon, filling and pleasing."},{"id":"a30fa551-7a28-41b7-a2e2-c8e1eef84108","name":"Suspicious relic","desc":"A silver cross with a reliquary said to hold the foot bone of St. James."},{"id":"a314b580-bc97-4802-ae1f-8f4803e34503","name":"Belladonna","desc":"It grows in clearings and in leafy woods, but it is best not to seek it at all."},{"id":"a31f66aa-6726-449c-83d0-0bc34a0a108e","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"a32d3805-ac78-4eee-8aab-d60606955e8a","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"a3483b1b-bef2-402e-906f-0c2fd4917f49","name":"Smoked dog meat","desc":"Meat from a cute little doggie. Slice it, salt it lightly, roast it… what a bliss."},{"id":"a35846f0-9929-4767-9da8-f884c34d4d75","name":"Simple headband","desc":"Coloured or embroidered strips of fabric or ribbons are a cheaper alternative to crowns and headbands, popular especially among the poorer classes."},{"id":"a363573e-57dd-4eda-9b44-d9d9ddf47a5d","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"a364b800-c1ca-4bd1-92cb-ae1689bfa7ea","name":"Thistle","desc":"Thistle grows in roadside ditches, in clearings and where there is shade and relief from strong sunlight."},{"id":"a3699b3e-2bed-4feb-ba40-31cc40ee0f74","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"a3c3146a-84a7-4c98-a7a9-eb27d547e547","name":"Couters with rondel","desc":"Simple elbow pads with round rondels. Unless one can afford better armour, every protection counts."},{"id":"a40e513f-045e-421c-99c9-c10dae3d9fe1","name":"Cave mushroom","desc":"A mushroom from a damp cave. It is not advisable to eat it alone, but some alchemical recipes will definitely use it."},{"id":"a412425e-b683-4a95-993c-7239aada9358","name":"Dried marigold","desc":"Grows where the earth is fertile - on rubble piles and dung and abundantly too in pastures."},{"id":"a4180479-4a93-4758-babb-f730b8202569","name":"Wanderer's robe","desc":"An overcoat is made of thicker fabric and is designed for long journeys in bad weather. It is recommended by nine out of ten wanderers who have reached their destination."},{"id":"a425fe0d-f3b4-437c-95d8-8dba0296f2d1","name":"Gnarly's club","desc":"The Semine captain's club looks as crooked and old as he does. So perhaps it'll be just as good at smashing enemies."},{"id":"a42c2f51-88e5-45ce-b672-aa4e4e42a4ee","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"a431da4e-3472-4bc8-9817-f5357ebf853b","name":"Tournament bolt","desc":"An excellent bolt for practice shooting, but otherwise useless."},{"id":"a465f1df-a15c-443a-859d-6007a0879c47","name":"Chronicle of the Knights of the Cross","desc":"Old chronicle of the Knights of the Cross with a red star. The blank sheets of parchment at the end of the book reveal that its author never finished it."},{"id":"a46daff3-dcbf-4ac9-a80b-906f3773fdc4","name":"Vineyard cellar key","desc":"The key to the vineyard cellar in Loretz."},{"id":"a4a44d9f-9e28-4dc9-b82b-87f49ae32848","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"a4ad1f5a-f16a-4f00-bffe-d34769e0a746","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"a4ba18a5-b6ad-4e67-a146-909099f515aa","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"a4bbfe01-e327-4063-87a0-3a64692641e7","name":"Charles IV","desc":"About the greatest ruler of the Kingdom of Bohemia, Charles IV, who excelled above all other kings and raised the country from the ashes."},{"id":"a4bf4caf-d19a-4b42-9f30-573f8d30392c","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"a4cef06e-7cdc-4795-85d7-34abbb9035d8","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"a4d57e1d-217a-4f02-84a2-4052b4cf150a","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"a4de31f5-9af6-4a85-86ec-451d56817272","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"a4e0109a-8f79-45af-b21a-2c34a34edef9","name":"Large copper kettle","desc":"A large copper kettle offers great pleasure... when it's full, that is."},{"id":"a4e52915-90a3-4a22-b1f6-40365c72db60","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"a4edfa35-7152-4eb5-9cb0-c335a745dc8c","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"a4f0f4c8-dc3f-4cb2-be89-f0f56fbb09fa","name":"Boar's tusk","desc":"Nice trophy from the boar hunt, who knows how many asses this boar's tusk has torn. Suitable for charming the ladies, but also for various elixirs."},{"id":"a4f3f0bb-1739-41f6-9440-f2100156bc6b","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"a4fc318c-477e-485b-bf16-d08cf3277769","name":"Competition hunting sword","desc":"Light, perfectly balanced and sharp so that the feather is cut in half by its own weight when it hits the blade. That's what this hunting sword should be, but..."},{"id":"a5201dca-4fe1-4c58-9e29-1d563aacdbf7","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"a52152b9-16a9-437c-a057-fb719ae424b0","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"a5322fcd-27b4-4f4e-bfbf-49c519c74c74","name":"Nuremberg plate gauntlets","desc":"Full arm and forearm protection made of precision-forged and perfectly aligned metal plates. The armour is decorated with brass lining on the edges. It is named after the famous armour workshops in Nuremberg, Germany, where it may have originated, but is now commonly made in other cities."},{"id":"a54ab5ef-d4a2-4929-9045-1a1efde935c5","name":"Old notes on the fire investigation","desc":"Some old scribbled notes from Seneschal Ambrose on the fire investigation."},{"id":"a55d34e5-6127-469c-a4cd-838b86df074e","name":"Foreign fragrant oil","desc":"A foreign oil that is added to baths to make the water smell nice. This one is particularly odorous."},{"id":"a574386e-ea5d-4b94-a655-663b2381eded","name":"Dried boar rump","desc":"You can serve boar leg with rosehip sauce or cabbage, but never cook it the same way twice in a row."},{"id":"a59613fa-fd3d-4c8a-b189-a5ccd43ba779","name":"Dry Devil's longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"a59c412f-74ee-4fa8-98e0-d237da5f4af2","name":"Rikonaris' sabre","desc":"A good sabre worthy of the Voivode's position. Its wielder is not to be underestimated, for even the slightest cut can cause a terrible curse. At least to those who believe in such things."},{"id":"a5aeba9c-2e4b-4710-a6cb-5233aadab516","name":"Short chainmail","desc":"Shortened chainmail shirt with long sleeves."},{"id":"a5b31bbc-1e11-4831-835b-c06d5b13a7da","name":"Better piercing arrow","desc":"A well-balanced arrow with a heavy arrowhead designed to pierce armour."},{"id":"a5eedab1-4c1e-4704-a26e-393b9fcd123c","name":"Recipe for Scattershot gunpowder","desc":"Gunpowder for shooting scrap iron and other small projectiles. It'll pierce anyone at close range, hit no one at a distance."},{"id":"a607362b-7aea-49fc-88a2-6ad92cb52008","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"a6219b9c-d834-40f1-b91d-314e7918fe43","name":"Mint master's key","desc":"The key to the treasury of the Italian Court."},{"id":"a6271f15-0d29-4234-ad06-8810f939bfe6","name":"Leaf-shaped couters","desc":"Simple knee pads called couters with a leaf to improve protection against slashing blows."},{"id":"a63c1f3b-9eb1-4a6b-86dc-44691bbe8508","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"a65b08f8-5fae-4cf8-ad66-ef70715625b2","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"a67fc79d-fe99-4ea7-bd60-f619d229c5cd","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"a6868ef1-38e4-4660-9e64-5c87b5ebaf5a","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"a695d6b3-541d-4c46-93a3-a1955d5bd919","name":"Feverfew","desc":"A plant that is widely cultivated and used to reduce fever. In many languages, therefore, its name refers precisely to this beneficial property."},{"id":"a6a525be-f71e-44cd-8797-d5a5e0077c5b","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"a6a9ef0f-e1c7-4177-99d1-b8371dd36894","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"a6ae026c-f27b-48d0-9b36-80e44b51e2f2","name":"Kuttenberg execution book","desc":"One of the copies of the execution book from the Kuttenberg Town Hall. It records the testimonies and statements of captured criminals."},{"id":"a6daa5f3-1731-4147-9e49-cafbe0595adc","name":"On the Composition of Alchemy I","desc":"A skill book on Alchemy"},{"id":"a6f4fcf5-9d0a-45c4-8641-b9689415983b","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"a6fc95eb-9cf2-4554-ad72-9a9c09aae177","name":"Ornate hunting crossbow","desc":"An tastefully decorated light crossbow that can be drawn with bare hands. It would be a shame to hunt with such a beautiful weapon!"},{"id":"a6fdf67f-f133-429d-a06b-ef4380ba5c35","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"a710d21c-6b50-468d-bef8-4f0201f8d116","name":"Noble's plate legs","desc":"A masterpiece of plate armour decorated with brass lining. The forged plates are further hardened to achieve higher durability, while the metal sheet could be weaker and therefore lighter overall. The plate legs are completed with foot protection called sabatons."},{"id":"a73e327e-fbba-4cb0-8f6c-d807d150e288","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the subjects and the army, is decorated with Kuttenberg symbols."},{"id":"a7460fa7-fe8b-4606-ab35-44379e35fe77","name":"Dried chamomile","desc":"Most often it is found in fields and fertile land."},{"id":"a7482fe4-9db0-4fdc-9903-4f80655860e0","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"a763795a-ae0d-414b-83fa-f8831aff3813","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"a76e4c3b-a427-4afd-a27a-d4206f5c769c","name":"Caught thief's map","desc":"The map that the caught thief had in his possession. I wonder what it leads to?"},{"id":"a7735341-9bf4-45a3-b871-9619421e8be2","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"a79e3e3a-32a1-4f85-b009-e06bc8c15c82","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"a79e8354-4706-4dde-bec3-51e1d88bf699","name":"Noble quilted trousers","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"a7a03d79-9c3e-4bbe-a2a4-fa2312413451","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"a7f3105b-4529-4507-8968-1f0ed512af2f","name":"Dried roe deer loin","desc":"A tasty and not too fatty piece. As with other game, the best meat comes from younger animals. It is advisable to let it hang out for some time before butchering, as there is still too much blood in a freshly killed animal, which makes the meat unnecessarily tough."},{"id":"a7fbfc99-4c3a-43cc-b10d-af98dfb61ec5","name":"The Art of Demosthenes I","desc":"A skill book on Speech."},{"id":"a7fe9db7-83d6-460c-a0d8-64b67355ace6","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"a8153319-98ed-4023-a036-62dc9ec7998c","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"a8347822-8eb2-498b-9f5e-d97958505e67","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"a83e7036-0c3e-4782-84f5-403f0a174d49","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"a849c321-0df7-4157-9ccd-10066b489cd7","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"a84d558b-9542-4223-90d3-22c096c3bda6","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"a851944a-cec0-4d0e-a3cf-ae46f81da933","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"a854b491-cc87-4852-abc1-3deb4838c631","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"a856e87a-8065-4338-919d-0aff7a63341d","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"a8723887-ac6e-45a0-a6a4-0cf905716b6d","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"a8786209-94d2-4a53-8492-a9d9efa8b5a2","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"a8a2dd92-f182-4311-a9ee-a8a667c335c1","name":"Smoked boar rump","desc":"You can serve boar leg with rosehip sauce or cabbage, but never cook it the same way twice in a row."},{"id":"a8a8db9c-955c-410f-9d47-1af70d917900","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"a8b22da0-e42e-4d79-abe7-52e6eebad6eb","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"a8b789d7-558a-40d6-8ea2-a1304e880dac","name":"Mysterious map","desc":"A map marking the ambush site, scribbled with charcoal."},{"id":"a8c53fc4-a1cd-43b6-972f-1532edd1fcc1","name":"City of Prague pavese","desc":"A riding pavese with the symbol of the Old Town of Prague."},{"id":"a8cb0916-6466-4728-b551-6f645d40a76d","name":"Noble's plate legs","desc":"A masterpiece of plate armour decorated with brass lining. The forged plates are further hardened to achieve higher durability, while the metal sheet could be weaker and therefore lighter overall. The plate legs are completed with foot protection called sabatons."},{"id":"a8d552a9-3f9b-4e4e-b032-7328bdac5d96","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"a8e9ede6-4da0-4259-9a08-be749fdeed98","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"a8eb10aa-84eb-416f-8ed2-46d909a26552","name":"Lord Pisek heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"a8fe8e05-2024-44a3-8161-4b5fe3929ed9","name":"Treasure map - First","desc":"The greatest treasure are the friends we have made along the way."},{"id":"a904d61c-58bc-43a6-8f59-2be813f7eeaa","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"a912b643-04c2-4e56-802f-10060d4fdde5","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"a92496ad-4a82-4815-93d8-5ae56bf78f88","name":"Rider's war hammer","desc":"The war hammer is considered by many to be as noble a weapon as the sword, since it is used where there is no room for swordplay and hard blows need to be dealt. The war hammer is therefore designed to penetrate armour and crush bones in the heat of battle."},{"id":"a931e179-4291-42b7-acb2-9d3bc0914f56","name":"Sketch – Shell hunting sword","desc":"A beautiful hunting sword with a hilt made of deer antler will not disgrace even a nobleman. It is usually used to put out hunted game, but it will also help against uninvited forest visitors."},{"id":"a94f1ef3-5328-462b-b18a-18375c515795","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"a955dc3d-1327-40d2-a9ea-bb2d06f576ec","name":"Bane poison recipe","desc":"Depletes 110 health and therefore leads to certain death. In better quality, it depletes health faster. It's better for poisoning cauldrons than applying to weapons."},{"id":"a966bc20-b31f-4b7c-a4d6-2a5abe669f4f","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"a98fb543-fa1d-4baa-9018-e758bab89958","name":"Treasure map - Second","desc":"He who finds a friend finds a treasure. Usually in his pocket..."},{"id":"a99e3e22-4ed7-427b-831a-2c455faff4fc","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"a9a69e72-4ee6-4e0a-9439-e617675e52e6","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"a9ae4ee2-b096-423f-8ac7-c375acc17bec","name":"Odd moonshine","desc":"Schnapps from the hidden stash. Judging by the smell, it's bound to have the right kick."},{"id":"a9c075b0-7af8-40b4-ac1b-03a959e899b2","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"a9ecabe4-cd0c-4f13-a0dd-c32621f10a4a","name":"Royal waiter's certificate","desc":"A certificate proving eligibility of a waiter to serve His Majesty, King Sigismund of Luxembourg."},{"id":"a9ef7321-dc22-47f6-a32d-9ac7baf7dd01","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"aa042467-0d9a-4764-adf6-250c64566654","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"aa0b6bc8-e7f6-4777-b931-1ae81d7ef8da","name":"Shrinking die","desc":"A very lightly loaded die. One can barely differentiate it from an ordinary die."},{"id":"aa11dbd6-bdeb-4341-b5d1-a7a7c5319fbb","name":"Poacher's gear from Kopanina","desc":"Poacher's kit found in the woods of Kopanina. My dog should be able to track down its owner."},{"id":"aa1c4f7c-c4b9-4d96-ab0f-fa281d0d5151","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"aa1e5987-0b18-41a0-ad20-ec08d9e248c0","name":"Recipe for Soap","desc":"You can't wash your own clothes without soap."},{"id":"aa210295-4812-4277-b80d-a3ef11d91f60","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"aa2446a0-dee9-4542-a677-16892ddf4657","name":"Aim and Fire! III","desc":"A skill book on Marksmanship. Can be read from level 10 of the skill."},{"id":"aa3286d9-2f20-43e9-a492-ade194ef62f4","name":"Pinot Noir 1402","desc":"1402 was an excellent vintage and the winemaker clearly had considerable talent. This is the best wine ever made here."},{"id":"aa33e7f4-78d7-4e0f-9da0-10458f2a0ea5","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"aa380c5e-6189-489d-a448-0db7f101195f","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"aa414af7-21c8-41eb-9aa4-ab2384831c76","name":"As Quiet as a Cat III","desc":"A skill book on Stealth. Can be read from level 10 of this skill."},{"id":"aa4ca12f-7453-44a9-9792-9ffd57d512c9","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"aa9e69d2-55de-4c32-bf48-35226c346532","name":"Hungarian pavese","desc":"A cavalry pavese with Hungarian symbols."},{"id":"aaad7362-ec12-4e22-885c-075450001468","name":"Smoked horse meat","desc":"It's a shame about a good horse, but if there's nothing else to eat... And it'll taste better with a little smoke."},{"id":"aac53a0e-4926-4852-8441-a84c170fecdc","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"aad9ef70-5ef7-43f7-ab9a-e45b31335d2b","name":"Painter's muse","desc":"A head full of ideas, whispering into the artist's ear."},{"id":"aaeb7d08-bc5e-4cc5-8a6f-70ccff2640d4","name":"Most Faithful Friend IV","desc":"A skill book on Houndmaster. Can be read from level 15 of this skill."},{"id":"aaffc5ae-7ea4-4e80-9049-9a59c5ea4613","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"ab00cbfa-758d-4e95-8361-9027a1c1b515","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"ab0f6a86-4064-4c73-a4ad-7dd78748e605","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ab276602-2137-489d-80e5-b49929328f1e","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"ab2e5973-99f4-47b2-b7e3-d9a5ce0d4174","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"ab362878-55a9-4f5c-ba6b-e6db2be3d257","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"ab37edc1-9c23-4384-bc11-c0f680e41f27","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"ab3fcd8d-874a-4710-b6ce-7f249b706fb6","name":"Marikľa","desc":"Roma bread made from flour, water and salt."},{"id":"ab49c45d-1012-4400-90ab-bd57aa10a72f","name":"Village elm bow","desc":"A homemade stronger bow made of elm. Elm wood is flexible and hard to split, so it is excellent for making very precise bows."},{"id":"ab53ab2a-acd7-433c-ac56-b8f45e66cd70","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"ab588007-0049-4a7b-b2cf-ef36c6e826c5","name":"Beggar's coat","desc":"A beggar's overcoat is all patch and almost falling apart. Still, in a pinch, it's better than nothing."},{"id":"ab5b3ad5-5bb5-4fe9-a5bb-8ee1c4f713b5","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"ab7be326-54c2-4a09-beec-4eec44e57cc6","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"ab8cea64-b411-46ed-bb54-7c1af4b17a3d","name":"Lord Capon's longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"aba44122-f78a-4e89-a0f8-64f5752d77db","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"abb3e8b3-8c25-47f1-8e44-9b4b61380bef","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"abb6cc5a-3592-406f-82ab-edfb73e219be","name":"Amanita muscaria","desc":"Commonly known as 'fly agaric', this brightly-coloured mushrooms attracts attention, but consuming it is potentially life-threatening! However, in small doses it can provide a variety of effects, which alchemists commonly make use of."},{"id":"abefbca6-85ee-4021-88c9-778a49d969e6","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"ac10b82d-d8f9-48c9-b5ec-7e00da593aff","name":"Feast of the Dead","desc":"About food and death."},{"id":"ac199213-ff21-41d6-85e2-f11938f12080","name":"Revenant's coffin nail","desc":"A nail from the coffin of a revenant is said to protect its wearer from those who've returned from the dead. +3 damage to undead."},{"id":"ac26f226-5020-4f2e-be67-8748fd5b789e","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"ac508737-02c0-4780-a226-32975ed1b2f4","name":"Deboned trout","desc":"A tasty freshwater fish, ideal for frying, baking, or adding to a soup. How come this one doesn't have a single bone?"},{"id":"ac551bf3-6d8a-4531-983e-1ca104b523e6","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"ac58f8fa-e6ce-4503-812d-b446612c46e1","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"ac6471e4-5983-4c47-a12d-66d96bab863a","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"ac713c38-958e-4233-a928-653400b3f1a3","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"ac7659a2-eb1a-4a9a-8af2-6601173b7522","name":"Tin pitcher","desc":"Drinks served from pewter dishes taste a little strange, but the pitcher sparkles and that's all that matters!"},{"id":"ac87e7e7-ab80-4c7a-b3a5-353dbbbf1e01","name":"Broken Roman soldier's spear","desc":"Remnants of the spear that allegedly pierced Christ's body. The broken spearhead is covered in a dried black substance."},{"id":"ac9b3dea-a1e6-49df-880b-7976e7d5abec","name":"Soap","desc":"Soap, a mix of fat, ash, and who knows what else. Combined with water, it works miracles on dirty clothes."},{"id":"acb739ba-acc9-4018-8883-5acf7ff56804","name":"Mended cuirass","desc":"This cuirass has been in a fight before... and not for the first time. Battered, full of patches, but still a piece of metal that can make the difference between life and death for an unheralded warrior."},{"id":"acd2c546-8ae3-4497-b4de-4ada14eaf452","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"acd6f557-5296-4047-abab-87020c65d991","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"acf965b7-7011-48d1-a89d-cef260ed3701","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"ad0604da-da64-4d19-8364-e4cf1d297797","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"ad246ca4-aad6-40c0-9b5e-1458e843dee1","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"ad54c2eb-0c07-48d9-b933-f7b15727b294","name":"Elderberry leaves","desc":"This plant has a wide range of uses. The berries can be made into juice or sweet wine, its flowers and leaves are often used in folk medicine. Its flowers can also be covered in batter and fried. This flavourful dish is called 'Kosmatice'."},{"id":"ad5bcf05-c082-4ead-be9c-2f16c6d3dde7","name":"Marksman's bolt","desc":"A bolt with great range and high accuracy."},{"id":"ad6f0f01-aec4-44d1-982c-1210eb01b74a","name":"Ordinary arrow","desc":"A common arrow used to fire from a bow."},{"id":"ad823378-0275-4604-8dd9-bf7a558b2789","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"ad878f77-e53d-4dec-948b-2627fea5df1d","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"adaae999-4b93-490c-bac2-a8fd8c76b94b","name":"Rosa's manuscript","desc":""},{"id":"adcf08a9-c253-4562-803f-8afc65e4684b","name":"Lost farmhouse key","desc":"The lost key to the farmhouse, found its place under the bridge at the Zhelejov tavern."},{"id":"add56f71-8c58-4248-9120-1d310697bec6","name":"Excerpt from the horse registry","desc":"A tear-out sheet with the names of the horses and their sale price."},{"id":"ae03f551-3438-48e3-973b-9ff0a13265c8","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"ae0a6322-078b-46bf-b699-0ed4f3403094","name":"Sketch – Homemade hunting sword","desc":"A terrible skull opener or a mere figment of the tortured mind of a clumsy apprentice who abused the blacksmith's craft to create such wickedness and called it a hunting sword?"},{"id":"ae18a2ee-68d1-465a-8c36-298ca51ac2f3","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"ae1bbf2f-6bee-4e7d-82a0-5cd898ab8718","name":"Dried pork","desc":"Dried pig is excellent for long trips to the mountains..."},{"id":"ae45230f-65b0-442a-ab4e-b50a6ea3121e","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"ae5d86e4-d0d9-4674-8838-d041bcd5731f","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"ae873e17-3e99-4dac-830b-3b484b9f887f","name":"Yew hunting bow","desc":"Hunting bows are supposed to be strong enough to bring down larger game. This bow is made of yew, and besides an inattentive deer, it can also torment many a trapper, if he is not wearing an iron skin."},{"id":"ae8a5d4f-c148-499b-8f84-49bf6d4017b5","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"ae8cf8a1-7050-4138-9b1c-ed55947fd08e","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"ae9a38a1-0f69-4b4d-8bda-7bc047055ebb","name":"Marathon I","desc":"A skill book on Vitality."},{"id":"aea861d5-30ef-483d-a326-6a29a98ea726","name":"Plate knight gauntlets","desc":"Better hand protection is a must in combat because as they say: hands go first in any fight."},{"id":"aeb13096-7bdb-46c8-b9b4-c4f8125cb83a","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"aebf0cf6-7ace-4acf-89d7-6366a6ec01af","name":"Secret gambling den die","desc":"This die will not only secure me an easy win but also grant me entry into select circles."},{"id":"aed4b745-7f15-489a-b7de-0c216c78e888","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"aefd0612-6c7a-4198-bc75-45c5a8575862","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"af02af84-0fdf-4270-9a44-f28380c33b87","name":"Saint Veronica's veil","desc":"The veil that Saint Veronica used to wipe the blood and sweat off the forehead of Jesus Christ."},{"id":"af03a987-053a-4b91-ace2-da2f1b501dd0","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"af5dc522-fd00-40d6-90dd-04cf693951fd","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"af6a6142-c6f7-4ae7-94a9-bb5be41ebecc","name":"Heavy mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"af74e4b7-6318-4f8b-98d0-88df2c188fe7","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"af751ab8-f6c1-4180-bc2c-46a6d3a8e6a0","name":"Pitch","desc":"A thick black oil produced by the charcoal-burning process and used to fill barrels and treat ropes and fishing nets. Pitch-soaked fabrics are waterproof but also more flamable."},{"id":"af9bcfd0-6cb5-4944-bd8f-a53d2253f51e","name":"Decorated sword pommel","desc":"The end of the hilt of the sword. It is struck against an iron tang, which is then hammered and the pommel is thus fixed. It serves mainly to balance the whole weapon and as a counterweight to the long blade. In swordfighting, it prevents the weapon from slipping out of the hand, but it can also be used to grip and extend the hilt of the sword. Some swordfighting techniques use the pommel to deliver crushing blows to the opponent's face."},{"id":"afa1ab10-b28e-4d76-873c-8a4780603695","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"afe43649-6e72-4444-a759-37cadf034e26","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"afeb5bfd-377a-415b-8822-baca01844e34","name":"City of Prague pavese","desc":"A riding pavese with the symbol of the Old Town of Prague."},{"id":"aff5df75-e6f0-4f0f-a4b7-de6cd7ab0a5e","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"b02480ea-8bd5-479c-a7ec-5363857bf849","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"b0270a6f-740f-4f04-a7f7-e948188c497e","name":"Kuttenberg heater shield","desc":"A beautiful and solid knight's shield made by the master armourer Nicolas Krondel from Kuttenberg. It bears the colours of the mining town and is an example of excellent craftsmanship."},{"id":"b034783f-9aac-4eeb-83dd-ac141eaf2a94","name":"The Strength of the Knight I","desc":"A skill book on Strength."},{"id":"b0381cd4-e7a5-44b6-b9c4-170abf618ce1","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"b043c763-0918-4085-96e3-08b24d7871db","name":"Cooking scraps","desc":"Various leftovers from cooking all those delicacies for the wedding. It's just enough as a beggar's alms, but the Semine cook is saving it for leaner times. She's definitely against letting it be eaten by the riffraff."},{"id":"b052625a-7525-4295-9ba6-bbe82233c82f","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"b08cb478-d900-4be1-9fd9-f2754f4d2ff2","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"b091659c-7293-4a63-992f-1b4bde3b87fd","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"b0af19a6-8dd2-4306-9fec-90cea54935de","name":"Map to the secret mint","desc":"Map showing the location of the secret mint."},{"id":"b0b3babe-9c0a-4cb4-9f50-f4447a835ffa","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"b0d1f5f3-d97a-4b3f-ad3d-1ff6c63e2189","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"b0d340dc-6417-4e88-9b1f-a1e95b3d0eb9","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b0dee4b3-51a4-49c2-990c-56c572cdc3cf","name":"City of Prague heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"b107b189-7eea-4eae-bc64-2a23bd650b14","name":"Open bascinet","desc":"A helmet called a bascinet forged from a single piece of sheet metal. In this basic form, it has no bretache or klappvisor and therefore does not protect the warrior's face."},{"id":"b122508a-959a-4bde-9de2-fe20cb7b4c79","name":"Training item","desc":""},{"id":"b128bc50-58da-494a-ba3d-c47d2d044e7c","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"b156e3e0-5686-49f6-b795-b0ecf10f024c","name":"Dead rat","desc":"A rat carcass that barely resembles a rodent any more."},{"id":"b16e6c86-2970-4106-a25b-9e4ffa181972","name":"Tin badge of defence","desc":"Use to cancel the effect of your opponent's tin badge."},{"id":"b173b837-5ee6-4b16-b843-b72eae1a1ce6","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"b1743a22-07c7-4758-8f3b-a8f86e70b37a","name":"Sacrifice to the demon","desc":"A handful of food for the mine demon."},{"id":"b182e5b9-db3f-4e21-af56-dddbd3429df5","name":"Wayfarer's map II","desc":"A map to a site where there's treasure."},{"id":"b1b9a304-4f2c-4e43-8f2c-166abf25243c","name":"Short chainmail","desc":"Shortened chainmail shirt with long sleeves."},{"id":"b1ccc94a-9584-4bca-80df-8e93e1cbd36c","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"b1de7a91-1644-4ad6-b186-a5b40764be7f","name":"Dried beef","desc":"Nothing goes better with everyday work in the fields than some good beef jerky."},{"id":"b223fcf5-ee9d-444a-a9d3-23b01bfe64bd","name":"Ordinary coat with crest","desc":"A plain coat, made in red and white and decorated with symbols of Kuttenberg."},{"id":"b224ffbd-7e36-44f3-9cff-07966a6c8287","name":"Recipe for Painkiller brew","desc":"Suppresses injury effects and reduces how much maximum stamina decreases with health."},{"id":"b22dd85e-0e65-40ba-a89a-301f6bf540bb","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"b2418856-aa99-4d02-8c51-1261556b7b15","name":"Poacher's map","desc":"Map showing hunting spots around Suchdol."},{"id":"b24567ff-015a-4771-802e-629dc5d2d077","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"b24cef83-a8d7-4d2a-9ae0-079beccfa9df","name":"Ockham's Razor","desc":"A dagger that can rid the world of superfluous entities and retain only the most essential - God."},{"id":"b26e6866-c903-4238-9f64-24eca84fc34a","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"b26e6c86-2970-4106-a25b-9e4ffa181972","name":"Gold badge of defence","desc":"Use to cancel the effect of your opponent's gold badge."},{"id":"b26e6c86-2970-4106-a25b-9e4ffa181979","name":"Gold badge of resurrection","desc":"After an unlucky throw, you can throw again. Can be used three times per game."},{"id":"b2840078-612e-49de-b236-6de80a380d70","name":"Cinnamon","desc":"Expensive foreign spice excellent for gingerbread and meat."},{"id":"b2844271-4457-4987-a69c-fc4df87166a8","name":"Strange little verse IV","desc":"A strange verse, probably referring to a certain place in Kuttenberg."},{"id":"b28c3413-1129-4cec-9453-6e559f3958cd","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"b28dce7d-6d2e-4c62-84e5-282158fdeab6","name":"Magic arrowhead","desc":"The magic arrowhead from Karel the Arrow's head."},{"id":"b28f5235-6e87-4e56-811c-69d4a9a605dd","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"b28fa13a-81e2-4126-84b2-109e64b00326","name":"Lute strings","desc":"Lute strings made of sheep gut."},{"id":"b29874c7-734e-448a-9227-b0b261c900d2","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"b2acb776-283a-4159-a87d-c45fe78b8c5e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b2f8f5e3-8e5e-4600-a4bb-be17e2d4a058","name":"Cheese","desc":"A wedge of cheese. When it's properly aged, it lasts a long time and is filling."},{"id":"b2fa79fe-3084-434a-8b93-e92be7f44dcc","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"b2fb7ba0-84c9-4f91-8331-bd7ee6738320","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"b302ee9d-d64c-4dc2-b045-05cd7d238eb4","name":"Scattershot","desc":"A pile of scrap iron and rocks tied up in a small bag. It'll shred anyone at close range, but at a distance it's rather useless."},{"id":"b30d901c-d6b5-4518-895d-bcc148ecef29","name":"Gemstone rosary","desc":"A rosary embedded with a precious gem. May God forgive me for my vanity."},{"id":"b310983d-3813-42ec-9427-8ac87493fdd6","name":"Quilted coat","desc":"Quilted thick coat, suitable for every splash and slots."},{"id":"b3218b3f-06ab-4b56-8030-a10d64ec1d41","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"b334b8ad-8ecf-4ff6-b951-39b7d28cc391","name":"Wayfarer's map III","desc":"A map to a site where there's treasure."},{"id":"b362fe00-1a90-448d-9b80-423bce085a75","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"b37768bf-a6a5-4f3d-954e-eb1a1271c964","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"b3a22213-cc7a-4d5f-afe3-728fa0f12231","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"b3ade582-af56-4712-ba4c-26febff6a983","name":"Sketch – Knight's horseshoes","desc":"A blacksmith's horseshoe sketch. Because every master had to start somehow."},{"id":"b3ca8b90-f337-4be8-b41c-15ee6f25cad2","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"b3dc9c7a-b378-47b2-b68c-887abb7f34a4","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"b3e363cf-8dde-4733-89a9-c468d5580d2e","name":"Sweet pancake","desc":"A sweet pancake made of milk, flour and eggs."},{"id":"b3ea937c-5912-45ee-96c6-9331289407f0","name":"Boiled wolf meat","desc":"Only eat wolf meat in an emergency and always keep it in flames for a long time beforehand so that all the evil is burned away. Also, you must never eat too much of it, for then you may become afflicted by a bad disease or a cruel curse."},{"id":"b3ee8c6a-9f16-45aa-88cb-6d0a4698d96b","name":"Cockerel recipe","desc":"Increases energy and in better qualities slows down fatigue."},{"id":"b3f7a363-5526-45b1-a32b-422a0a8e4da4","name":"Knight's sword","desc":"An older form of a knight's sword. Slightly heavier at the tip, therefore best suited for fighting slower, heavily armoured foes."},{"id":"b40180dc-2001-400e-b197-2aeda0cbbda9","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"b4026f8d-b440-4bb9-9149-0226220ee684","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"b405d47f-2728-4e0c-8b6f-82ffcd4c0280","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"b40942a9-f067-4a6d-8cd3-59a03e8a59d1","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"b41171bf-9332-44ce-96fa-7e64d6e5e92a","name":"Die of misfortune","desc":"They say that when it rains, it pours. But if you play with this die, the only thing pouring will be your tears."},{"id":"b43b8e5b-4891-48ce-a39f-143956862c96","name":"Fer die","desc":"The third and last in the line of demonic dice."},{"id":"b4568e30-c126-46cb-bbe6-5336b4a7ddca","name":"Sketch – Cuman fokos","desc":"Cuman long-handled fokosz. A fast and agile weapon of the Hungarian raiders. It can pierce light armour or the skull of a good Christian."},{"id":"b49694c9-31dd-49f0-bc1b-be86644cf1fa","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"b4a0b9c9-bf92-4cce-ad43-f20f57c892b9","name":"Elm longbow","desc":"A long strong bow made of elm. It can hardly be compared to the famous English longbows, but it can still do a lot of damage both in the woods and on the (war) fields."},{"id":"b4ab07ae-25e6-4dc8-b9c7-8ac8b68d4378","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"b4b6b682-9daa-40ba-b18a-1a486e4b8c78","name":"Life in the Saddle I","desc":"A skill book on Horse Riding."},{"id":"b4fb48be-9adb-4750-b7e6-7a88f47aff97","name":"Guild Longsword","desc":"Very bright was that sword when it was made whole again; the light of the sun shone redly in it, and the light of the moon shone cold, and its edge was hard and keen."},{"id":"b5010b71-7826-49b7-8a9b-40ef61931db2","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b52f068d-ec96-4831-b7a0-77c352e1516c","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"b5306c8c-e6bf-414b-bd5e-5d9b5b82eb98","name":"Lords of Hradetz knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"b537321b-adff-4653-8a7b-73a5532251d6","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"b53f8306-8199-46cc-9e25-ea1e542b7439","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"b555642b-a29c-4909-beac-1ad82c1dd650","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"b5583fd1-745e-428a-98c8-c353309a0fc8","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"b5587dd4-f7d8-4378-9903-7626a227ca0f","name":"Henbane","desc":"It grows in sunny and warm places, especially on dung and rubble."},{"id":"b5704a7a-2cd7-41c0-9705-4df6ca723d21","name":"Vrchlitz water","desc":"Water from the Bach stream that's been distilled and purified several times. It might even be drinkable now."},{"id":"b57b0d72-b8c3-4ce7-868a-527ccf71f3f5","name":"Jester's disguise","desc":"A colourful coat decorated with jingle bells and an equally colourful jester's hood are worn by the minstrels in an attempt to attract the audience's attention. Be careful not to burst out laughing."},{"id":"b57be3cc-2730-4a58-a3bf-97e5f1d46fc4","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"b5919d10-da5a-4b53-9588-fdd98c46a092","name":"Fur-lined hat","desc":"A fur-lined hat is favourite among the sholars andwise doctors."},{"id":"b5940236-f481-4d78-b787-dca6c6aee76f","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"b59569d1-102b-414a-91ea-3dfa34d0c922","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"b595a565-d162-45d8-a6ba-0620e760ccab","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"b596f465-4f28-44d9-89bc-c912f3248af2","name":"Vagrant's hat","desc":"A simple felt hat with a wide brim protects your head from the sun and rain. For a poor vagrant, it's often his only possession besides his own rucksack."},{"id":"b5bfc0d3-b4e2-421c-ae14-4bce9f1f54be","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"b5cae211-fe96-44ec-99c2-4105f14aecf6","name":"Historia Troiana","desc":"The story of the mythical Trojan War, describing the siege of the wealthy ancient city of Troy by the Greek army and its ruthless conquest by the Mycenaean king."},{"id":"b5ddbe11-3b32-4dfb-9920-ee16dddc13b5","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"b5e0ebd7-5b5d-42a1-a350-af5028e21e7c","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"b5e8c86f-a5a9-4e8d-a883-3efad5e492fa","name":"Towards Flexibility of the Body I","desc":"A skill book on Agility."},{"id":"b5e8fa52-02c7-49e4-83d7-2d6e20e1b73d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b6097763-5301-43ef-ae67-5313a1a1fc29","name":"White buck's hide","desc":"A beautiful white hide taken from a buck. Found in the poachers' camp in the forest near Suchdol."},{"id":"b60f3df8-6de0-4fa1-96ba-b6877ada65f8","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"b6128460-8284-462b-a766-5ff8b3fd490f","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"b613cd1e-46f1-4b9d-966d-6590368cd011","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"b63d9104-8563-4325-9369-28792667fb23","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"b646ea7d-3ba6-4f2c-8784-b736402b95bb","name":"Map hidden at Vostatek","desc":"A map I found hidden at Hunter Vostatek's."},{"id":"b66c8bf6-1ee5-463a-8a04-05402c78e1d6","name":"Most Faithful Friend II","desc":"A skill book on Houndmaster. Can be read from level 5 of this skill."},{"id":"b6704b45-e58d-49e5-a045-b5dbfacd40fb","name":"Lord's overcoat","desc":"Long lord's overcoat made of fine fabric, decorated with rows of buttons. Perhaps every person in it looks robust and dignified."},{"id":"b68c8442-fb20-4b33-90e2-e9eed751dca9","name":"Blacksmith's chest key","desc":"An old, dusty key."},{"id":"b6b5f07a-d94d-4a1b-a9af-bad64277ab13","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"b6c5f093-1a1e-413c-96fb-6e5918302b0f","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"b6cdfe6c-0cab-4880-aece-3ab8ac68ac9c","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"b6e14db7-5210-45d2-97f2-236ad6805e3a","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"b6eddbe5-6978-4feb-93df-fb2f72b6902e","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"b6fe59ec-c854-402a-848e-a77f55661c19","name":"Italian bascinet","desc":"A helmet with a fashionable italian klappvisor. It is a good middle ground between price and armour durability. Lately, this helmet has become very popular among mercenaries."},{"id":"b7096cc8-de63-4b9b-a356-4af3ed1700d5","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"b738d184-4ae1-4d74-8fac-b8db1943b1d4","name":"Enhanced hunting bolt","desc":"A balanced bolt for hunting game."},{"id":"b750fb4f-fd42-4ddf-8c6e-0da53880f65e","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"b7655622-1ffb-4e55-94be-c091b04c115a","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b77f912a-042b-47ca-8f42-5fddbcad3763","name":"Old field crossbow","desc":"An old war crossbow. It has considerable strength, so its arms must be cocked by means of an iron lever called the Goat's Foot. Worn and repaired several times, but still guaranteed to take down many enemies without proper armour."},{"id":"b795b2e1-7d69-4255-a7fe-cc1d075a7305","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"b797e1c2-c557-46ea-a47f-abce7b1bb030","name":"Baker guild knight shield","desc":"A guild shield. Baking a crispy, crunchy pretzel is a royal art. The Bakers and Millers Guild is one of the most influential in Kuttenberg."},{"id":"b7a53d8a-8c77-4db0-b6af-62a98542c914","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"b7a63686-09e7-425f-b998-10eab19e02cb","name":"Letter from Bishop Thomas III.","desc":"A few lines full of important reports from the Hungarian Bishop Thomas of the city of Erlau."},{"id":"b7b718ac-1879-49d6-a5d1-08ddc2cb469b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b7e10a4a-08f8-4582-b71e-b562c72fe8da","name":"Bird king's badge","desc":"The badge of the rightful king of the birds will allow you to roll an additional die. Can be used twice per game."},{"id":"b7e9b9f3-a128-45f9-885a-076b63df158a","name":"Lord's overcoat","desc":"Long lord's overcoat made of fine fabric, decorated with rows of buttons. Perhaps every person in it looks robust and dignified."},{"id":"b7ee311c-736b-4f7c-987b-8431ce3b5600","name":"Carrot","desc":"A root vegetable, healthy, juicy, and sweet. Good in soups and mash. Can be eaten raw as well."},{"id":"b7f2ba9b-9468-47e1-a7a8-2e2c0cff50e6","name":"Gnarly's shield","desc":"Gnarly's shield"},{"id":"b7ff26f3-24a4-46c2-97b8-655da1827190","name":"Vineyard herbicide","desc":"A strange concoction smelling of oil and hemlock. If it's supposed to kill weeds, it'll surely work on humans too."},{"id":"b80a30ee-43d9-4d73-b064-b7c366320070","name":"Italian hauberk","desc":"Lightweight short chainmail shirt with shortsleeves."},{"id":"b862b26e-0ec4-4932-89ca-e99c05c970e1","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"b867dd0e-1bfe-40e9-b114-4b126a3ff1b0","name":"Hunting sword","desc":"The hunting sword is the faithful companion of every hunter or poacher. It is usually used to finish off hunted game, but it's also handy for cutting kindling for a fire."},{"id":"b8708875-1d55-4369-9858-9b6e2dd3f957","name":"Grund smeltery ledgers","desc":"A copy of the ledgers of the smelters in Grund."},{"id":"b877cf13-90eb-4b8b-9a11-303a8b9c1be1","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"b8a8c334-4a27-42fd-913f-07445e22d3fe","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"b8c8b160-9c66-4484-ae36-e775b39e4191","name":"St. Stephen's die","desc":"A die blessed by St. Stephen, guaranteeing favourable numbers in the game and protection from loose stones."},{"id":"b8df2253-e5c8-4e6c-9303-b4bc84192e67","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"b8f6cbf1-6cab-4abb-8eb7-8488a95839f2","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"b90f82a2-f590-4564-af7b-f5f5bd44bc1c","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"b9317950-5255-4129-ab66-a231108f1293","name":"Hired hand Ventza's map","desc":"Hired hand Ventza's map."},{"id":"b9474efa-28a7-44e5-8a6b-23f2f3d5e121","name":"Sack of silver ore","desc":"A sack of mined silver ore isn't exactly the lightest thing in the world."},{"id":"b9640f22-5789-4948-833c-89f2197a776f","name":"Poacher's squirrel tail","desc":"A squirrel's tail, used to identify members of Mach of Marschowitz's band of poachers. The local huntsman is sure to pay a bounty for these."},{"id":"b979154f-5b69-45dd-848d-b56a1d3e6e0e","name":"Lard","desc":"Rendered lard for various alchemical recipes."},{"id":"b97bcc9a-7ada-4aad-9dfc-d6f895e9d1c4","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"b990b503-3f71-4b48-a29d-dd2c85d654e4","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"b9a27a3f-ae15-43df-8bd3-2c927e36341b","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"b9d08c7e-94cf-48ea-a82e-6abdf8c48b33","name":"Gold badge of headstart","desc":"Using this badge will give you a large point lead at the start of the game."},{"id":"b9de1d84-a0c1-4b81-9f60-8d7fbb3cb9d4","name":"Sage","desc":"Can be found in pastures and on hillsides."},{"id":"b9e65ff9-eeeb-4d0e-8c6d-1df9809b21e7","name":"As Quiet as a Cat II","desc":"A skill book on Stealth. Can be read from level 5 of this skill."},{"id":"b9ed56a7-7965-48e3-ab35-78aec6733f3d","name":"Salt","desc":"A mineral suitable for flavouring dishes. To some it's more precious than gold."},{"id":"b9f4451d-21b0-40aa-8923-c719c3c3a572","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"b9fa2db6-ee6e-4976-9449-24ae92916789","name":"Tournament gauntlets","desc":"Iron gauntlets that were lent to me as part of the equipment for the Kuttenberg tournament."},{"id":"ba16dff8-4c13-417e-bbeb-d5ab435be20d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"ba28e776-5941-4f1e-9b20-dbbbd2375ee8","name":"Lute","desc":"A lute perfect for a wandering bard."},{"id":"ba357fbc-ba9b-46d1-a743-b31842cd9fd4","name":"Pie die","desc":"Doesn't look particularly tasty, but it's well balanced towards lower numbers."},{"id":"ba4b74ad-f8f1-427e-905b-1bc8c27163e7","name":"Boar meat","desc":"Here is a good way for preparing wild boar meat. Cook the meat until tender. Crumble some bread and boil it in beer, add a little vinegar and salt. Slice some apples and fry them in lard. Then serve everything together You can also prepare pork and beef this way, but trust me that wild game meat is the most delicious."},{"id":"ba54ce29-9e83-4042-b24a-75e480f80d32","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"ba6a0b5e-4674-4fac-9f2f-bd6076a6069c","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"ba6a35cf-b2ce-46c6-91aa-686ac5d2e496","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"ba71635a-78c8-416f-b130-57fdd7045f3b","name":"Psalmi penitentiales","desc":"Petrarch's Book of Psalms."},{"id":"ba8c023a-735e-4878-acdf-2f45f82c46cf","name":"Knight's key","desc":"A key found on the body of a knight in the mines near Old Kutna."},{"id":"ba9c9623-40fc-49ee-8eee-5f3ba2b93e74","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"babbdff9-bd54-4fba-afa4-5df09d54b3bc","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"bac734ab-52ff-447b-8307-f1256ad60987","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"bace385b-c611-4935-8e61-f28fee2b4666","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"bad05ebe-aa46-47f2-b3ae-4b7cfee2a2cd","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"bae580d7-c947-49f8-98fd-22ff4c7a0203","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"baf9f635-c893-4b28-aae1-e14cb7c8e4bd","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"bafd2e04-be8e-4c44-96bc-6294dd42fcc5","name":"Darko's map","desc":"Map of the mercenary's hideout."},{"id":"bafdd43c-9fb4-451d-afd9-38f03bb71051","name":"Old sword","desc":"This sword has been through a lot, and with a little care, could still be."},{"id":"bb0306a8-7ddc-489a-a339-df621817c151","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"bb0a86e4-80b8-4f69-bf0d-09c251920f19","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"bb0d5f2a-bb1b-456b-8be1-fcc6e07ec65f","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"bb34c74a-dfec-4f9a-95b8-e66b2ede3a2c","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"bb3a0959-dcdf-4934-85c3-7758e30f796e","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"bb4a5f91-bb6e-494a-960a-fef5dad7874d","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"bb5b97da-8f90-44c6-8bc3-ee040303e7a6","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"bb8ecc03-acc5-4ae6-8459-163fb3f8af39","name":"Gold wedding badge","desc":"A memento of Agnes and Olda's big day. Using it allows you to reroll up to three dice. Can be used once per game."},{"id":"bb96f67b-c1dc-4f6c-b94e-07adbe4a8e34","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"bba6cd83-1cc4-4cc1-9c90-39ddbacb410c","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"bbc6b904-7b1b-43aa-bf10-28b2c8639502","name":"oblehaniSuchdole_flag","desc":"May it be a light for you in dark places, when all other lights go out."},{"id":"bbedb444-648b-408b-81c9-1cf96c75ae84","name":"White roebuck's hide","desc":"A white hide taken from a young roebuck. It's sad, I reckon there aren't many white roebucks in the region."},{"id":"bbf1e179-d66e-4cdc-b899-54d98d1d991f","name":"Towards Flexibility of the Body IV","desc":"A skill book on Agility. Can be read from level 15 of this skill."},{"id":"bbf2f8ce-5d02-46d5-aecd-7484fa20ca18","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"bc09cb07-fb9d-45be-8f55-d42b999c6341","name":"Straight sword guard","desc":"A cross guard, also known as quillon. It serves to protect the swordsman's hands from the opponent's blade. It can also be used to execute a grappling hold or strike to an unprotected face. In sword making, it is put on the blade's tail before the hilt is made and the pommel is put on. In cheap weapons made by poor blacksmiths, it will loosen over time and begin to clink unpleasantly."},{"id":"bc12d87c-542b-4de0-a3cf-b6fbff67a966","name":"Sheepskin","desc":"A sheepskin. It'll take some time before it's processed into wool, then into broadcloth, but I'm sure it'll make a fine hat or skirt one day."},{"id":"bc26419a-f9d5-40bb-98f0-05b6c527e85a","name":"Cooked carrot","desc":"When cooked, it becomes soft and sweet. You can use it to improve any dish, or just eat it as is."},{"id":"bc3716ff-a5e0-41ea-a07f-e81baa026b82","name":"Livre du ciel et du monde","desc":"Or, The Book about the Heavens and the Earth is an important work by the French philosopher and astronomer Nicole Oresme. In the book he speculates, among other things, that the visible movement of the heavenly bodies from the earth may be only apparent and its real cause is the movement of the earth through the cosmos."},{"id":"bc3c86e5-caab-44d5-abe0-75bbe7ccb345","name":"City of Prague pavese","desc":"A riding pavese with the symbol of the Old Town of Prague."},{"id":"bc3ec574-b017-4cdb-87a8-48596d3158fc","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"bc45015e-7711-4f56-92c8-4495fe69f1ef","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"bc55caf7-f5f5-4f51-8478-3fe00f2366cc","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"bc670e45-b092-40d5-b13f-38e40085dc92","name":"Common ladies shoes","desc":"A common ladies leather shoes with a round toe, also known as crocs. They are worn by women and girls from the whole society."},{"id":"bc804c0a-e688-4fdd-ac87-a1d3463736ad","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"bc8759ad-fc9b-4577-88a4-2008dbda647f","name":"Wine from Loretz","desc":"The cream of Loretz vineyards and the pride of Kuttenberg burghers. People say it doesn't give a hangover."},{"id":"bcb39bc1-1209-4c86-92ec-475567a5e219","name":"Wanderer's robe","desc":"An overcoat is made of thicker fabric and is designed for long journeys in bad weather. It is recommended by nine out of ten wanderers who have reached their destination."},{"id":"bcdd6887-8c80-4bae-8aa6-567574a75867","name":"Crude bolt","desc":"A cheap, homemade bolt. It's unbalanced and veers off, but it's hard to tell exactly where."},{"id":"bce14390-537b-4e53-b5af-3a1536fd9590","name":"Lords of Holohlavy heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"bce329f9-35ee-4ddd-9609-39373b819a9b","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"bcec9782-14cd-48be-8979-476a0763e0eb","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"bcfbc217-3440-427a-8543-3ca118ce9c50","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"bcff2dd5-a710-416a-88bc-81f2ff54eec4","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"bd17a696-1f7b-46df-b717-1986cc64b757","name":"Child's skull","desc":"A child's skull I dug up in the Sedletz cemetary."},{"id":"bd4c98be-44d8-4561-bff5-094b7eb40006","name":"Competition sword","desc":"Light, perfectly balanced and so sharp that a feather is cut in half by its own weight when it hits the blade. That's what this blade should be, but…"},{"id":"bd4caa9c-c51c-4aff-8cd9-d2ef5905b34c","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"bd5a9f14-f64b-45b5-865e-35fe5106ae30","name":"Map of Maleshov tower","desc":"Sketch of the interior of the tower at Maleshov Fortress given to me by Rosa Ruthard"},{"id":"bd74ce18-2623-48ba-a1a1-c9b09bbb2827","name":"Broad axe","desc":"The battle axe, called a broadaxe, is related to the ordinary carpenter's axe, but is much lighter and forged specifically for combat. It's a good weapon against shields and chain mail."},{"id":"bd75ed98-df88-4603-a6b4-fc6a6676d147","name":"Milanese brigandine","desc":"Composite armour according to an Italian tradition. It is actually a fake plate cuirass sewn into cow leather. Its arched belly disperses blows better than ordinary lamellae. The armour is also fitted with a wide skirt at the bottom, so that it covers the knight's groin."},{"id":"bd819743-3e32-474e-8333-bebe92b16e98","name":"Favourable die","desc":"A playing die that brings luck more often than you'd expect"},{"id":"bd84244c-efe9-42dd-92ce-9379a8a7dfd9","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"bd85e846-3f62-4c85-a1c4-c18410c7ec65","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"bd900862-61e2-450c-a8c4-c9d3e46811e2","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"bd9c5511-4308-4b84-a783-7b2e91569e13","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"bd9ee775-f6b7-4661-bbe4-10ff8aa7b4b2","name":"Lords of Holohlavy heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"bda9fdc5-0aa2-4c05-a742-44c07b3b3b61","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"bdaa9037-a48f-4f3f-b7f0-27efaba93389","name":"Saxon Hauberk","desc":"A long chainmail shirt with short sleeves covering only the arms of its wearer."},{"id":"bdb6fc2a-43e4-40b8-93c8-f2d9162c1e45","name":"Knight's longsword","desc":"Original long swords have a slightly wider blade and a pronounced groove for durability. They are not weapons for decoration, but noble blades to uphold knightly honour and family tradition."},{"id":"bdec0fe4-bd2e-4cf9-a706-195ca200d280","name":"Last Will of Charles IV","desc":"The last will of Emperor Charles bound in covers, to be preserved for posterity."},{"id":"be089fdb-ca8d-4771-93e9-19865a49e65f","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"be0d233f-7e06-4dcb-aa5f-67b99aee2efc","name":"Couters","desc":"Simple elbow pads. You can suffer all sorts of injuries in combat, so it's best to protect yourself however you can."},{"id":"be0df5ee-4d63-40fa-ae70-8938638547c1","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"be30bbd3-4ad1-4198-9e89-4fae06dfc6aa","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"be3e24c7-a4cb-4d7f-8765-c55828c04a7f","name":"Brass brooch with lettering","desc":"A beautiful jewel with a stone in the colour of the depths of a forest pool. Many girls' hearts will be enchanted, but what can be done, it's still just a polished brass."},{"id":"be3eeab6-af41-4a17-8b9a-576325cde54f","name":"Praguers' hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"be401ede-1550-449a-aae5-3c0a5ce705d5","name":"Wayfarer's map IV","desc":"A map to a site where there's treasure."},{"id":"be43e226-e03a-4522-ac0d-4f7ea978ee36","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"be4f009b-f2f7-4b26-912a-b53812f1635a","name":"Fresh milk","desc":"Fresh milk that farmer Fowl was hiding away."},{"id":"be916959-2459-4a31-81fc-4b00090c3f42","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"be925b8a-c481-490b-a22e-f9abf91e457c","name":"Simple headband","desc":"Coloured or embroidered strips of fabric or ribbons are a cheaper alternative to crowns and headbands, popular especially among the poorer classes."},{"id":"be92b571-d8ec-4bee-a62e-6259fa88446c","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"bead66ce-c802-4544-b037-85c61506d901","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"beaf76ef-b573-429c-a990-8c6996fc0230","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"beb081de-3b58-41a5-b63b-b6c23e3b33e1","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"bed0389b-0962-419e-90c6-dea318abc947","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"bed90d8b-11a1-49e4-9069-662c4c1764e3","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"bef72593-22e6-44fc-a547-4d448000e6df","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"bf1579cc-d92e-4cf8-8f66-b62c61df01c7","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"bf1fbd3a-799f-46cb-9248-e807f4ba1006","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"bf242818-d558-4ed5-855d-ced690ff1dcd","name":"Coat of arms surcoat","desc":"A jacket of traditional cut, designed especially for the lord's subjects and the army, decorated with the coat of arms of the Lord of Nebak."},{"id":"bf354b49-4c4b-4548-a851-44e4e15d3cd2","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"bf588802-3f31-4394-8033-e2f393767c00","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"bf69906e-4f4b-40dd-803c-9deee8c0bd15","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"bf6a9662-bb1a-48e1-9d81-266a9db81834","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"bf7b7c2a-017b-4c7b-b9aa-0c4e29ce5913","name":"Marigold","desc":"Grows where the earth is fertile - on rubble piles and dung and abundantly too in pastures."},{"id":"bf85a76a-7248-4d57-9f77-80c208cd4785","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"bf8d68dd-84f1-4254-8b52-c351e4284bfc","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"bf9ca822-1326-4d31-ae41-026866554d5e","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"bfa58512-905d-4e15-94fd-4f850e0cf434","name":"Beaked kettle hat","desc":"Iron hat with a wide brim. It covers the head well and at the same time, thanks to conveniently placed cut-outs, does not restrict the view, which is an advantage especially for foot marksmen."},{"id":"bfd05904-6287-42c7-a87d-e3d1262a1613","name":"CapPainter_m01","desc":""},{"id":"bfe67386-76e0-4be6-97ec-1088504d50ec","name":"Radzig Kobyla's longsword","desc":"A sword forged by my father for Sir Radzig Kobyla, which was later stolen by that scoundrel Istvan Toth."},{"id":"bfee5c98-846b-4535-9827-98a3300d4302","name":"Riding cuirass","desc":"Solid front plackart with a thin bar to prevent the tip of a polearm from slipping into the noble neck. The cuirass is made of tempered sheet metal to withstand the potential impact of a spear in a frontal collision of a knight's ride."},{"id":"bff255a1-4874-452b-a973-245d891e5d6f","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"c00aeaee-2c23-46e3-93fd-338d28710afc","name":"Metamorphoses IV","desc":"The fourth book of the Roman poet Ovid, in which the hero Perseus tells how he beheaded the mythical Gorgon Medusa, who had poisonous snakes for hair and whose terrible gaze turned her opponents to stone."},{"id":"c01ca195-4129-4fbd-a966-f8eb7b162ddf","name":"Half plate legs","desc":"Partial leg protection, coverinng only the thighs and knees of its wearer who, for some reason, decided to save on armour cost. One should think twice whether this is a good idea, though."},{"id":"c02c56fc-3710-4865-b26c-08dd9c92af84","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"c02d7faa-dc9c-4beb-bc15-451dec51968f","name":"Sketch – Lovarian horseshoes","desc":"A blacksmith's horseshoe sketch. Because every master had to start somehow."},{"id":"c039a209-0175-4b6a-95dc-c5a6b0b28e6f","name":"Tin plate","desc":"Plate armour for a knight on a budget. (Disclaimer: Don't actually use it as armour.)"},{"id":"c04cae7d-8f60-497a-a6fd-266a2611bedd","name":"Fragments from the Bible","desc":"A skill book on Scholarship."},{"id":"c0535569-5d85-40cf-9b8c-0fd97cce94df","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"c08804ef-dd26-46f5-80d0-d8a8ed863a0f","name":"Butcher's apron","desc":"A long inner tunic joined with butcher's apron."},{"id":"c089bb9a-dbc0-462e-8a64-7ae78b4becc9","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"c0b01938-8a36-4418-9a59-97073adf3dc3","name":"Hungarian heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"c0b49469-8fba-4b1d-8fb3-985188eda6a4","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"c0c7e7fd-b65c-4d0f-89c3-d17527876b80","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"c0dd0e15-8cb8-4342-9a4b-eb3d217421c9","name":"Dog skin","desc":"Pelt from a dog. If anyone ever wanted it, just don't tell them how you got it."},{"id":"c10bd371-4627-4d79-a388-d6123a94e20c","name":"Parler's spectacles","desc":"Hours and hours spent hunched over drawings take a heavy toll on a person. With lenses like these, however, a master builder won't leave out a single gargoyle, thin curve of a pointed arch, or delicate outline of a pinnacle."},{"id":"c10cc5ae-a918-4655-b60e-e2f11e77726d","name":"Frilled colourful dress","desc":"A colourful dress is typical for dancers and troubadours. But wearing them is seen by many as an eccentricity and a blatant warning against decadence."},{"id":"c12935c1-a6df-4127-a9f8-f80c36ba42dc","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"c13e93f4-94e1-4af1-aae6-139eb29f8f28","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"c15d6593-c1eb-470b-a2e8-823c21336b04","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"c164f346-0463-4116-b790-094b11274e5e","name":"Hunting sword","desc":"The hunting sword is the faithful companion of every hunter or poacher. It is usually used to finish off hunted game, but it's also handy for cutting kindling for a fire."},{"id":"c17ce711-a1cc-4e27-8a17-282e34d86d20","name":"Horseradish","desc":"Horseradish with a flavour so sharp, it could cut your tongue."},{"id":"c1871a11-e31a-49f7-906e-9d4cd2ba5768","name":"Cellar door key","desc":"The key to the cellar door."},{"id":"c191701b-3ad1-43ff-b4d1-4e56c9d95dda","name":"Watermelon slice","desc":"A slice of ripe watermelon."},{"id":"c1b3b436-d666-4ba6-be2c-358692e28fcb","name":"Spearman Training II","desc":"A skill book on Polearm combat. Can be read from level 5 of this skill."},{"id":"c1c9ceda-9f62-4a56-b65d-b3fca4a12f13","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"c1dd4160-f2bd-4451-87c0-05ccdcf1be0f","name":"Cook's specialty","desc":"It smells like regular ham, so I don't know what's so special about it."},{"id":"c1f1a284-07bf-4a1b-aa13-0709f8866ebb","name":"Frilled veil","desc":"Veils, or also wimples belong to the everyday clothing of married and widowed women. They are most often white or light-coloured and are fastened with pins and brooches."},{"id":"c1f6b8fe-2877-4ac6-bbbb-d35608162416","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"c1fcfeea-e215-4a20-bcf0-ffa14b167769","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"c20b2a42-8d5c-48bc-ad24-a4a529207ca9","name":"Tournament arrow","desc":"An arrow designed for tournament shooting, not suitable for combat."},{"id":"c22bffa9-a259-4b63-af93-c9facd832066","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"c23d1d05-6915-4bb0-8698-80089d49c352","name":"Bone comb","desc":"Perhaps a beautiful maiden used it to comb her hair, or maybe some filthy beggar combed lice out of his beard with it. You never know."},{"id":"c23e75db-cdf8-4779-86e8-fd183bb3cf11","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"c25a4e91-550e-4fa1-a46d-071ee4760f4d","name":"Carrion sack","desc":"The knacker's sack for carrying carrion. It smells just like you'd expect it to."},{"id":"c25ac7e1-dc4a-442b-bf89-a7edbc59695d","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"c25fc705-c957-4c9a-a831-0f112e3b148d","name":"Adorned axe","desc":"The beautiful axe from the legend of the two woodcutters was lost for many years, but Henry of Skalitz found it and restored it to its former glory."},{"id":"c27e73bd-05db-42c5-963e-09c42395160a","name":"Lepiota","desc":"You can easily recognise the lepiota even at a distance. It's tall and has a wide cap."},{"id":"c29ff7ab-978d-4874-964e-36b5bc023197","name":"Veisar's doghouse key","desc":"The rusty key to the shed where the greengrocer Veisar locks his dog Monarch."},{"id":"c2e2bd80-d048-433a-9676-b4d26913b221","name":"Grimey skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"c3075901-96a6-4024-ae02-c33d2a7dd83d","name":"The Art of the Sword III","desc":"A skill book on Sword combat. Can be read from level 10 of this skill."},{"id":"c30df767-7d43-43a1-9264-752f583c0fc6","name":"Frilled colourful dress","desc":"A colourful dress is typical for dancers and troubadours. But wearing them is seen by many as an eccentricity and a blatant warning against decadence."},{"id":"c319f421-26ca-4e89-8356-98c4e54fe53e","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"c32d3beb-2aaa-4178-ad97-31420d4d5555","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"c3463bc9-3e00-4eaf-89d3-c9bdd4c31619","name":"Sack of supplies","desc":""},{"id":"c34e440c-7dac-43c0-a7d0-d1364ac6d27b","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"c35230d7-008b-402d-8f17-4493dd78605e","name":"Dried henbane","desc":"It grows in sunny and warm places, especially on dung and rubble."},{"id":"c352d8ae-4021-4f9b-b49c-b1f087f2cd2c","name":"Pretzel","desc":"Pretzel, with salt and caraway, dried and hard."},{"id":"c372f14e-8b70-49de-abc8-390279615997","name":"Rooster's egg","desc":"An egg laid by a rooster, or a very strange hen."},{"id":"c37418d7-a4d9-4ede-b570-16dcff9aa3b6","name":"Mach's chest key","desc":"A key to a chest found in the possession of the poacher, Mach of Marschowitz."},{"id":"c37d067f-7342-4952-a8ce-2e2d78832d7f","name":"Von Bergow knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"c3bff49a-678d-4fec-8b7b-bac8ce816bc3","name":"Saxon kettle hat","desc":"An iron hat forged from a single piece of sheet metal so that it is lighter and at the same time can withstand all kinds of blows. One of the finest helmets a simple squire can afford. Of course, it must be worn with a quilted or chainmail collar, as it does not protect the warrior's neck or shoulders."},{"id":"c3d270af-c3c3-4a2c-9d2c-b2ed4716738e","name":"Statuette of St. Barbara","desc":"A wooden statuette of St. Barbara made by an unknown wood carver."},{"id":"c3dbbdd5-f7cb-402f-91c8-de7fa0c7f2f5","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"c3e9985d-2af6-4281-96d6-60ffee58a0b5","name":"Simple shoes","desc":"Simple shoes, also called krpce, tied around the ankles with a lace. Footwear mainly of poorer families."},{"id":"c3eed13a-743e-46fd-8c2e-87d9467ba375","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"c3f71093-dffb-43a6-b661-eec806e05d2c","name":"Hunting coat","desc":"A simple hunting coat allows its wearer freedom of movement and sufficient comfort when wandering after prey."},{"id":"c3fd5305-4103-4f76-b708-d0fcfd3f197c","name":"Strange message","desc":"Why was Stephen Crow carrying this in his pocket?"},{"id":"c40e9a9b-9745-42ff-be6d-eef9d2f8f744","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"c42f0260-8490-438a-a67b-ae521a48bf0d","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"c46ab027-7f06-4935-a92d-ed103739eb2c","name":"Weak Lullaby potion","desc":"Reduces Energy to 0 and decreases perception."},{"id":"c46b3645-506d-431b-95a7-e5dc6a91f2a3","name":"Knight's notes IV","desc":"Sir Taras Mura's notes, found in the mines near Old Kutna."},{"id":"c48895d1-61bc-4ecb-9dd8-56afb87aab0c","name":"The Rule of St. Dismas III","desc":"A skill book on Thievery. Can be read from level 10 of this skill."},{"id":"c49aa63a-07a6-4417-9f9b-97f2712a4cd0","name":"Wounding arrow","desc":"An arrow with serrated arrowhead to increase damage and bleeding."},{"id":"c4e0a19f-43d8-4b8a-aa83-25f919e69a8b","name":"Wine from Casper's Vineyards","desc":"Wine from the vineyards of Casper Rudolf. It must be said that his product has greatly improved judging by its aroma, but whether his Burgundy vine will achieve the fame of Burgundy wines? Who knows, but there's only one way to find out."},{"id":"c4eb9980-d2bc-4148-a02a-bde35f6e3b19","name":"Rocktower Pond poacher's kit","desc":"The gear the poacher from Rocktower pond was carrying on him. It'll serve as evidence for Gamekeeper Vostatek."},{"id":"c55e7377-465c-46c5-b0fc-e1bb4cd81933","name":"Old Town of Prague knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"c5718b58-0082-412d-ae93-2ef6cf46ecd7","name":"Recipe for Digestive Potion","desc":"Reduces Nourishment and cures food poisoning and in better quality any poisoning. In better qualities it also increases Vitality."},{"id":"c57c2cb4-5d16-4fbe-a55c-db20dd740efe","name":"Grozav's lucky die","desc":"It is actually not all that lucky, but don't tell anyone!"},{"id":"c58fa1d7-dd10-45e1-b6da-b65f1d0b3f7a","name":"Falchion","desc":"An older cousin of the broad-bladed sword. A somewhat outdated weapon for some, perhaps, but there's nothing like tried and tested methods on the battlefield."},{"id":"c59ce78e-aacd-45e1-bf66-d7d65036be70","name":"Halved pavese","desc":"A skillfully painted riding pavese."},{"id":"c5aaa111-ced3-4ecd-8867-afd1ea94df77","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"c5b24e5e-69f0-4ed9-bc74-96c3de9dc677","name":"Black feathers","desc":"You shouldn't brag about your own feathers, but this isn't mine. On the other hand, who would I brag to?"},{"id":"c608987b-7403-4f80-bea9-6d764c865b0d","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"c621d536-6e38-43fc-843d-ae19ae0b1e42","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"c632b4ad-7737-4e35-9444-8ca46f9a6dc1","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"c6367565-6518-4b7c-8ca1-2dfb0c7a2055","name":"Elm hunting bow","desc":"Hunting bows are supposed to be strong enough to bring down larger game. This bow is made of elm, but it is still a bit stiffer than it should be. It's almost as if it was made to hunt two-legged vermin."},{"id":"c64b7286-07b8-4bdf-afd0-359171d35249","name":"Schnapps","desc":"A strong booze will burn away all physical and mental ailments."},{"id":"c64dcd8b-df93-4cb5-a80a-c71eb84ac6b0","name":"Zizka's mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"c67bcfb5-3e7d-462e-ae2f-3f9a909baa11","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"c67de991-e22a-4a19-8b68-9369919c41dd","name":"Common mace","desc":"A mace with steel flanges is a formidable weapon, yet it is still nimbler than a simple axe. It can crush and break bones even through quality plate armour."},{"id":"c684625e-5f43-4e05-8cca-bb8cfadef4b7","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"c6951af0-0848-421c-9d6b-c7d2e2102a26","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"c69f4881-7ab7-4fee-a440-6e9dafa8b757","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"c6a66736-2f9e-4c0c-9def-4d6fd5906b82","name":"Padded chausses","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"c6ade755-f1a6-4c21-b423-dc3b591927b3","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"c6bb6698-a8ed-469b-a189-7cfb99b7362c","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"c6d9387a-30de-469a-a785-3220bf0426ba","name":"Roe deer kidneys","desc":"Because they contains a lot of good tallow, you can mash them and add them to other drier dishes or porridges to improve the taste."},{"id":"c6ea5c12-2137-4215-b7a8-9f0275a368c8","name":"City of Prague pavese","desc":"A riding pavese with the symbol of the Old Town of Prague."},{"id":"c7007d1f-8422-4307-b043-6d797a3fc6aa","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"c707733a-c0a7-4f02-b684-9392b0b15b83","name":"Blacksmith's kit","desc":"A set of tools for quickly repairing your weapons. Includes a hammer, whetstone, small pliers and mineral oil."},{"id":"c713d836-b1bc-4cdd-aca6-c0a0a43564e0","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"c7183715-ee95-4bd5-b788-c72ba5ac405b","name":"Tunic","desc":"The lower linen tunic is worn by rich and poor alike as an essential part of their clothing. Of course, if you're not exactly a craftsman at work, it's polite to complement it with a woollen outer garment."},{"id":"c731bade-8acf-4b85-9085-e188b33f3870","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"c7332db0-4267-474e-8eb2-07150059ca66","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"c74c715a-296f-4bc7-9b86-9c72c605f312","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"c76ac5ec-7600-47e0-b256-e982cfed06b4","name":"Henry's longsword","desc":"A sword forged by my father for Sir Radzig Kobyla, which was later stolen by that scoundrel Istvan Toth."},{"id":"c76be469-ae84-4cd1-a12c-539716a1b282","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"c76db6a9-9f8c-487a-bb0b-48b16b47b75f","name":"Bezoar","desc":"A rare stone with supposedly magical powers that can cure poisoning and is even said to bring good luck. But how it ended up in an animal's stomach is a truly disturbing mystery."},{"id":"c7793648-89e3-4730-9972-66a19f23ebf4","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"c7b197d6-266e-4c04-88d3-42b6c93a1639","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"c7c24e2a-24ce-4692-ac9b-fe82b5c40ade","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"c7f7920d-3c46-4579-8e79-fc6734cedbac","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"c80a7165-dfb3-486e-9a9d-b6f36db905ef","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"c80d3aaa-75fe-4d29-afd8-8e8106b38f4a","name":"Knight's notes II","desc":"Notes of Knight Taras Mura, found in the mines near Old Kutna."},{"id":"c821bacc-7381-48bc-b496-2aaf89dd294d","name":"Aim and Fire! I","desc":"A skill book on Marksmanship."},{"id":"c82b31f2-89b0-4e7b-b24e-fa56e9a4c5d1","name":"Riding boots - high","desc":"Thigh-length boots that protect the horseman's legs against chaffing. Putting them on and taking them off is a rather lengthy process, so they're worn more by folks who tend to spend the whole day in the saddle, such as messengers and grooms."},{"id":"c82f1a8d-3617-42b7-98a9-36e96ff71294","name":"Enhanced piercing bolt","desc":"A balanced bolt with a piercing effect against a variety of armours."},{"id":"c840ec26-0641-4193-a27d-ad8f74193cae","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"c84841ed-dd1e-4516-991e-fde0055a98ff","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"c848fce2-ee73-4953-bcc6-bea5787b63e3","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"c854ba94-bbed-4611-bc87-8f499dd951be","name":"Rounded pewter jug","desc":"Drinks served from pewter dishes taste a little strange, but the pitcher sparkles and that's all that matters!"},{"id":"c8617a2b-cac4-4f2d-828d-9f93eee3971b","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"c86aa334-66e2-43f4-8fbf-1f65bdc09dbe","name":"Training longsword","desc":"A wooden longsword that can bruise but not kill. For those who are serious about swordsmanship, this is an invaluable tool for practicing."},{"id":"c88028dc-8ea1-4401-82ae-03179a9eab7d","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"c8831b16-f218-4d77-93ab-8f2402508677","name":"Broken guild longsword","desc":"The famous symbol of the Kuttenberg swordfighting hall is in two pieces due to disputes between Menhart and Jimram."},{"id":"c888acac-26ef-4f4a-be33-0b8bd82e7500","name":"Roast duck","desc":"A quarter of roast duck will fill you up nicely."},{"id":"c8972335-3d79-457b-814f-f71cbddb0656","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"c8a5d1f4-5699-4203-8786-dca8f7720f9f","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"c8a799c5-3fda-45d0-9bde-2cbf92d83914","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"c8abe6d0-fbd8-49b2-a8e4-94e892aca6fa","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"c8dcb769-53a2-445b-bc8b-352e7c7c2236","name":"Wreath","desc":"Wreath of meadow flowers. It looks nice, it smells nice, but it doesn't last very long. Plus, it can attract bees."},{"id":"c8f43947-a1a4-48fc-bc60-64e178d336cc","name":"Jester's disguise","desc":"A colourful coat decorated with jingle bells and an equally colourful jester's hood are worn by the minstrels in an attempt to attract the audience's attention. Be careful not to burst out laughing."},{"id":"c90bdc2d-80e3-4f59-ab22-6eb02fa1321b","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"c91781ea-fc5b-4125-83db-04e460216c89","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"c921cf6c-e4ef-4095-b58b-2aeccafc25c9","name":"Staff","desc":"A wooden pole without reinforced ends, so it wouldn't hurt so much during infantry training. It can also be used at any time to prove that there are no small men only small targets."},{"id":"c9275c1e-8897-4cfd-ac89-750c853a3a42","name":"Dead man's ear","desc":"A talisman made from the head of a dead man, buried under a full moon. It's said to protect a thief from dogs. +2 to howling at the moon."},{"id":"c93d6795-ed9a-429a-9680-32afc0676938","name":"Remedies for Fleas and Warts","desc":"How to get rid of fleas and cure warts."},{"id":"c93e2332-2902-4d88-bdb1-cde721a77d9b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c958f207-5346-4a29-9f81-bb996ae80461","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"c95a4acf-136c-4ce5-88d1-e9599aef64f6","name":"The Maidens' War II","desc":"About how the Maidens' war ended."},{"id":"c9623550-0d5c-44db-a3af-3ca76a4e18e7","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"c9aab196-73f7-4ab9-8f7e-f7eb08f29046","name":"Fur-lined hat","desc":"A fur-lined hat is favourite among the sholars andwise doctors."},{"id":"c9cce9dc-c179-4e83-b159-3ce5ce79ee90","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"c9d439f9-0e28-4d7e-af1c-b84003605742","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"c9dbdf30-c6c3-45e4-929a-4201024f38e3","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"c9f84d4c-d35e-4ba0-baf3-70f6420938ab","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"c9fc01cb-109c-478b-bd16-8f46bb902f65","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"ca1f6ad6-3c2a-4bd1-951e-16883bc09dd2","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"ca304b96-b9f7-41bb-a2a5-124f88670556","name":"Rare fabrics","desc":"A bundle of rare dyed fabrics."},{"id":"ca331580-9a16-4858-b6a3-58980a1666cb","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"ca402eee-1f94-4c41-b86f-93a7bfde245b","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"ca442192-00f4-458a-98ab-669d4b7113dd","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ca4ad208-45d3-4aeb-9fa6-4bb51b2ee721","name":"Lords of Hradetz knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"ca4f5498-2f06-4ce1-9ac4-884b32f22bb2","name":"Fur-lined hat","desc":"A fur-lined hat is favourite among the sholars andwise doctors."},{"id":"ca516b12-9adb-4bb9-8a79-c0d96d87cbf5","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"ca521570-403a-4a72-b7cf-58cca2869052","name":"Rondel scullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"ca5a0aa3-e373-48ec-96e4-1c3b9907bac3","name":"Rose hip wine","desc":"Grapes of wine growing on a rose bush! Tastes miraculously and increases your health!"},{"id":"ca772cdd-fb72-41ef-985f-46bf0aafe31f","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"ca873759-2d0d-4f2f-ba05-49b6c1872a9e","name":"Bread roll","desc":"A plaited, crusty white bread roll, smells wonderful and tastes just as good."},{"id":"ca8df578-1b1b-4b1d-9f06-0d2465983d5f","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"caa1b42b-856e-4ebe-944b-9f562937014e","name":"Von Bergow knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"caa97b58-3bf5-4b99-8281-0c0c4edc082f","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"cab7b342-26d7-446d-8137-dc6de5359f7f","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"cad9538f-c4ee-4693-9ff4-3ddea1f27e5b","name":"Offer of Hermes Trismegistus","desc":"A strange list of raw materials for Miller Krejzl."},{"id":"caef375a-fa63-41a4-8873-58c358ccfc06","name":"Common sabre","desc":"An unusual curved blade used by nomads on fast horses in the Hungarian steppes and remote Arabian deserts, this swift weapon excels at offense and defense alike. Every good Christian should beware of losing his head to such a weapon."},{"id":"cafed46a-f974-4f5c-9b7b-5b898af313fd","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"cb183f59-3a57-4f13-ba35-3ba456c1092e","name":"Apothecary guild knight shield","desc":"A guild shield. The ancient symbol of the god of medicine Apollo is the emblem of the Kuttenberg Guild of Apothecaries and Alchemists."},{"id":"cb206043-63a6-4418-9454-aab4bef9aa19","name":"Sketch – Military sword","desc":"Although it looks quite ordinary, this sword is well forged and perfectly balanced. This is the kind of weapon a swordsmith makes for battle, not for show."},{"id":"cb233582-1908-4c23-86cc-37711d9eac7d","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"cb3e9e80-7a1e-4021-8dc9-46defbdcd069","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"cb4afec8-e68d-46f0-94a5-2f4885edeecb","name":"Wanderer's robe","desc":"An overcoat is made of thicker fabric and is designed for long journeys in bad weather. It is recommended by nine out of ten wanderers who have reached their destination."},{"id":"cb4cc490-717b-4a56-8e73-0b2f5820e0dd","name":"Steel skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"cb59d1fe-4aac-4bd5-995f-bc58801c7c9e","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"cb5d0268-d43e-4a8e-aba2-6a4bcdc3c9aa","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"cb6ee20b-6eee-434c-af4c-8031502e2bec","name":"Hunting crossbow","desc":"A well-crafted lightweight crossbow. Its draw weight is adapted for hunting big game, but it could still be drawn with one's bare hands. Hunting poachers with it is not recommended, but it will do the job in a pinch."},{"id":"cb6fc3ba-4392-4d79-9716-25c5059bb75f","name":"Killer's helmet","desc":"The helmet of the notorious murderer and bandit Burkhard."},{"id":"cb7b0f61-cd04-4c7f-8f61-18002cb14563","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"cb7cbe56-00e7-4f92-b19f-4479849fca71","name":"Suchdol pavese","desc":"A riding pavese with the symbol of Lord Pisek, owner of the Suchdol fortress."},{"id":"cb80d9e5-436b-4416-8400-f9067a7071cf","name":"Painted pavese","desc":"A riding pavese covered with linen without a noble coat of arms."},{"id":"cb897833-68bb-47f7-a3f9-867b65ff7a1e","name":"Old straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. This one is definitely past its prime, though. It looks as if the wearer was chewed up by a goat."},{"id":"cb8ab8cb-949a-4e9f-910a-0a7dfd5b9cac","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"cb91f9a3-b1dd-4d98-b2d3-a2f60936e41f","name":"Master huntsman's hat","desc":"The pointed hunting hat decorated with a brooch is the badge of an experienced hunter. Poachers should be on the lookout if they see him."},{"id":"cb94717e-8083-4184-9c97-0f42548ff9e1","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"cbac5af5-ce2a-43fc-acf9-e979fda27915","name":"Katherine's love potion","desc":"It is said Katherine will fall head over heels in love with whoever drinks the potion."},{"id":"cbb609a1-ed6b-46d4-a12b-bbbfa3b86ee6","name":"Lost wreath","desc":"Lost and found again."},{"id":"cbd84d49-6a80-434c-965f-1cb387d18ca0","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"cbde6e25-f407-4a59-9cd7-7f3e90c624ec","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"cbf60764-576b-4102-b0d1-d196e1b87fd6","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"cbfbdde7-bf91-4cea-a890-1a1cdedc872e","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"cc07e392-08be-4bd1-a0f7-078c461ee5f5","name":"Sir Bushek's vintner wisdom","desc":"A collection of interesting facts about wine, winemakers and wine culture in general. From the most famous wine connoisseur of the Bohemian land, Bushek of Velhartice, who as is known taught Emperor Charles that even Bohemian wine can be drunk if given enough time."},{"id":"cc09837c-c2d7-4270-869a-6a9583c5bef8","name":"The Groom and the Apprentice","desc":"An old Czech satirical poem about an argument between a scholar and a groom over who has it better in life."},{"id":"cc0c46b1-830f-46cb-aeb9-38d18ff06ab4","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"cc17fac7-07ec-4ce5-b1bb-ed2c35ab0772","name":"Tomyris, Queen of the Massagetae","desc":"On Tomyris, the brave Queen of the Massagetae"},{"id":"cc1adb78-fa5a-45c9-be7b-b7b50e182cb3","name":"Padded chausses","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"cc455bf4-5d9c-4f3d-9e79-06f0381c41b2","name":"Tournament gambeson","desc":"Gambeson, which was lent to me as part of the equipment for the Kuttenberg tournament."},{"id":"cc5ac0b1-b171-4dda-9df3-a8c9ec686790","name":"Vassal charter with von Bergow's seal","desc":"A Vassal charter from Lord von Bergow for the the Großskal custodian Otte Koch."},{"id":"cc672cc6-b8a8-4604-bf1d-6f42716fab59","name":"Bell-shaped kettle hat","desc":"The most common shape of kettle hat, popular among the poor squires. It consists of two parts joined together by iron rivets, and therefore isn't as expensive as a helmet forged from a single piece."},{"id":"ccb82eee-2caa-445d-9cd1-ca3820edb6b5","name":"Half plate legs","desc":"Partial leg protection, coverinng only the thighs and knees of its wearer who, for some reason, decided to save on armour cost. One should think twice whether this is a good idea, though."},{"id":"ccce69de-2d52-41b5-a8f0-3d832eab1137","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"ccd43d26-4668-48db-acd5-82a7226bf5e6","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"ccdcee10-d881-4aaa-abdf-bd45487d5d3b","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"cce8a15b-88ea-4ca6-afde-3b576539516a","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"cd05700b-8edf-4af4-ae22-09b302a14ba9","name":"Else's perfume","desc":"Women's perfume with an exceptional and unusual fragrance."},{"id":"cd17455c-b023-4977-8205-4f2685370b5e","name":"Mail coif","desc":"A quilted hood with a collar and wide mail hood."},{"id":"cd1fe169-bc3b-4c46-96d1-49d9109fbe5e","name":"Master's hunting bow","desc":"The finest hunting bow you can get your hands on. It's strength and accuracy makes it perfect for hunting big game."},{"id":"cd277cc4-ce2b-4f0c-8fd0-36c9ec38bc88","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"cd390fa7-3306-40f4-9997-0813070a282d","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"cd55db54-061e-4389-9de2-73e1f5237555","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"cd61edb8-2674-4c3f-aa3b-c5067e6e2052","name":"Rusty shackles","desc":"Shackles covered it rust. They don't exactly serve their purpose anymore."},{"id":"cd7825a2-4948-473c-a854-fb04b86ba862","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"cd7ac55b-4bda-43d6-a58d-331a30733eda","name":"Rowel spurs","desc":"Riding spurs, also called rowels, help control the horse when riding fast or in the heat of battle. Their purpose is of course not to torment the animal, the individual spikes are therefore blunted."},{"id":"cda5c7d7-4218-480a-9b08-79fd07adba6c","name":"St. Apollonia's tooth","desc":"The molar of the patron saint of all those afflicted by toothache - Saint Apollonia of Alexandria. Or maybe it's just a polished pig's tooth, it's hard to tell."},{"id":"cdafe0da-d6fa-4285-80e2-02ad7626f3dd","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"cdc9c312-59ba-480a-bfba-102fc4ab5e58","name":"Ordinary coat","desc":"An overcoat of traditional cut from regular fabric, buttoned at the neck. It is available to villagers and burghers as well."},{"id":"cde6db6c-302f-4484-a774-bc5d2264a0df","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"cdfe2ba9-39ca-43bf-9988-6dc81cbfb86b","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"ce3b63c5-b749-423a-b189-d98d0e14f781","name":"Red feathers","desc":"You shouldn't brag about your own feathers, but this isn't mine. On the other hand, who would I brag to?"},{"id":"ce4a010d-441a-4004-a3a6-a09d9ed4b497","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"ce4f5692-581d-401a-8479-0c55658d77a8","name":"Cooked pork tenderloin","desc":"Here is a Hungarian way of cooking pork. Pound the meat, put it in water and let it rest overnight. Take it out of water, salt it and sear it. Fry plenty of onion, add wine, vinegar, juniper, caraway, cloves, pepper, ginger and a little nutmeg too. Bring everything to boil, add the meat, keep the lid on and cook over a low heat for a long time, while basting with wine."},{"id":"ce5cc078-3d10-41e4-bc53-6008a9610263","name":"Colourful headscarf","desc":"A colorful scarf will keep not only the hair off your forehead, but also a bit of coin. Sometimes it can also serve as a gift for a loved one."},{"id":"ce694e9f-a557-4e92-b97c-5e4dc1cc13fa","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"ce7a7cfe-3777-4804-861d-f5a09785ca4d","name":"Trollbane hammer","desc":"A hammer made for killing trolls. These monsters are said to hide under bridges and ambush unsuspecting travellers and caravans. Or maybe it's just an excuse for bandits."},{"id":"ce7ca2e0-efcf-41d9-bfb0-b76673067c05","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"ce91be29-b5f4-4ba5-b286-c2781c188707","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"ce9eb029-8f0d-498c-9565-6ba75d665b70","name":"Chest key","desc":"The key to a chest in the rebels' camp."},{"id":"ceac4830-e786-4a03-bdd5-d68e83d19867","name":"Sketch – Knight's longsword","desc":"This sword has been through a lot, and with a little care, could still be."},{"id":"ced71295-f0ba-47ab-af48-805fe06da60a","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"cee7b43d-424d-4c0a-879f-1f1a9ab64cfd","name":"Bandit's key","desc":"This key belonged to one of the bandits from the camp above Vidlak pond."},{"id":"ceed31ff-3db3-4e0f-b3e3-b95efdc49260","name":"Tin pitcher","desc":"For particularly thirsty drinkers. In an emergency, it can also be used to water the garden."},{"id":"cef106e6-89c9-4f27-b913-b97271bafab5","name":"Short butcher apron","desc":"A short linen tunic complete with a butcher's apron."},{"id":"cef28cd9-71ce-4279-8aa2-d2be83a8ab23","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"cefe7a3f-c1bb-40fe-9563-e32a96844725","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"cf0711c9-cb90-4462-af57-e0bad5fe1c62","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"cf5a563b-2a84-4270-92ed-c414b46a82bf","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"cf672182-1c7a-404a-9af9-1b08e20d81e3","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"cf820f8e-129d-4469-87b9-8aa473699337","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"cf82e38f-c905-457f-83e5-3571833f7425","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"cf948721-3e2f-4784-90f8-52882b164bec","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"cf9ec8c3-71aa-48f8-98b3-6dab11b25c9e","name":"Wanderer's hat","desc":"The wide wanderer's hat with a raised front hem is pulled back to protect the back of the traveller's head from the inclement weather on the road."},{"id":"cfa33d78-f37d-45e4-a3a9-35d4a4ca76e7","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"cfabea07-919a-4d7c-bbae-2e7d8d02c8e4","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"cfc0f1a3-fa66-4ee8-a595-9f84c7f25b70","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"cfc1fd72-dbb7-49a4-8713-6acf215a72be","name":"Mail coif","desc":"A quilted hood with a collar and wide mail hood."},{"id":"cfdd03e9-0929-40f7-8753-704002eb567e","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"cfe1c8ad-3788-45c3-8b89-7217c7529802","name":"Kuttenberg bacon","desc":"Kuttenberg bacon, so fine and lean, not to share it would be mean."},{"id":"cfe63209-0745-485d-ad9b-d78d97682a30","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"cfec1446-ce8d-4c9c-aa9a-56fc8b10bc0e","name":"Torch","desc":"May it be a light for you in dark places, when all other lights go out."},{"id":"cfedddee-170b-4a18-bdd7-cb778eb3615e","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"cff7ae16-d134-41bd-9394-89e8c3970f94","name":"Club","desc":"A wooden bludgeon for every street thug or bandit who waits by the roadside for an unsuspecting traveller."},{"id":"d00b8aa6-d846-4dfd-8a58-96f7dcd9289e","name":"On Saint Procopius and foundation of the monastery","desc":"A discussion about the monk Procopius and how he founded the monastery."},{"id":"d01f5606-5bba-42c1-9a48-b065e7a92ad7","name":"Ordinary sword guard","desc":"A cross guard, also known as quillon. It serves to protect the swordsman's hands from the opponent's blade. It can also be used to execute a grappling hold or strike to an unprotected face. In sword making, it is put on the blade's tail before the hilt is made and the pommel is put on. In cheap weapons made by poor blacksmiths, it will loosen over time and begin to clink unpleasantly."},{"id":"d031224d-34c3-4f2b-98f7-d77789a309c2","name":"Cooked hare meat","desc":"Cooked wild hare meat. White and tender, just like chicken."},{"id":"d035cf21-9704-4ace-b277-b64d7d1e4fc3","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"d03ab313-df4c-4073-a58b-7e6ebe615072","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"d042de87-36fa-4cbb-b24b-e707011d0242","name":"Tournament padded coif","desc":"A quilted hood that was lent to me as part of the equipment for the Kuttenberg tournament."},{"id":"d043ea80-3852-4186-9950-1f91930b0f3f","name":"Pomuk vicar's needle","desc":"The needle used to sew vicar Jan of Pomuk into a bag, after which he was thrown into the Vltava river, all on the orders of Wenceslas IV."},{"id":"d04b7de5-78d5-452d-96b1-40a13ae098e2","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"d05c4d2c-fbef-4afb-8771-199ebe9885c5","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"d063f365-dbb8-447a-a397-e5baafd95234","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"d08d1127-b749-47b5-9f53-7b466060b0f4","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"d0938bde-f547-4632-8086-46b57e4f50c7","name":"A suspicious bag","desc":"What might be inside?"},{"id":"d0952501-4e64-406c-bfdb-6768fa82ccfd","name":"Recipe for Fever tonic","desc":"Fever and its complications can often end in death. This tonic will relieve and soothe the fever if given in time."},{"id":"d0bec26c-d954-4914-abff-bcc53c16c1db","name":"Felt cap","desc":"A felt cap with a curved hem, a tight fit to the head, is a popular head cover, especially among hard-working people."},{"id":"d0eca898-2038-4831-9bdc-a9fb1e2e3470","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"d118761a-8a2f-4dd6-98e8-9fc347688e78","name":"Scapular with aperture","desc":"A tiny pendant, usually worn around the neck or wrapped around the wrist, is associated with the veneration of the Virgin Mary and other saints."},{"id":"d1298187-e5a2-4e27-a547-a22b2ae82bf0","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"d1586130-e169-40b5-957a-d4c567ebc0c9","name":"Steel skullcap","desc":"One-piece helmet of plain cut designed for plain squires."},{"id":"d15fa5f0-f7c5-4dba-ba89-ccae0093a1b2","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"d1748789-49c1-43bd-86fa-9c5444f7bab0","name":"Nebakov storage key","desc":"The key I found in Nebakov Fortress, probably fits to some door there."},{"id":"d17d892e-beca-417e-9785-9f860593b73b","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"d18223bd-b69a-4aec-a6d3-28c2fc123c9e","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"d1892cda-ba5e-4048-af2b-1565da5ce385","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"d1926fdf-d10e-4ab5-9531-2deeff6f8d07","name":"Hourglass gauntlets","desc":"The most commonly used type of iron gloves whose name refers to their typical hourglass-like shape. It protects not only the hand, but also part of the forearm of the fighter."},{"id":"d192726b-1170-47fb-aa1a-300b9aad7d4a","name":"Lady Jitka's kohlrabi","desc":"It is palatable to the simple peasants, the poor and the cattle. The nobility often turn up their noses at it, but Lady Jitka seems to be an exception."},{"id":"d1b0c3aa-53e8-47a0-83a7-8c0141f49ba3","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"d1b817a5-c9fc-4881-b8bf-03412d4c739b","name":"Practice shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"d1d1b932-4b23-4622-bd7e-b77ad40e29cd","name":"Roe-deer hide","desc":"A roe-deer hide does not reach the strength and quality of deerskin and is not suitable for tanning. It is therefore mainly used as fur."},{"id":"d2011311-2315-43a1-a953-76432df04329","name":"Dogwood hunting bow","desc":"Hunting bows are supposed to be strong enough to bring down larger game. This bow is made of dogwood and is therefore one of the weaker hunting weapons."},{"id":"d20252f7-51f0-4f8e-857c-b086fcec15be","name":"Mail coif","desc":"A quilted hood with a collar and wide mail hood."},{"id":"d207256d-37e3-40b0-975d-ef79ea303987","name":"Lords of Nebakov kite shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"d20efd87-59bb-431c-bb46-e9385b850d57","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"d23d05fa-400b-4756-a769-4c4b32282dca","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"d23e3052-61fd-487e-a3fe-6541d31db3f5","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"d2440b7a-a40b-4a2c-bf7d-61febcf5cfda","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"d25b7a03-f4ba-4f26-9eb9-1f882011146c","name":"Skull Crushers I","desc":"A skill book on Heavy weapon combat."},{"id":"d267aa34-a039-42fd-b5d4-f306c118e4e7","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"d277dee6-cc66-4199-9be1-9489c433cd7d","name":"Sack of charcoal","desc":""},{"id":"d284732b-32d1-40e6-be9b-0c89e18f969f","name":"Common longsword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"d286a6b6-6e2f-4976-a309-d552b0f5f48c","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"d2a18521-696e-42be-adf3-0b82ad84d8bc","name":"Battle arrow","desc":"An arrow made in large numbers ideal for military deployment in large numbers."},{"id":"d2a23942-45c1-4d5a-bcbc-96a09611af75","name":"Rooster tail feather","desc":"You shouldn't brag about your own feathers, but this isn't mine. On the other hand, who would I brag to?"},{"id":"d2a4f7cb-6a3d-4ee9-a5da-2eafb9ceebaf","name":"Magdeburg cuirass","desc":"The richly shaped two-piece cuirass with folded faulds protects the whole torso and groin very well. There are constant arguments among knights about whether a good brigandine or a hardened cuirass is better. In short, both have their undeniable advantages and obvious weaknesses."},{"id":"d2c247f8-c5fa-480f-b6c2-93a4dcc0fef2","name":"Prison chambers key","desc":"A key to the chambers in which Wenceslas' ally lords are imprisoned in the Italian court."},{"id":"d2d624af-1f0a-4fff-a521-fc54d90f996f","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"d2dbf222-1f9a-4a27-90be-7d9d937d02bc","name":"Key from below Trosky","desc":"An old rusty key I found in a cave beneath Trosky."},{"id":"d2dfc38d-907e-4ad6-bb01-f3d5d875ba97","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"d2ffc509-509f-4db0-81b6-ad5311231e10","name":"Bitten apple","desc":"A red apple, like it was just picked. It sparkles beautifully."},{"id":"d302e91e-d35e-4b98-b29e-e779bd8b9322","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"d306d3d9-ec05-49fd-aeda-05501299aab2","name":"Scribbled letter","desc":"A hastily scribbled letter addressed to Christian of Pisek."},{"id":"d30d5f9d-346b-493c-be18-b5f3ea91731a","name":"Pillory key","desc":"The key to the pillory."},{"id":"d328f612-9fc1-4f07-8fa0-8893b23ad3fb","name":"Wolf ear","desc":"The least dangerous part of the wolf and the easiest to carry."},{"id":"d34ebe81-f4eb-43b3-9efc-82feea7b88c1","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"d363ef34-16eb-4cc5-811d-d7cd4d8beac0","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"d3bc6b02-d678-4336-8d4a-6f4157fd1376","name":"Open bascinet","desc":"A helmet called a bascinet forged from a single piece of sheet metal. In this basic form, it has no bretache or klappvisor and therefore does not protect the warrior's face."},{"id":"d3c19094-a50d-4f82-84af-38cfe3131a9a","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"d3e20481-b4d5-499d-8b94-2a69b8d53973","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"d3fe00d4-ebd2-4ad8-ba5d-f6f34adebc12","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"d400e551-0b48-426d-9167-0415498b9a03","name":"Products of Skilled Hands II","desc":"A skill book on Craftsmanship. Can be read from level 5 of this skill."},{"id":"d40cc1ba-5ea4-44d7-86fb-ccb1680b611d","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"d415e4ba-bdbd-49f0-8a55-7249a5f8b56e","name":"Von Bergow knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"d4165bed-4c5b-4ffa-87d8-b325bd739f6e","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"d4184b39-49a3-48de-bf91-23a8d68eb2e3","name":"Dead child's bone","desc":"A talisman made from the boiled finger bone of a dead unbaptized child protects against unwanted conception. -5 erection bonus."},{"id":"d419de71-5380-42ba-b8f0-9b41ee8208a3","name":"Lord von Bergow's sword","desc":"A good weapon that any average blacksmith can forge. It's not bad, but at the same time it's not surprising."},{"id":"d41a661e-e894-41eb-8379-b03fd75567b3","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"d4363c47-972f-4985-81b2-467c1d4317c4","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"d444ea2d-1233-4040-b3bc-269e8426d40e","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"d4495b95-97b1-4202-9bd6-a8cdbbc1d0de","name":"Bonnet","desc":"The tied cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"d462bff3-16ca-4ecb-8277-ecee08b6abe5","name":"Most Faithful Friend I","desc":"A skill book on Houndmaster."},{"id":"d47478d2-ab3d-4224-812f-696e71765206","name":"Milanese gauntlets","desc":"Fingered gauntlets in a typical hourglass shape. The individual fingers are protect a series of folded iron slats."},{"id":"d47913f1-587c-4676-bf8d-6608723f53eb","name":"Golden cross with pearls","desc":"This piece is decorated with freshwater pearls of a beautiful cream colour."},{"id":"d48a0eb5-a2d6-4cf3-b5e8-3efa708817b9","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"d48cc054-7138-484e-bb0f-3caa1cc24e44","name":"Nobleman's letter of the Captain Dub","desc":"Letter of nobility with the seal and signature of the lord of Straz with a commission for the Captain Dub."},{"id":"d4908c0f-7e81-420f-b3cb-84012a4c3b69","name":"Cuirass with falds","desc":"The metal cuirass with folded falds creates excellent protection for the torso and groin of the knight. The falds are also made from slats, so they can be easily moved and worn on a horse."},{"id":"d49ae7bb-c6d5-4f7c-8513-3eb18176c97a","name":"Noble's gauntlets","desc":"Fingered guantlets made in brigandine style, i.e. by layering lamellae and riveting them to the leather base. The division of the glove into individual fingers does not restrict crossbow loading or archery."},{"id":"d49db0df-8145-4473-be44-3cdd99d75630","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"d49de4f0-cd22-4c7e-a1fa-2a2192a6f456","name":"Milanese plate leg armour","desc":"Leg protection consisting of forged pieces of sheet metal. The front consists of plates equipped with a dorsal edge, so the armour is harder to cut through and will even endure a crushing blow."},{"id":"d4a9d4e3-4b0b-48e4-afc4-5ed605ea1440","name":"Wedding contract","desc":"Part of the draft of the marriage contract between the lord of Semine and bailiff Thrush, a free farmer from Troskowitz."},{"id":"d4ade1cb-79dd-41a7-8d72-7bd88ec2e0d4","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"d4b4c819-cc95-4cce-8971-c5a837490378","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"d4b8b102-cc1c-41a9-a1ab-e9d49ecf362b","name":"Shell hunting sword","desc":"A beautiful hunting sword with a hilt made of deer antler will not disgrace even a nobleman. It is usually used to finish off hunted game, but it will also help against uninvited forest visitors."},{"id":"d4cf9636-02b5-4673-9b6c-98e294842de0","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"d4dad274-0665-4f0d-ba2d-45c3f9d9c2ea","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"d4df1285-8356-4f4b-946b-230b9743b956","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"d4e82e6a-32e9-44de-ba7e-d7875cfc11ab","name":"Short butcher apron","desc":"A short linen tunic complete with a butcher's apron."},{"id":"d4eab06e-a67e-435d-bf39-825268594030","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"d4fa8f92-4a10-48f9-976d-be4eb8a77701","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"d4ff0247-2a74-4e6e-8506-2b85d3026b76","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"d5250a9f-5ccf-4533-964e-73448eb72132","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"d534337c-54ff-4534-a62e-fc555bd9c571","name":"Smooth cuirass","desc":"This type of armour provides less protection than any brigandine, as it only protects its wearer's chest."},{"id":"d538e764-90f1-49e5-85bf-16e7717e7723","name":"Quilted coat","desc":"Quilted thick coat, suitable for every splash and slots."},{"id":"d53af275-3210-421e-9dbf-c2bbadcc492f","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"d546030a-5ae8-4bf6-8f48-1f99ea85fea0","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"d55221a0-e40c-11ec-8fea-0242ac120002","name":"Gold badge of fortune","desc":"After your throw, you can reroll up to three dice. Can be used once per game."},{"id":"d55db816-48fa-405f-9f22-fef473ec5542","name":"Balshan's sword","desc":"A great blade of Sir Jan Posy of Zimburg, which he would like to give to his younger brother Miroslav."},{"id":"d5710d94-2eff-45a0-831e-d927dc0cbd98","name":"Frenzls' chest key","desc":"The key to the chest obtained from the wife of Captain Frenzl of Suchdol."},{"id":"d58a08de-b346-4809-a09f-d8083a613c17","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"d5a4df05-3497-487b-b2a0-2f6fbfde76a4","name":"Key from nest","desc":"A key I found in a bird's nest in an old willow tree in the swamp outside of Kuttenberg, near Sedletz."},{"id":"d5a61438-2747-4546-8b02-14771322e54d","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"d5aa332c-ac3b-4dd1-80e1-d219407d7e41","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"d5bb035c-ac7b-4222-acc7-b4fe33a0e8e5","name":"Rusty key","desc":"The key I found on a corpse in the pond outside of Bohunowitz."},{"id":"d5ccfb38-b110-4bc6-8af9-1dde41fabe12","name":"Raven's beak","desc":"A type of war hammer, often called a raven's beak for the shape of its spike. While its blunt end is great for crushing skulls, its pointed end is perfect for piercing armour."},{"id":"d5e6764d-18ba-44cb-8dd0-6640a17785a8","name":"Long-range arrow","desc":"An arrow with modified fletching designed for better accuracy at long range."},{"id":"d5efb270-948b-4a38-b391-38b2edd31c8d","name":"alchemyWine","desc":""},{"id":"d5f84a58-3f43-4ec4-8b29-5407665c89be","name":"The Strength of the Knight II","desc":"A skill book on Strength. Can be read from level 5 of this skill."},{"id":"d5fc17c9-bb48-49b6-b39c-21c78b40f27a","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"d5fdb90e-9dbc-4d18-801c-14c57fe4b068","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"d6236357-c652-4d43-a7df-59dfcb464415","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"d6335bbe-807a-4b4b-919d-4a8b5e7cc751","name":"Dried comfrey","desc":"Grows most of all on banks by water and in ditches around fields."},{"id":"d639b0bb-3acf-43f8-ac16-64f26f30c4ce","name":"Letter from Bishop Thomas I.","desc":"A few lines full of important reports from the Hungarian Bishop Thomas of the city of Erlau."},{"id":"d63dd5a8-dcbf-43de-a5dd-aceb4fa9eee8","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"d65070b3-b90f-4f9e-a420-a00ec2932a76","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"d66614fb-e2bf-430e-b7c3-e445b7c94a2d","name":"Sketch – Brunswick's poleaxe","desc":"A copy of the order of Sir George of Wartenberg for a beautiful poleaxe."},{"id":"d69c08d2-3631-4301-9107-018696c775a5","name":"Dried beef tenderloin","desc":"Great meat suitable for many dishes. It is best served with a white cream sauce."},{"id":"d6b653d6-1aab-44d5-a296-790e4558b4b8","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"d6d8987d-9ebf-4f9a-8e0b-a370ed89c6c5","name":"Kyiv helmet","desc":"A foreign helmet of a peculiar shape originating from the eastern steppes, worn by the Cuman horsemen. It is feared because it is associated with raiders who have burned many villages."},{"id":"d6d968e7-cbbb-44c5-a267-e0a910569d0e","name":"Vassal letter of the Turnau bailiff","desc":"Vassal letter with the seal of the lord von Bergow for Hanko Goathead, the bailiff of Turnau."},{"id":"d6e856d5-7cdf-4dc7-b72d-2d8bc9debdd8","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"d6ead753-0660-491a-b093-8654290841cd","name":"Bertha's potion","desc":"Bertha the cook's potion. Only she knows exactly what it does."},{"id":"d6f182bd-1316-46f8-948f-24b857cf4c51","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"d7248e1e-64dd-4d38-8049-826eb2fb39d0","name":"Cooked dog meat","desc":"Subtly spiced dog meat fills the stomach and satisfies even the most discerning palate."},{"id":"d727bf2c-2ed1-47af-aa40-a581e941b087","name":"Work boots","desc":"Unobtrusive boots that protect the foot and strengthen the ankle, making them suitable for most jobs. They're not the most expensive, which is why they're worn by every hired hand or craftsman."},{"id":"d72bfeaa-f17c-44be-968c-ebcba5da7a61","name":"Knight's spurs","desc":"Riding spurs, also called rowels, help control the horse when riding fast or in the heat of battle. Their purpose is of course not to torment the animal, the individual spikes are therefore blunted."},{"id":"d73738be-a741-4ee5-ab62-104ce6162639","name":"Cuman shashka","desc":"The shashka is similar to a long knife, and and its distinctive pommel is in the shape of a bird of prey. It originated in the steppes of Kyiv, but was also favoured by the Cumans of Hungary."},{"id":"d7571357-f01b-4735-869d-220466bcde2c","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"d75895df-da01-4ac8-b9b8-64c66baac8b4","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"d761c5d4-6ad2-4459-87a8-8303f5abe56b","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"d765649a-a189-4bf9-8a83-223c320d46f8","name":"Shaft owner's seal","desc":"Bronze seal of a rich mining magnate and shaft owner."},{"id":"d76c35d5-3fa4-4e54-b021-42522e492698","name":"Decree of Bailiff Thrush","desc":"Commission from Sir Otto von Bergow for Bailiff Thrush"},{"id":"d76f284a-247c-4c42-b632-91bf7e1ae667","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"d78f5c50-c466-4854-9834-8d84d816ca2c","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"d7b58b33-f452-4408-ba18-e8618eb3f1dd","name":"Spectacles","desc":"An extraordinary invention of everyday use, fitted with special glasses in wooden frames. This thing allows scholars and monks who have spent their lives squinting at books to regain the sharpness of their vision."},{"id":"d7bb6617-9b14-41d2-8e59-93b7aaa08fd7","name":"Empty vial","desc":"An empty bottle with a foul smell coming from it. If someone drank this, it's no wonder they ended up the way they did."},{"id":"d7bbf58e-eea6-421f-a514-ac7942d4bc02","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"d7c4ede5-9146-49ad-9bde-ba2cd631b808","name":"Diary of Knight Conrad","desc":"Diary entries of Conrad, a correctional officer of the Knights of the Cross."},{"id":"d7d111b3-b29d-45c3-ad55-157326da77b4","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"d8013078-fe3c-4ffa-acab-93249eaced7f","name":"Simple waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"d8048178-a9c7-4518-86a1-fa2ec417ef40","name":"Saxon Hauberk","desc":"A long chainmail shirt with short sleeves covering only the arms of its wearer."},{"id":"d80f2eb2-e901-4757-9166-989bab1ca347","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"d814bbc0-4405-4b9e-b83d-7d104118a142","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"d85490a2-1e28-4549-a40e-119cdab8bd17","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"d857eb43-206d-4a2d-bccf-10418f78ba6c","name":"Brunswick's map III","desc":"A map leading to a part of Brunswick's armour."},{"id":"d85f47dc-ea6c-474c-be7b-db708ac4f3df","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"d86a0245-efa2-4232-96bc-825b52a8f40c","name":"Strange little verse I","desc":"A strange verse, probably referring to a certain place in Kuttenberg."},{"id":"d86cfc84-c1b4-4b13-bfcb-a09c5ae6d314","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"d86f4f37-268f-40aa-b584-23dba83fe46e","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"d870d9c7-a16b-4812-b214-d3b56d7d6c44","name":"St. Anthony's standard","desc":"The standard of the miners from the St. Anthony's mine in Kuttenberg. Such a standard is the symbol and the pride of every miners' gang!"},{"id":"d87e0065-4eae-429f-917a-df1db1b7285a","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"d88847ce-97fb-4754-922c-f396993d93f2","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"d896e858-2a93-48bc-8c55-81eee57f82a6","name":"Juniper schnapps","desc":"Juniper brandy, a pick-me-up for proper lads from the Upper Hungary. Csaba's well-guarded treasure."},{"id":"d89732d2-b2e9-4b12-986d-5cbf642f4864","name":"Thigh bone","desc":"A human thigh bone, or femur in Latin."},{"id":"d898a4d9-1356-413e-817f-247f497c8b17","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"d89c50ad-d52b-4793-9674-a1aab6ea28cc","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"d89df714-7b5e-41a0-a3f6-d9538a97e630","name":"Plate knight gauntlets","desc":"Better hand protection is a must in combat because as they say: hands go first in any fight."},{"id":"d8a5f1bc-8dd5-495d-8e73-86cef5344110","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"d8baa065-5fa3-4746-b3ae-dfd174f14d72","name":"Kolda's key","desc":"The key to Kolda's chest."},{"id":"d8c9ae5a-ac99-479b-9529-277814dd629f","name":"Hounskull bascinet","desc":"A helmet called a bascinet with a fitted klappvisor. It has been pejoratively nicknamed the dog's snout because of its strange shape, but it is easier to breathe in it and is more durable than its older models."},{"id":"d8d53fe2-06f9-49a7-b108-3c56cde90dbd","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"d8d6e479-8eb1-41e7-9ac4-f003f2d62c53","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"d8f1a893-0e67-4f29-b897-1a831a3ab923","name":"Lord of Holohlavy heater shield","desc":"A heater shield with the family coat of arms of the lord of Holohlavy."},{"id":"d8fa23f2-5200-4503-874b-a609bb4b52a8","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"d8fe0fbf-4579-495d-afc2-37539927ee43","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"d913a614-fa08-452e-85f8-b6bcfd510529","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"d92464bb-6d39-4b7c-aa0a-48cd95a354ec","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"d92e8830-0056-4731-84d8-7a4021cf2ab2","name":"Worn gambeson","desc":"A heavily worn, patch-covered quilted gambeson. Sadly, adding more patches to it won't make it any better."},{"id":"d968fbfe-75d2-4079-a1d0-b11c803a130b","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"d997bec5-c408-4d2a-8803-26fb99c0e583","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"d99f40d0-1417-4fa4-b905-32dc3f281b92","name":"King Sigismund of Hungary","desc":"About Sigismund."},{"id":"d9ad5a58-8850-4d4a-9bbe-6c9f0abeafae","name":"Poet's gut","desc":"Many songs sound more like the end result of a sheep's digestive tract than a heavenly chorus. Finally I know why."},{"id":"d9b9c4cc-d898-47c3-a6da-9e8264f07239","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"d9cb14d8-724e-4810-b4dd-74f12550ef8e","name":"Life in the Tavern IV","desc":"A skill book on Drinking and alcoholism. Can be read from level 15 of this skill."},{"id":"d9ccf323-7ca7-4d05-b8fb-213c748bb23e","name":"Hook gun","desc":"A hand cannon, unlike a pistole, is a much more massive weapon. The barrel is fitted with a hook on the underside, which serves to wedge the weapon behind an obstacle and limit recoil when fired. This piece has a barrel made of wrought iron and therefore does not last as long as guns cast in bronze. It is therefore recommended to shoot with a smaller powder charge. Up close, this gun cracks knights in metal like thrushes smash snails on a rock."},{"id":"d9d807a4-58d1-4504-a904-7c2c8d15c092","name":"Parish priest's badgge of advantage","desc":"You gain a new dice formation called The Eye, consisting of the values1, 3 and 5."},{"id":"d9e5eb77-4d41-4dd3-97fa-6c555ec433d5","name":"Baggy cap","desc":"Overhanging fabric cap with hem protects head and hair in dusty environments. It is popular not only among millers."},{"id":"da22991e-0280-4944-8ca2-76d83574f15b","name":"Popular Flute Song","desc":"That must have been torture live."},{"id":"da3d9396-bccf-4d52-9839-a2fca55071eb","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"da5e25c5-1f58-47e4-9426-d4f6668fbbde","name":"Sketch – Broad longsword","desc":"A perfectly balanced long sword with a wide blade is the golden mean. What it loses in speed it makes up for in durability."},{"id":"da64ea38-cb63-4538-b143-948bbef2359e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"da859fa4-30d0-4385-acca-e3816a710c12","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"da94ed8b-5b3b-4e2f-8c85-34ea3d0090ea","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dab9416c-92e8-42bc-abc1-bdf37a094a42","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"daefd8d9-1a6f-4a86-ae33-da185147f146","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"db2b0d9a-9cd2-43ab-a675-9e2030776a9b","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"db3248c2-e092-4972-89cc-3b571e2a77b8","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"db354284-2cf9-40a4-bcfc-e78d020204af","name":"Dogwood village bow","desc":"A homemade weaker bow made of dogwood. It's a little stronger than a hazel bow, but that's about it. It'll do for poaching small game, though."},{"id":"db357169-2012-4c12-b82b-d021cd4c8d9f","name":"Cooked boar meat","desc":"Hunting boar is dangerous, so boar meat is a show of strength, courage and a well-deserved delicacy."},{"id":"db5c885c-d40f-4712-994b-69ae4da2690c","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"db66940d-09bc-4450-8df9-8268e52e4ac2","name":"Cooked roe deer meat","desc":"Good red meat, not as prized as deer, but not everyone can tell them apart. Prepare it the same way you would any other venison. If you have both deer and roe deer meat, cut up the roe deer meat into sauce and cook it, roast the deer meat on the fire."},{"id":"db67f8d2-baa6-4a08-ae6e-4b1878c42b89","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"db6c9c81-65c1-4d01-a89b-f4f00b40f324","name":"Beggar tunic","desc":"A tunic so worn that it almost falls apart, yet it is often a beggar's only possession."},{"id":"db793b9a-37e8-44ca-b788-c9633f3286f2","name":"Towards Flexibility of the Body III","desc":"A skill book on Agility. Can be read from level 10 of this skill."},{"id":"db7b9a38-835a-4d40-aacf-41c842a47d83","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"db8bd081-0aed-433a-b709-b4ae1e703fb7","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"db8c54e4-ab07-478b-a191-0d258487a25b","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"dbc21be4-2854-42a6-9e34-2d619edf525e","name":"Sharkan's chest key","desc":"The key to the Cuman Sharkan's chest."},{"id":"dbd9d554-23dc-488b-b61d-b9252af58d30","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"dbe25684-b1e2-4310-8156-e2da9bb60c0d","name":"Poacher's bow","desc":"A bow I found in an abandoned poacher's hideout."},{"id":"dbfb7f84-3685-41b9-a16e-f4b2b2aad484","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"dc184975-c52d-49d8-bd9e-e8c59bff499b","name":"Königshof Manuscript","desc":"Supposedly part of the Königinhof manuscript, though I have doubts about its authenticity."},{"id":"dc390132-667c-4baa-aba2-51cb2f8ce2a4","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"dc4dde5d-2196-41dd-8c5f-1ae94365fe23","name":"Dried salami","desc":"Spicy dried salami. The longer you dry it, the better it tastes."},{"id":"dc69cb5f-1900-46db-a287-8012e6750fff","name":"Tournament waffenrock","desc":"Battle waffenrock, which was lent to me as part of my equipment for the Kuttenberg tournament."},{"id":"dc75a0a6-a464-4482-b6da-339210c0a32b","name":"Punches, Kicks and a Few Slaps III","desc":"A skill book on Unarmed combat. Can be read from level 10 of this skill."},{"id":"dc8fb35d-90e6-4cfa-9c1a-a462e43b8c6f","name":"Cleric's hood","desc":"Made of good woolen fabric, nicely cut, well stitched, in short excellent quality. No wonder it has a name referring to the priestly state."},{"id":"dc973a6e-04d3-4730-8207-bd31748cae12","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"dca0b90b-0850-4ae7-bba4-f05660abbc8e","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"dca5b92f-17ee-4790-b1d0-7e1fca8e30ae","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"dcac80d1-1aa8-4e3d-8267-d47b21a291fe","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"dcbc377e-ce87-45d6-8bd1-f7e21d84fd7c","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"dcc178b9-ed1c-41c4-b2e7-ebda930e8af9","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"dcc78cf6-e48d-46a8-bf95-af07efe29795","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"dcccaff3-d2f3-48f3-a9bd-1889477e36dd","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"dccf7f80-e965-4666-957c-dbf975381fff","name":"Molar die","desc":"A die made out of a molar tooth. It's probably better not to know who it came from."},{"id":"dce2273d-64be-48ec-b9de-118cdc5c8863","name":"Chertan's key","desc":"I wonder what it's for?"},{"id":"dcef5c55-3c70-4422-b625-a936607df179","name":"Replica of the longsword Absolver","desc":"A well-made replica of the sword called Absolver. With a bit of luck, even an experienced eye can't tell the difference."},{"id":"dd0c4b0d-c890-4d72-8761-aab1781d9276","name":"Bavarian plate legs","desc":"A leg protection consisting of forged plates of sheet metal suitably fit together. Such armour protects the warrior's entire leg, but its weight depends on the craftsmanship of the maker."},{"id":"dd0d1adc-8bb0-4352-b9c9-6b46eac72533","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"dd527318-efd1-4148-ac08-c4dd9426b5eb","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"dd52b0ec-0266-40da-bd8c-2afea1e71d0f","name":"High boots","desc":"A pair of mid-calf-high boots, practical for most every day activities, and can even be wornn to social events."},{"id":"dd5e68c7-f4f4-48cd-8bed-d8d74e7efe26","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dd66713b-13bf-4d43-ac25-76294ab9e6ef","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"dd7584e7-4cea-4895-8556-09fb7edb2e03","name":"Tall kettle hat","desc":"A pointed helmet with a broad brim and a spinning torse in the colours of the lord or city in whose service the wearer fights. The kettle hat is made of a single piece of sheet metal, making it slightly lighter and more durable to all slashing and crushing blows."},{"id":"dd7c811d-4ad3-434b-bbad-58e50b5e1195","name":"Alum","desc":"An excellent mineral suitable for stopping minor bleeding as well as tanning hides."},{"id":"dda4c09e-c94f-402a-a660-e87b07f83b6b","name":"Sketch – Knight's sword","desc":"An older form of a knight's sword. Slightly heavier at the tip, therefore best suited for fighting slower, heavily armoured foes."},{"id":"ddb90211-b09c-4b09-b05a-be7f8fa6e579","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"ddbdf313-f3be-47b5-9f6e-20c1124c69d2","name":"Holy nail","desc":"A nail brought back by workers as a souvenir from the renovation of the Sedletz monastery."},{"id":"ddf6c62b-75b6-47c7-b287-38269670815e","name":"Cuman folded bow","desc":"Cuman riding bows are one of the lighter bows, easy to handle even from the horse's saddle. Their strength comes from the layering of different materials similar to better crossbows. This piece is well made and will certainly serve well."},{"id":"ddfa57a9-39f0-4660-a673-fe60825f5f98","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"de134f81-cfbe-422d-9105-df3e0b3b59b5","name":"Comfrey","desc":"Grows most of all on banks by water and in ditches around fields."},{"id":"de366309-05e3-4606-876e-4cc6eeedd5d9","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"de37871b-b7e8-4d27-954e-6bb83d67df1b","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"de3dadc3-9143-4ec7-b4bf-c6b48949325e","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"de5654c6-356a-44ad-92b5-e1ddaafa6a71","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"de7cb8ae-181a-4f31-95b5-2da27e721b51","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"de8aa71b-8623-4aa2-bde2-9f45685b4199","name":"Hauberk long","desc":"A long chainmail shirt with short sleeves covering only the arms of its wearer."},{"id":"de8c29ba-f9fd-4a4f-bd9d-c9fe11f9a10e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"de9ec038-db8a-418c-aea8-2d5d32964bd5","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"de9f9782-2f87-4d0a-a754-1ed7f4e6066f","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"dea2883f-6bd9-4f6e-bae8-80322d428652","name":"Fine wine","desc":"A quality wine harvested in late autumn, full of flavour and beautifully coloured."},{"id":"dea34002-3f44-4a25-891e-8674b075fed6","name":"Courtiers boots","desc":"Low courtiers shoes with a raised curved toe, a contemporary fashion fad. Worn mainly by the wealthier people, the burghers or the nobility."},{"id":"deb7aff1-5fee-4341-8703-d9de7f7cce2f","name":"Recipe for Embrocation","desc":"Increases Agility and in better qualities reduces how much stamina sprinting drains."},{"id":"debd1e06-b4da-487a-bd19-09fdd568b013","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"ded9b911-eada-4120-8499-cc8478810791","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"dede8ec9-3f0e-4c07-975f-320a7cc72452","name":"Cooked boar tenderloin","desc":"A prime piece of a boar meat, juicy and tasty. Prague burgher Havel of Silberstein liked it very much and used to prepare it in a special way called wild boar on venison."},{"id":"deef379a-d3eb-445f-ab23-3c4f882f9b5c","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"df13c511-0841-4563-928f-82920663aace","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"df271db8-60ac-46ec-9695-884bbb909f94","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"df301b6e-2f43-40ab-9fae-52c8560bd9da","name":"Pepik's old bridle","desc":"The old bridle of Vostatek's horse Pepik. If I could teach Mutt to track and give him a sniff of the bridle, I'm sure he'd lead me to him."},{"id":"df4ad865-dfad-4217-9e97-b77a8eb32197","name":"Sketch – Cuman shashka","desc":"Shashka is similar to a long knife and quite unmistakable with its pommel in the form of a bird of prey. It originated on the Kyiv steppes, but was also favoured by the Cumans of Hungary."},{"id":"df4e0012-26d2-4261-95c4-6be4f59eabf4","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"df4f8b04-ea19-434e-8b07-0c9e674f25bb","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"df5bb524-9b34-4b88-8a86-201a54238452","name":"Noble cuirass","desc":"A masterpiece from the best armoursmith workshops. Well-set metal parts decorated with brass bands, possibly additionally suitably gilded. The two-piece cuirass is joined by folded plate faulds, so that the armour perfectly covers the whole body and can still be worn while riding a horse."},{"id":"df8450d8-5850-4d73-b7e0-7444c84d0a6b","name":"Mitts","desc":"Mitts are good for keeping your hands warm and protecting your fingers from injury, but aren't exactly suitable for anything requiring delicate handling."},{"id":"df8a0e80-738b-4e4f-8213-7e9e385100d2","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"dfa98c91-b4f6-49c6-b209-0e8368dd6c91","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"dfc98a60-3412-45b1-92b2-e8d20562be68","name":"Miner's hat","desc":"The festive miner's cap with sewn-on split brim, decorated with a miner's patch, is designed for special occasions."},{"id":"dfcb055a-a560-41ba-9c30-165a793982a3","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"dfe3552d-2d83-40c3-b5fe-66ff1b3f5ebd","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"dfe5ef26-fd78-42ad-a0b6-1cdfae252f56","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"dfea5d01-b25c-414a-9ab4-6911a5f82118","name":"Crude arrow","desc":"A cheap, homemade arrow. I've seen better."},{"id":"dfefcdf9-ee88-4ce1-be9e-d0a83fa981e7","name":"Open bascinet","desc":"A helmet called a bascinet forged from a single piece of sheet metal. In this basic form, it has no bretache or klappvisor and therefore does not protect the warrior's face."},{"id":"e00e0db5-457f-453b-8bf9-65ea6e9a387e","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"e04f5ec2-5dc7-404a-8966-ebfd239991a4","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"e06ba2d9-9ce7-49e2-9e3a-36280994cf5c","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e075f9eb-4de6-4ade-9b22-7c9e5174054a","name":"Dried St. John's wort","desc":"It is most fond of leafy woods, glades and clearings."},{"id":"e08aa4b5-8375-447b-8558-a8b93f816b5d","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e0962166-8b41-4966-a580-ab9b1cd1b779","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e09796f9-0e02-49f4-baff-a01edd0f44e8","name":"Strange little verse III","desc":"A strange verse, probably referring to a certain place in Kuttenberg."},{"id":"e0a6076b-56e6-4645-aaf6-08da16952548","name":"Colorful festive dress","desc":"A colourful dress is typical for dancers and troubadours. But wearing them is seen by many as an eccentricity and a blatant warning against decadence."},{"id":"e0a9faa2-46d4-4b4e-a619-9a56c1c29007","name":"Boar hide","desc":"The hide of a sturdy wild boar. It is difficult and often dangerous to kill a wild boar, which is why it is a prized trophy, as well as a badge of a brave and skilled hunter. But if you're caught with it by the custodian of the local woods or his subordinates, you'll have a lot of explaining to do."},{"id":"e0ac2cd5-7407-4710-97e1-cb26387ce1e7","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"e0d30670-4b0b-436d-9683-d6f63c27738d","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"e101baf7-21c3-4f60-99bc-2de89bbb1678","name":"Felt hat","desc":"Felt hats are generally popular for their durability and ease of shaping."},{"id":"e108b0cc-5732-42fe-88c9-1a0607ef306b","name":"Coat of arms surcoat","desc":"A jacket of traditional cut, designed especially for the lord's subjects and the army, decorated with the coat of arms of Ulrich Vavak von Neuhaus."},{"id":"e116a835-82b6-4267-a44d-a911cae59f58","name":"Halved pavese","desc":"A skillfully painted riding pavese."},{"id":"e13a570f-03e1-4203-9338-d9823aa20b35","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"e1478c97-282e-4b0f-8ec4-ce8361888a84","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"e14b0d94-588b-4861-967d-625d3906afcb","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"e1531816-a770-450f-b481-1aee33d9e6cc","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"e16995a3-c26c-44a8-baa4-710488ba241d","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e19d0a82-e5cc-49b2-b0a2-14b004cb4717","name":"Cooked horseradish","desc":"The horseradish was so sharp it could cut your tongue. Once cooked, its infernal taste is dulled."},{"id":"e1afae05-60d6-4494-9b4d-0f4bd5a90527","name":"About the coat of arms of the House of Ruthard","desc":"A legend about the origin of the noble coat of arms of the Ruthard family."},{"id":"e1c454dd-9834-4da0-940e-da2a27b0b795","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"e1cc4970-df00-4fec-b831-976b753fd73f","name":"Smoked chicken","desc":"Smoked chicken doesn't look so reproachfully anymore."},{"id":"e1cfd45b-f055-41ad-9393-2609cfd0d3b8","name":"Opatowitz mead","desc":"Nobody makes mead like that anymore."},{"id":"e1f4007f-8228-45bc-9578-edcab5616892","name":"Innkeeper tunic","desc":"A linen tunic is an essential part of any outfit. The innkeepers also wear a working linen apron around their waists."},{"id":"e1fd3bcd-f4c6-49c4-8cc4-58046bf37c6a","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"e211f5c1-d943-4ae3-8b7e-1fa5ec2205d0","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"e23e0d4a-0a80-46b2-a2e6-1dd0a98c6357","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e23f6c7d-0eea-4b69-a920-c14c3bdedf5e","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"e2590c0c-fb50-43de-a2e6-4f895e499a34","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"e27df340-ede4-48ea-811c-1915c0f60dd5","name":"Products of Skilled Hands I","desc":"A skill book on Craftsmanship."},{"id":"e281d7f6-afd9-46c5-8f73-8f1b7290437b","name":"Dollmaker poison recipe","desc":"Disables running and reduces weapon skills. In better qualities, it also reduces Health. It's better suited to applying to weapons than poisoning food pots."},{"id":"e29bfd7a-a7f5-45e5-b280-df5cb3c3e404","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"e2c6fbe0-e51e-46c5-9586-8cb133804c0f","name":"Saint Ludmila's veil","desc":"The veil that ended Saint Ludmila's life. Even the absence of blood didn't prevent her canonization."},{"id":"e2cf3e8b-b411-43a0-a7ed-2674ae8ac4d2","name":"Raborsch butcher's axe","desc":"A heavy work axe used by carpenters to repair beams. If there's no better weapon at hand, it can become a tool of revenge."},{"id":"e2d6e929-061b-496f-a9de-16489f90e550","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"e2e9fc26-8859-41b1-b667-c3fff45b007c","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"e2ee7991-b9e1-430a-b206-0630fb1821ec","name":"Burgher's hood","desc":"There's an unwritten rule. Burghers are not to play the nobleman and definitely prefer good worsted wool to brocade. But what of it? When you have money, you have to show it, don't you?"},{"id":"e2fc390a-b158-4796-839d-f200e65305c3","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"e305c005-67c1-4b37-8b50-aa570137b62b","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"e30fc820-ea1b-4506-a429-af5df8cb1187","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"e354d9b0-1532-427e-bfbb-806e8b0e8260","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e3726279-f4f5-41ae-9208-0aa869f7f03b","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e37bdf86-4cc8-4805-b04c-3b05964b9484","name":"Basilard","desc":"A short sword that is said to have been given its special name because of its origin. Whether it really originated in the Swiss city of Basel is questionable, but it is certainly a great weapon that can be carried, unlike the sword, even by non-noble townspeople."},{"id":"e37e9ded-caf5-4031-9495-3252c7d26256","name":"Ordinary coat","desc":"A simple coat with a full-length buttoned front will not put its wearer to shame on any occasion."},{"id":"e381f3cc-cc3d-48b3-852b-b25ebd2a3241","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"e38a7692-c34b-4ed4-a65e-057e274931af","name":"Secret preghaus key","desc":"A key to the secret mint's preghaus, where the path of the stolen silver ends."},{"id":"e38cfdef-5184-444a-9689-c35969ea5e5c","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"e3ba0fee-b3a3-4b99-858d-11d0e855d62d","name":"Set of paintbrushes","desc":"Extensions of an artist's hands, used to capture the beauty of even the most fleeting moments."},{"id":"e3ccd536-6566-4474-824b-6a87a7ac1c89","name":"Most Faithful Friend III","desc":"A skill book on dog handling. Can be read from level 10 of the Houndmaster skill."},{"id":"e3d153b7-352d-4e0d-a998-6577d7aa6389","name":"Ranyek's bow","desc":"Very nice bow. It was the first and last thing Ranyek won in the dice."},{"id":"e3d9eec8-3f33-4862-a89d-130418add11e","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e3f727ce-aaa3-4225-9162-0cb03051f4e9","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"e411cfbe-2ecd-46e2-a554-6cdfd6919130","name":"Moravian schnaps","desc":"Some moonshine the Moravians brought to the Semine wedding."},{"id":"e41aadea-3e52-4da5-8fc7-73736195635c","name":"Deserting soldier's key","desc":"A key from the Kopanina bandit."},{"id":"e4222df1-647a-4652-9be9-9a7a72230182","name":"Composite kettle hat","desc":"A simple kettle hat composed of several pieces of plate. It protects especially against blows from above and therefore it is good to wear it together with a padded coif or a full collar. The advantage is certainly its lower price."},{"id":"e424a9e0-505a-4e7c-bca2-a1425cf034bf","name":"Burgher pourpoint","desc":"The Pourpoint is a handsome waist-length quilted coat, often worn by wealthier townspeople."},{"id":"e4261dc3-1935-4e47-b6c0-1f4384a5c61c","name":"Mended cuirass","desc":"This cuirass has been in a fight before... and not for the first time. Battered, full of patches, but still a piece of metal that can make the difference between life and death for an unheralded warrior."},{"id":"e43f71ad-3e55-4648-9be9-1e90b1e68e45","name":"Beggar's hose","desc":"No one makes hose for beggars - they have to be passed down from person to person, each one poorer than the last, until they reach the poorest of all."},{"id":"e44e2a53-6764-4f06-8c79-b147cdd29336","name":"Jester shoes","desc":"Jester's shoes, with a bell on a toe, jingle as he walks. Sometimes it's amusing, sometimes infuriating."},{"id":"e471be91-1344-46d0-987a-b706586055d0","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"e485dff2-7673-4b2b-9f5e-770b5bbcd800","name":"Leminger's spectacles","desc":"Ordinary spectacles of a certain Kapihorian scholar E. Leminger."},{"id":"e48a7f0e-74fe-4ed5-8e7c-9d757b8b7ecc","name":"Kyiv helmet","desc":"A foreign helmet of a peculiar shape originating from the eastern steppes, worn by the Cuman horsemen. It is feared because it is associated with raiders who have burned many villages."},{"id":"e4b86fd5-cb28-4de2-8d23-a0226ce6636d","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"e4e1b22a-428a-4e20-aa92-ce216b324c0a","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"e4e30492-4a8f-4bd3-aa4b-4c159b717b17","name":"Lord Ruthard knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"e4f0e247-29b6-4cb7-9101-feb1cda53f5d","name":"Old ring","desc":"Someone put it away for work. I don't think he's putting it back on."},{"id":"e4fce5a2-4518-4e06-9cee-102de0d77c03","name":"Zdena's scarf","desc":"The scarf that Zdena left to Pint to use as a distraction. Hopefully, it'll be enough for Mutt to track her down."},{"id":"e51ca28f-a239-4cbb-8dda-e23f46a1d048","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"e5403669-ec23-4d62-bde3-d46ebbe9ae65","name":"Burgher's hat","desc":"This elegant fashionable hat with a narrow hem is worn mainly by the burghers."},{"id":"e57a90f9-837c-466b-90a7-5be5ad7023a7","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"e57cd5c1-c8db-4af7-ad98-79ee64dd7b5f","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"e57e8939-cfb7-4e49-9dc2-9e1c34d31691","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"e5833356-b1bf-44cb-90d0-7c4c82c4b7f2","name":"Sketch – Broad axe","desc":"The battle axe, called a broadaxe, is related to the ordinary carpenter's axe, but is much lighter and forged specifically for combat. It's a good weapon against shields and chainmail."},{"id":"e5a5bb22-1e2e-48f6-b192-48bf86262030","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"e5ac7c40-263d-4fba-8c00-343e9b112aef","name":"Cow skin","desc":"The tanned cowhide is the most common material for all shoemakers and saddlers. Cowhide is used to make good boots, belts, straps, bags and even large saddles. Work with it wisely so that not a single piece goes to waste!"},{"id":"e5b3f681-3714-4623-97be-4015fa454797","name":"Piercing arrow","desc":"An arrow with a heavy arrowhead designed to pierce armour."},{"id":"e5e650f0-dc71-48ff-afaa-b61c7770284e","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"e5f25908-a843-456a-b095-c31db34aa577","name":"Glaive","desc":"A simple pole weapon for those who aren't highborn enough to get their hands on something better. It's nothing more than a long blade with a sharp point on a long handle, but unlike other pikes it doesn't have a hook."},{"id":"e6139051-e56d-447b-8bf5-171ef171e558","name":"Lambskin gloves","desc":"A pair of gloves made of fine lambskin. They're not of much use as far as warmth and protection, but at least they look nice."},{"id":"e615798b-8a85-441a-9013-2abe4ff25714","name":"Lavish caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of men's clothing in many eastern cultures. This one has rich oriental decoration."},{"id":"e6288ed0-45d6-499e-860d-9f612b0e723a","name":"Old painted statuette","desc":"A small worn-down statuette of St Mary Magdalene. Beikovetz must have stolen it straight from some church or monastery."},{"id":"e6315023-f60a-49e3-a0cb-aa93b094226c","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"e64b23b3-7cc8-4c10-9ff8-eb79585ddbc7","name":"Dead child's tooth powder","desc":"A talisman made from the teeth of an unfortunate dead child will protect a thief from capture. +3 luck bonus and -3 enemy speed."},{"id":"e6652736-4cb4-42e9-b012-050064405f37","name":"Enhanced wounding bolt","desc":"A balanced bolt with serrated tip to increase damage and bleeding."},{"id":"e6987d4a-9a9d-4a31-9753-fb73417a70ae","name":"Lion perfume","desc":"Increases Charisma by 4 for 4 minutes. However, if you use it in combination with another perfume, it decreases Charisma by 7."},{"id":"e6a3993e-7f82-42b2-a329-59ed2fa3ed3d","name":"Military writ","desc":"A military writ of Sigismund's soldiers, which they present as proof when collecting money."},{"id":"e6a6e66d-e608-4e1d-ae7d-eaa2678af9dc","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"e6a9f198-017c-430c-bc13-ba95aba8403b","name":"Noble's hood","desc":"Once you are noble, you must make sure that your manners match it. It's impossible to walk like a peasant! Only the finest worsted wool, well cut and carefully stitched, is really good enough to adorn your noble shoulders."},{"id":"e6c2d88a-dc5d-4939-bf4a-2d78f2939087","name":"Nobleman's hat","desc":"A beautiful hat made of real rabbit fur, lined with patterned fabric and decorated with a brooch with jay feathers, deserves to be worn by none other than a nobleman."},{"id":"e6ffbe4f-a30b-48fe-a1a8-db04cf8f9cde","name":"Wreath","desc":"A festive beech leaf wreath is designed for big days, such as the wedding day."},{"id":"e70519f9-578c-474f-b5fb-849e81884073","name":"Fisherman's lost key","desc":"Lost key to the fisherman's house, probably dropped on his way out of the tavern."},{"id":"e70ae821-5ae9-4504-b923-276eacd20857","name":"ball_broken","desc":""},{"id":"e7129bb8-d5d4-46d6-afe1-d78d2ad9c458","name":"About Saint Dorothy","desc":"Virgin Dorothy and her martyrdom"},{"id":"e71fae45-527d-444d-a1bb-bbbb10bb427b","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"e72485da-2ab7-4a90-8c6c-d5382821c20a","name":"Felt cap","desc":"A simple felt cap without a hem covers only the top of the head."},{"id":"e72e27a2-87db-480d-977b-318c34e0444f","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"e72e4dcc-07b1-4117-bd05-1a635614faa1","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"e7377e4a-a588-441e-b1cc-56817421fa99","name":"Rocktower Pond poacher's kit","desc":"Poacher's equipment found in a ruin near the Rocktower pond. Evidence for the huntsman. A dog may be able to track down its owner."},{"id":"e775725e-9293-43f2-8369-35ce0244534f","name":"Fastened waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e77de265-0b65-493c-bf4d-6ae0149838d7","name":"Riding boots","desc":"Simple riding boots below the knees tightly encircle the shins and ankles and give the rider confidence in controlling the horse."},{"id":"e784827b-ea4a-43d3-afa4-91c1bb6b40df","name":"Old Town of Prague knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"e78cd3a9-327f-4cd1-a051-1c9a6bf975f6","name":"Crusaders of the Red Star waffenrock","desc":"A waffenrock bearing the symbol of the Order of the Crusaders of the Red Star."},{"id":"e790ed79-7798-41a8-8a62-761ba4a67f0f","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"e7a0bb76-58a4-4508-94d4-fc34f0bd4232","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e7b044a7-858c-4fa1-b617-d61306e116f1","name":"Hemmed waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"e7c20f1a-7b0f-43e2-90c6-cc4ec3d652b8","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"e7c9316b-c722-4da7-96a5-48f3322de7d0","name":"Halved pavese","desc":"A skillfully painted riding pavese."},{"id":"e7caca56-8aaf-4cb1-ba87-7260809b856d","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"e7cd670f-a9e5-4b7d-8c76-c7c19eafecc8","name":"Quilted coat","desc":"Quilted thick coat, suitable for every splash and slots."},{"id":"e7d484b2-9b50-46bf-ad2a-60e627e7dc92","name":"Legate's shoes","desc":"Legate's beautiful new shoes."},{"id":"e7de25fb-5db0-4d67-a7bc-763075868cbc","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"e7ea71a6-c19a-4dc4-b9b3-57c6361d1db1","name":"Hungarian spurs","desc":"Riding spurs, also called rowels, help control the horse when riding fast or in the heat of battle. Their purpose is of course not to torment the animal, the individual spikes are therefore blunted."},{"id":"e7eeaa26-f360-4db1-a462-936e7c171544","name":"Burgher's shoes","desc":"Tall leather boots with lacing and raised toe. They are popular especially among wealthy burghers."},{"id":"e80c3672-d6e6-452c-ba19-f3009e17b1b7","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"e811f02f-d513-4489-9213-ed2df19d6fcc","name":"Cuman leather hat","desc":"A cap made of raw leather and sewn with leather straps is an unmistakable headgear of the Cuman raiders."},{"id":"e825dd76-be87-4ff3-9fd4-a7751b5fba83","name":"Beaked kettle hat","desc":"Iron hat with a wide brim. It covers the head well and at the same time, thanks to conveniently placed cut-outs, does not restrict the view, which is an advantage especially for foot marksmen."},{"id":"e83016ef-4633-412d-a7c5-b109f4ad19dc","name":"House of Polner waffenrock","desc":"The Polner family of Kuttenberg is wealthy enough to afford a small military retinue. These soldiers then wear their coat of arms, mainly for reasons of prestige."},{"id":"e8311a12-9888-4f3f-8780-2de38fd1ef90","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"e834f6d8-5955-4a1d-b959-ab0cd18f6419","name":"Embroidered bonnet","desc":"A quilted cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"e8495443-2de9-4f07-8501-eb8878bf167d","name":"Woodsman's Journal IV","desc":"A skill book on Survival in the wilderness. Can be read from level 15 of this skill."},{"id":"e860ce65-083f-4afa-971a-bf951b8083cc","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"e8676cb3-98a9-4a71-949e-cb463e6f7732","name":"Deer antlers","desc":"A valuable trophy that will bring glory to any hunter and a noose to any poacher who acquires it."},{"id":"e86931e4-0d66-4984-9609-867c6ce67009","name":"Firm boots","desc":"Comfortable lace-up leather boots that tightly wrap around the their wearers ankle are in fashion among nearly every class of society."},{"id":"e86cf667-1449-4111-9bb5-17329a526278","name":"Training axe","desc":"A wooden longsword that can bruise but not kill. For those who are serious about swordsmanship, this is an invaluable tool for practicing."},{"id":"e87c5b4b-066c-408b-ac37-e5d61ab6cc19","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"e8894b5c-e6d6-4ff0-9767-55f7d1b7ee1b","name":"Master huntsman's hat","desc":"An elegant pointed hat with a wide brim, decorated hem and badge is worn especially by master hunsmans and they are proud of it."},{"id":"e8b5db50-bd25-4d4b-953c-0739abf53435","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"e8b651d2-fd27-4c94-9752-c5b21a9d02ad","name":"Miner's cap","desc":"A felt cap adjacent to the head has an extended brim at the back to prevent rock rubble, dust and dirt from falling behind the neck when working in the mine."},{"id":"e8bb48b6-c363-4227-9d71-4f26e0dc0370","name":"The Maidens' War I","desc":"About how the Maidens' War began."},{"id":"e8c6130e-a83a-4289-9c28-acc6a02276fb","name":"Coat of arms surcoat","desc":"A jacket of traditional cut, designed especially for the lord's subjects and the army, decorated with the coat of arms of the Lords of Pisek."},{"id":"e9020954-9e0d-435d-b8af-5cbcaf4f0dec","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"e9170235-1d45-465b-bdec-a5599605e15e","name":"Pork liver","desc":"Raw pork liver should be eaten for some diseases, but otherwise it is better to cook it."},{"id":"e924ee43-9fe1-4879-8096-51fce9717cce","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"e9415ffd-f446-4b16-af3b-8e679784f6e3","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"e94552d1-3049-4633-960f-8cb612948708","name":"Laminar hands with rondels","desc":"Full arm protectors consisting of forged slats mounted on solid cowhide leather, supplemented by shoulder protection in the form of simple forged rondels."},{"id":"e951e3c7-0c1d-4ebd-a461-1cad52e2a3a4","name":"Gallant coat","desc":"Unbuttoned at the neck, sleeves rolled up... This is how every good jester who knows how to enjoy life wears his coat. Many a maiden and married woman looks back at it in secret and then has to examine her conscience in church."},{"id":"e964e353-cb58-4137-8354-62e0cf7e57d0","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"e96ac6a4-f494-4b70-9270-7d2f967c59b6","name":"Recipe for Quickfinger potion","desc":"Increases Thievery and Craftsmanship."},{"id":"e96d768e-04e5-4480-9197-1c256d642ddc","name":"alchemyWater","desc":""},{"id":"e9728851-a8ae-4d6f-b761-cd97a824810f","name":"Silver-plated button","desc":"A silver-plated button from a dead miner's clothing."},{"id":"e97bfe02-006d-4389-b8bd-57a2a997b696","name":"Lord of Pisek knight shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"e9ca7f34-a10d-4d55-8ba2-49185cc2496a","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"e9e3100f-2eb9-44d7-8c2d-61d5cd713a18","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"e9e8db79-6235-40e2-8a96-134102947773","name":"Cap with peacock feathers","desc":"A narrow pointed cap is decorated with peacock feathers. It may look a little eccentric in company, but as they say, fortune favours the brave."},{"id":"e9ecce39-1c01-4cc8-8cb0-d245a3fd8009","name":"Saxon brigandine","desc":"One of the best folded armours you can get. The individual hardened plates overlap perfectly, making the brigandine very durable. In addition, a lower fauld is attached to the vest, so the armour covers not only the torso, but also the warrior's groin."},{"id":"e9f59d27-ee5f-4a7e-8341-643854166285","name":"Chainmail gauntlets","desc":"Fingerless chainmail gloves with tempered sheet metal are an older type of armour and therefore cheaper to produce than plate gloves. Unfortunately for archers, and especially archers, they lack any advantages."},{"id":"e9fc25ef-93e7-439e-8fb2-49e5da1c56e7","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"ea0e2dc9-fbd2-4aba-86d5-2ada3633938c","name":"Lords of Zimburg knight shield","desc":"A shield with the coat of arms of the Lords of Zimburg."},{"id":"ea0fa9bc-c402-4903-9a3b-f3721d75d3b9","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"ea34acfb-e165-481a-9c51-1930f3ecebcb","name":"Henik's cellar key","desc":"The key to Henik's cellar."},{"id":"ea617f86-763a-45a2-83d9-d950bdea763c","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"ea62cf9a-a593-4abe-a113-92e8aaebbc07","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"ea748545-72c5-4b3d-99f7-8a4431e2f3ae","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"ea78735d-b371-46d4-a039-bef0ebbb088e","name":"Pistole","desc":"A handgonne is a firearm that uses gunpowder to shoot small pieces of metal or stone. A thick metal barrel with a handle is attached to a wooden stock, similar to a spear, for example. Fire through the powder stopper detonates the main charge in the barrel and shoots the projectile out. It is fired by a lit cord, a red-hot iron wire or in a worst case scenario, a burning stick. This handgonne has a barrel forged from iron and is therefore less durable than those cast from bronze. Any living being hit with this weapon is sure to no longer be living."},{"id":"ea849ae5-a704-468e-9585-ff247b411052","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"ea84be32-b3fc-4dfa-8dab-7169bd9e441d","name":"Turnip","desc":"It is palatable to the simple peasants, the poor and the cattle. The nobility often turn up their noses at it, but they do not know what they are missing."},{"id":"ea8982ce-c235-4943-9ffa-8f0ce44dac70","name":"Coat of arms surcoat","desc":"An overcoat of traditional cut, designed especially for the military, is decorated with the coat of arms of the Kingdom of Hungary."},{"id":"ea8f18d9-83ed-4599-ac49-06ee98dbefc6","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"ea94ceea-ba8e-4312-b16b-22a9e45c18f9","name":"Sewing basket","desc":"A basket full of thread, needles and pieces of embroidered designs."},{"id":"ea9afa9e-6555-45c5-beb3-af3364b6c380","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"eab20b8a-c767-40ad-9748-e84fb8701f65","name":"Evil Morals in Bohemia","desc":"How the Czechs indulge in iniquity and sin."},{"id":"ead19383-3e4b-4040-8ed7-f559403028c4","name":"Sigismund's letter to Wenceslas","desc":"Letter from Sigismund of Luxembourg to Wenceslas IV."},{"id":"eaddf89e-6d03-40b5-87c3-7f344364d6da","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"eaf0b03b-d2bf-4680-a2fb-1f551bd10d1c","name":"Old rusty sword","desc":"The old rusty sword is probably somehow connected with the dark past of the innkeeper Beikovetz."},{"id":"eaf7dcf1-f749-40a2-ab69-4d1b3c9c742f","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"eafae5b5-e98f-4d58-bc07-f2cf16ed1337","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"eb231faa-b879-40cf-9d31-bae3b6827bed","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"eb24b1dc-044c-4db5-b783-4aba2a07ab55","name":"Zimburg reliquary","desc":"The mysterious chest that Posy and Tugbone had been searching for so long. I wonder what's inside?"},{"id":"eb842e62-99bf-4295-b2cd-126470072bec","name":"Old Town of Prague knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"eb878a10-d68f-470c-b1e0-f89ed7f49d0b","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"eba6202d-46c4-4acb-b527-865c31600908","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"ebadd3c9-462f-456a-a6b9-dd6ebc8607a8","name":"Strange little verse V","desc":"A strange verse, probably referring to a certain place in Kuttenberg."},{"id":"ebe75b4a-eb09-406a-b6c4-4f608288f312","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"ebe950f2-7336-48db-a1d5-c61a4ca1b23a","name":"Selection of amorous poetry","desc":"Must be owned by anyone who has been struck by Cupid's arrow."},{"id":"ebec6979-8181-491e-b28a-8252f9d782f5","name":"Sour slop from Loretz","desc":"Well, this swill isn't very nice."},{"id":"ebfc4660-4947-4de2-91cf-9a1dfa128f11","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"ec221952-a3f2-40e4-83a6-ee28a8870d0c","name":"Hungarian pavese","desc":"A cavalry pavese with Hungarian symbols."},{"id":"ec24c6c7-f5bd-4d27-aeef-9a5676686ff8","name":"Charcoal water","desc":"Throw into the cold water three coals of fire, three crumbs of bread and three pinches of salt. Wash thy forehead and thy shoulder with the water, that thou mayest wash away the evil from thee, and put it upon the water."},{"id":"ec38d11f-63ca-4dac-b9f5-ce4ff648b59c","name":"Battle bolt","desc":"A bolt made in large numbers ideal for military deployment in large numbers."},{"id":"ec39b293-d3e4-4469-a28e-42e22d4dce7c","name":"Lower Semine poacher's kit","desc":"Equipment of a poaching bandit from the Lower Semine. Evidence for the huntsman."},{"id":"ec3fe974-81d4-4d42-ae5d-27d10d2d1e13","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"ec462e53-eff1-4ea7-a9c6-02021f2fddfd","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"ec5420f5-9c86-4dd9-b373-320b81831327","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"ec5eccfb-333d-48da-a7f9-cd16f0fdd3bb","name":"Miner's chest key","desc":"The key to the well-chilled beer store for hard-working miners."},{"id":"ec613870-e861-48a7-b880-69f84d7d2054","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"ec66d106-8459-4495-8767-e219fac9203e","name":"Round cap","desc":"A simple round cap is popular especially among the bourgeoisie."},{"id":"ec7148ad-7998-455d-ade8-7bddf358d515","name":"Silesian brigandine sleeves","desc":"Arm and forearm guards composed of leather parts with hardened lamellae and plate couters and pauldrons."},{"id":"ec764072-0d2a-4869-bd27-a3ebc209b5c7","name":"Florian's letter from an admirer","desc":"Letter from a secret admirer to Knight Florian."},{"id":"ec7ea2cb-0552-41a7-88db-95b9b72eeabd","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"eca620de-a1c1-47bc-b8bf-41f76dfd5f88","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"ecc7178b-7d61-4574-9bf9-36a4188c7508","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"ed1b1306-df52-4504-81d1-c0b2bd8ff571","name":"Italian hauberk","desc":"Lightweight short chainmail shirt with shortsleeves."},{"id":"ed1c5af1-4394-412c-a239-afd2362a88b3","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"ed256c21-cd6b-4e26-8d43-f9e429a8e484","name":"Silver brooch enamelled","desc":"I don't know much about jewellery making, but this is a really nice piece. The decoration is done in enamel, which is like stained glass... And the silver underneath isn't bad either."},{"id":"ed346ec4-7db7-4fdc-9cf5-c2a90f6afa3a","name":"Man's best soup","desc":"Mutt-in-soup. You can’t disguise that bitter taste."},{"id":"ed420472-7e45-445e-9f89-80587d1b6b67","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"ed47155f-df8b-482d-8452-308826befd36","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ed6bb678-87af-4c56-9d5d-b96352894ce7","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"eda316a4-59d9-49ae-b67b-f6837789bd0c","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"edbcebfa-3cf5-474f-a70a-7b70a6ce8f3a","name":"Dead man's left shoe","desc":"Dead miner's left boot. Boots for the grave are just for show, they don't actually use them for walking. Hopefully."},{"id":"edc46dd2-383a-4c94-b1d9-b3d450e73e51","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"ede15e37-9976-4b6c-8461-126d1ede824e","name":"Embroidered bonnet","desc":"A quilted cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"ee2eda1f-6e61-47cc-9c32-585ad79c5b2a","name":"Human skull","desc":"Dust you are and to dust you shall return. The skull serves as a reminder of the transience of human life."},{"id":"ee57f6f1-dc5c-489b-912a-bf3f3a76d357","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"ee6c5367-5eb7-4031-9d67-fa03a836fc95","name":"Lord's overcoat","desc":"Long lord's overcoat made of fine fabric, decorated with rows of buttons. Perhaps every person in it looks robust and dignified."},{"id":"ee8a0292-d4be-4066-a4b1-edb18f1e7b44","name":"Pointed shoes","desc":"Pointed shoes with an eccentrically long toe are worn more in the city, in the countryside they could be ridiculed."},{"id":"eea116fb-4391-451e-bb8d-11d70a7ec003","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"eea85e6d-e30a-46ce-a451-f1ec7685bdc2","name":"Travel boots","desc":"Solid shoes with buckles that stand out for their durability and strength. They reliably protect your feet and give them a little comfort. A great choice for long-distance pilgrimages - to the Holy See in Rome, to the Holy Sepulchre in Jerusalem or to the end of the world in Santiago."},{"id":"eeaac8c8-0913-4687-8762-4856617c968d","name":"Trosky Castle master keys","desc":"The bunch of keys of the Lord of Trosky Castle. One flew through a window and the other is somewhere behind the hills. So they are now in my custody."},{"id":"eec788f9-672a-40ba-89dc-b3da10d3badf","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"eecfb1d3-2049-4a50-b5f3-92de8b4eda99","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"eee0d1b8-8f9a-4dc9-a54a-463e084eaafd","name":"Family heirloom","desc":"Wooden statue of an old man, symbolizing the connection with one's ancestors."},{"id":"eeeb5a48-9a97-41a6-aee0-3e1b64fc2405","name":"Cuman fokos","desc":"Cuman long-handled fokos. A fast and agile weapon of the Hungarian raiders. It can pierce light armour or the skull of a good Christian."},{"id":"eef2cf33-45c1-4bdf-b63e-d8f0f4cb311f","name":"Beggar's shirt","desc":"A short linen tunic, dirty and ragged that only a beggar would wear it."},{"id":"ef36d745-0626-4faf-beee-b36f56cd08c6","name":"Stinking shirt","desc":"Someone spilled something on this shirt while drinking at the baths."},{"id":"ef3e117e-379d-4228-a2c5-6fba383e0c0c","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"ef5a9b45-a6e5-4738-960d-f701c5e94c9a","name":"Wooden rosary","desc":"One of the most common types of counting devices. It doesn't count money, but something quite different."},{"id":"ef6b9ce0-6350-44f9-9303-18386ef312c4","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"ef6eb320-91c3-4f8e-a5c5-3640fe19a0da","name":"Sword for young Lord Semine","desc":"A good sword of Toledo steel, made from the broken sword of a hermit."},{"id":"ef881d5c-0490-402c-b39f-79daa80c0471","name":"Dried boletus","desc":"An estimable fruit of the Bohemian lands, tasty boiled or roasted, with meat or porridge."},{"id":"efa1814b-f8bb-444c-89ef-7d3cff9ae350","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"efa237c7-3905-4813-b9c3-a32b449c17ad","name":"Military sword","desc":"A good weapon that any average blacksmith can forge. It's not bad, but at the same time it's not surprising."},{"id":"efaeece1-d328-4b6f-8eb5-17802b9c20d2","name":"Innkeeper's shirt","desc":"Short linen tunic with linen apron."},{"id":"efaf440b-1fbb-4a05-b013-df7a9d2d570f","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"efd50449-d7ba-4e99-a9a2-8b8b2e55a136","name":"Ornate waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"efdf02d6-6951-4854-a50d-d841bc23f0e1","name":"Gartered hose","desc":"A long hose are a staple of men's clothing, but garters are worn only by the nobility, wealthy bourgeoisie or various freedmen. Nothing for the common peasant."},{"id":"f01c5b5c-a4cb-4c5a-a26a-690b2a354044","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f02e03db-4a8e-4cf0-a65a-5c62fcdc3e49","name":"Chaperon","desc":"A chaperon is originally just a folded hood put on backwards. A simple trick created an elegant and rather eccentric headdress."},{"id":"f035a1e7-f5b0-4c19-b330-e6279b7cbac3","name":"Silver cross with garnet","desc":"Very nice cross with a deep red gemstone."},{"id":"f071f33d-ba41-4460-b71a-2b34bd417360","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"f0720bb0-b964-40fe-b358-b84a35ecb601","name":"Heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"f09ab52a-33a4-4b61-b8c1-c5a10e46594d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f0b28694-d7c7-433b-8013-53d888dc48de","name":"Ladies shoes","desc":"Women's embellished leather shoes with a sharp toe. They are worn mainly by bourgeois and noblewomen."},{"id":"f0bae829-2681-4346-81ab-a5c4f790ed86","name":"Kuttenberg heater shield","desc":"A beautiful and solid knight's shield made by the master armourer Nicolas Krondel from Kuttenberg. It bears the colours of the mining town and is an example of excellent craftsmanship."},{"id":"f0c9f56f-cd0f-4973-bfb5-3cea3e756bcc","name":"Cooked pear","desc":"Cooked pear softens up and smells wonderful."},{"id":"f0fb0494-6ebd-4c6a-bb9e-ef396db3c5d4","name":"Reinforced heavy crossbow","desc":"A heavy siege crossbow is mainly used for shooting defenders on the walls. The strong steel arms have a considerable tension and therefore a hand pulley is used to cock it. In addition, the body has been reinforced with steel to make its shot truly lethal. You just can't get a stronger ranged weapon."},{"id":"f0fbf1c3-dc92-486d-801c-5979ad5d896f","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"f0fe1f59-9dd5-4dab-ab69-586bb7267258","name":"Bandit's brigandine","desc":"Folded armour made up of forged slats hammerd on a leather vest is a slightly older form of protection than the fashionable metal cuirass. Both provide similar protection, but the brigandine is a bit heavier, but there are warriors who will not let it go. This one's been through a lot, though, and has had more than one owner. Most certainly haven't given her up willingly."},{"id":"f1040787-dddd-4b68-b176-69f1205bd3c4","name":"Life in the Tavern I","desc":""},{"id":"f1086181-eb31-4054-9a6f-424243faf35c","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"f10ded12-a41c-40bf-a8ae-883d4e845059","name":"Lead ball","desc":"A lead ball. It rattles a little in the barrel, but at least it's easy to load. Even the best plate armour can't stop it up close!"},{"id":"f115511c-a787-4c5b-808e-3c389b7add2f","name":"On Tournaments","desc":"On tournaments and jousting."},{"id":"f12c7fd6-363f-496d-b695-17760763c99a","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f13402d0-b423-4c6c-9e82-9cf5cbc7738d","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"f1376cd7-b72f-4f7c-9929-3cc1dc7d18f0","name":"Milanese cuirass","desc":"An excellent piece from the Italian armoursmiths. Thanks to the perfect tempering and fine surface cannulation, the sheet metal used can be much lighter and yet just as durable. The cuirass is composed of two parts that fit together perfectly to form an impenetrable shell on the knight's body."},{"id":"f13c6be9-09ab-492d-82f5-628170cc1dc2","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"f13cfc8b-eb2b-47eb-9ea1-d773e8908e32","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"f1456d0a-fa7b-4f8d-b821-7c0da6d28dfd","name":"Zizka's personal belongings","desc":"Zizka's stuff. There's a lot of rattling and ringing, so it's probably not a butterfly collection."},{"id":"f16698f4-089b-4bc2-a8d6-d205b2f62478","name":"Lower tower key","desc":"The key to the lower tower of Nebakov Fortress."},{"id":"f16b96b8-3895-467a-9770-21fd8effe24c","name":"Miner hose","desc":"These aren't just any pants. These express their owner's affiliation with a respected craft and are therefore properly worn out from an honest work."},{"id":"f16e6c86-2970-4106-a21c-9f4ffa181983","name":"Gold badge of transmutation","desc":"After your throw, change a die of your choosing to a 1. Can be used once per game."},{"id":"f16e6c86-2970-4106-a25b-9f4ffa181983","name":"Tin warlord's badge","desc":"Used to gain a quarter more points from your turn. Can be used once per game."},{"id":"f17133c3-238d-4dae-a757-4f0632cb3e8a","name":"Training longsword","desc":"A long sword designed for practicing swordfighting techniques and training combat. Therefore, it has no sharpened blade and its tip is blunted."},{"id":"f17833c1-9d04-4ba7-814c-ae72d8f658da","name":"Letter from Bishop Thomas II","desc":"A few lines full of important reports from the Hungarian Bishop Thomas of the city of Erlau."},{"id":"f185324e-b04b-4f2f-9e2d-bacd8b0bce43","name":"Frilled cap","desc":"A frilled round cap with a raised hem, decorated with a simple brooch, it is popular in towns and fortresses."},{"id":"f18fa1f2-b7f9-4b38-ba54-5561e8a06a8c","name":"Hungarian heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"f1985960-065b-4535-b3d2-566981240838","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"f19e049a-1209-4f18-b02d-615e5efb2c48","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"f1b140d4-8fb2-4088-97cf-be2849089b30","name":"Markvart von Aulitz's sword","desc":"If it wasn't for this sword, my parents would have still been alive. I'm not sure I even want to carry it."},{"id":"f1bfd1f3-c5e8-4b4a-93b1-ddd6293a3e23","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"f224e38e-b2a4-4455-a497-6a3cad0078af","name":"Horse collar","desc":"A discarded collar from a horse's harness. With it, a dog might find a trace of the horse it belonged to."},{"id":"f22b7bb9-fa73-4aa1-92e6-3943e2be7e69","name":"Anvil","desc":"Anvil"},{"id":"f24c1f54-6dad-49b2-957f-532b918dba33","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"f24ce681-be1d-4c5b-b8f1-49ac536b6ffe","name":"Narrow straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats. This one is a bit narrower, but it serves its purpose just as well."},{"id":"f26b7c7b-fb22-4fc4-8231-c409d6e3f256","name":"Leather gloves","desc":"Leather gloves that protect their wearer from abrasions and the cold. Suitable for horse-riding and hunting, but don't provide much protection in combat."},{"id":"f26e5d2d-e036-4cc1-8e61-d884740f8953","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"f29e4d55-2f1d-4257-88f8-03dacc41eae1","name":"Crude padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"f2aca8ba-852f-4ab6-a525-db15bf36f720","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"f2e16499-8a27-4acc-a4af-f29e00300507","name":"Trout","desc":"A tasty freshwater fish, abundant in flowing waters such as rivers and streams. Suitable to be fried, roasted or added to a soup."},{"id":"f2e86f22-8932-4751-8f62-fb1b8b846ddf","name":"Captain's mace","desc":"A captain's mace is a great weapon expressing the status of the owner and the punishment that will befall anyone who opposes him. A single movement with the weapon in hand is enough to set in motion whole ranks of warriors!"},{"id":"f2ee05db-430c-4505-8b39-ce658fb4bb74","name":"Dried pear","desc":"When you have no idea what to do with all those pears."},{"id":"f2ff6654-b73b-41f8-9390-c6d6e5e144ed","name":"Rikonaris' sabre","desc":"A good sabre worthy of the Voivode's position. Its wielder is not to be underestimated, for even the slightest cut can cause a terrible curse. At least to those who believe in such things."},{"id":"f328d876-0f8b-40cb-a288-c759ab57cc79","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f3300001-5e96-4d6b-91b3-66a78ef024cf","name":"Miner's tunic","desc":"Short linen tunic with a simple miner's shirt for working in the mines."},{"id":"f3434a58-f46c-4680-916f-626b9870029e","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"f36c41fd-a90f-4216-85ac-fbe95cf8445b","name":"Rusted plate","desc":"Damn it, who let such a fine piece of armour rust so reprehensibly? It won't do much, but it'll still protect you from death by stabbing."},{"id":"f36cf17d-f9de-490c-818d-ecf9aab45c60","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"f371dead-0ea0-4d3b-9871-ab3fdc6328ec","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"f3796ec4-1884-4926-aebb-9ddda5bf14a7","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"f3a2d58c-9a6d-44a7-a05a-a70c9fc471a4","name":"Secret mint ledgers","desc":"Records of the secret mint's accounting. They prove royal silver fraud."},{"id":"f3a35cc8-fcb8-4ded-b065-0488ff3b5f45","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"f3a3881d-408b-4cfd-aa10-bf9ab4d7f08f","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f3aa4492-06fb-4ce3-9e41-784cbac8801f","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"f3c25d86-5aa8-4a61-aa94-8d11a950f26f","name":"Travel dress","desc":"An ordinary dress intended for daily wear for peasant and poorer bourgeois women. Also ideal for travelling."},{"id":"f3c77609-1779-4623-9561-c5cc2f2a5d6e","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f3d4831b-bc56-44e7-9751-ba55fde40145","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"f3e23054-4e26-41c0-ae6f-c8769af2c292","name":"Cuman boots","desc":"The Cumans are feared opponents especially for their mounted archery, and they adjust their equipment accordingly. Their riding boots meet the demands for both comfort and confidence in riding."},{"id":"f40e2765-b3ea-4404-898a-be7eba82935f","name":"Old quilted hose","desc":"A quilted hose that have been through a lot. They are rugged and have patches, but can still be used on their own or as a bottom layer for the upper part of armour."},{"id":"f412cec9-142f-4efb-b9fc-738b7d9288ba","name":"Milanese cuirass","desc":"An excellent piece from the Italian armoursmiths. Thanks to the perfect tempering and fine surface cannulation, the sheet metal used can be much lighter and yet just as durable. The cuirass is composed of two parts that fit together perfectly to form an impenetrable shell on the knight's body."},{"id":"f42045ac-2eec-4835-91d2-1093231b1ae9","name":"Wheel grease","desc":"A greasy black liquid used to lubricate wagon wheels, mill gears and mining equipment. It is made by mixing pitch, tallow and crushed plaster so it stays nice and smooth."},{"id":"f42e9dab-1c40-4578-9701-2e2aa3c72904","name":"Crusaders of the Red Star waffenrock","desc":"A waffenrock bearing the symbol of the Order of the Crusaders of the Red Star."},{"id":"f4324daf-fe09-495e-b954-16f23226cf58","name":"Billhook","desc":"An immortal weapon well known to mankind since the creation of the world. A simple long spear with an added hook for tripping the legs of enemies and pushing ladders off battlements."},{"id":"f43c56c2-b932-48c9-bc47-9d3640bedb7c","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f44c98f9-eff8-4868-8b37-d1994692ace2","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f44e20f0-c31b-4dc7-91a9-140c9d367ab8","name":"Quilted hose","desc":"Simple quilted leggings. Not exactly the pinnacle of tailoring skill. Can be used alone or as a softening underlayer beneath better armour."},{"id":"f4623b5a-e9eb-453e-b196-9ff789b1a9a0","name":"Lower Semine woodcutters' map","desc":"Lower Semine woodcutters' map."},{"id":"f462a63d-f134-47a8-aa3c-f9435b9bc302","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"f473094b-f47d-4dbb-b4c6-d32816d0ce90","name":"Prayer to Saint Wenceslas","desc":"Two old prayers, Lord have Mercy on Us, and Saint Wenceslas"},{"id":"f4830492-15e2-44e9-abec-fe4eb6879ab8","name":"Simple hose","desc":"A long hose are a staple of men's clothing. The simple countryman, however, does not look for beauty, but mainly to keep the wind off his knees."},{"id":"f4968961-b925-4599-918f-d6f1b8ca7aa8","name":"Trophies from victims","desc":"In the young gentleman's chambers, I found a collection of locks of hair he had kept as trophies. If this doesn't prove he's the killer, I don't know what will."},{"id":"f4b6659a-b1b3-4c0d-98ad-582303f7f426","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f4bd63b4-b0e1-4891-9d74-e8e81d604c7b","name":"Tragic Flute Song","desc":"That must have been living agony."},{"id":"f4cb4dbd-93ad-4a82-a2e2-4b2295775d91","name":"Cuman caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is heavily decorated with an embroidered hem."},{"id":"f4f0b57b-e475-4b6a-89fb-2b56b9ba84a2","name":"On the Margraviate Wars","desc":"About the wars that Jobst and Procopius fought against each other in the Moravian March and how Sigismund emerged victorious."},{"id":"f4f1191a-91fe-400f-afbd-d3da1d1e0b23","name":"Tall Cuman cap","desc":"A high cuman cap in the shape of a polyhedron made of coarse leather is an unmistakable headgear of the wild Hungarian horsemen."},{"id":"f51b2f0e-0e1c-4390-a303-759104d2da08","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"f544730a-0494-4e5b-bb5b-70e4204bf227","name":"Quilted caftan","desc":"A Caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one is also quilted for better durability."},{"id":"f54e6116-6c6c-4712-99a9-8a11e3416e2b","name":"Ash hunting bow","desc":"Hunting bows are supposed to be strong enough to bring down larger game. This bow is made of ashen wood and is therefore one of the stronger hunting weapons that are still easy to handle. Most experienced gamekeepers and poachers will rely on it."},{"id":"f55191d9-81e9-4d8c-b456-b12a24d198e3","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"f5b07d39-d597-4168-91d4-358be9f9be1e","name":"On St. Wenceslas","desc":"A book about Prince Wenceslas and how his brother had him killed."},{"id":"f5c11ece-238d-4463-88ec-1f51c80c1bcf","name":"Milanese gauntlets","desc":"Fingered gauntlets in a typical hourglass shape. The individual fingers are protect a series of folded iron slats."},{"id":"f5da4bd9-9f62-4cd5-8117-d9cfec70bfb1","name":"Csaba's key","desc":"The key to Csaba's private chest in the kitchen of the Italian Court."},{"id":"f60de76b-cbc7-4c02-8867-0ba983d42e67","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f627fe5b-6af9-4f1b-884e-6128686835b6","name":"Crested Cuman helmet","desc":"A helmet of a peculiar pointed shape, not used in our lands for a long time, favoured by nomads on the eastern steppes. The Cumans are fond of adorning it with horsehair, and some evil tongues claim that also with the hair of good christian virgins."},{"id":"f63af340-2ab6-49a7-9d12-bd06a0fa9712","name":"Tournament sword","desc":"A sword that was lent to me as part of the equipment for the famous Kuttenberg tournament."},{"id":"f64a7afd-f800-40a5-ab38-c2a39ac37072","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"f654fdda-783a-4460-8c66-a6d2b5927820","name":"Silver badge of defence","desc":"Use to cancel the effect of your opponent's Silver badge in the game."},{"id":"f65708b5-f7bb-4ee0-adc3-bddc426976f5","name":"Recipe for Saviour Schnapps","desc":"Saves your game, and when brewed well also increases your Strength, Vitality and Agility."},{"id":"f65775e4-cef8-4dd5-a5ec-49a58adde69d","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"f65b9581-c620-4030-abd0-95af61c55c7a","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"f65df177-966b-48e5-8cc6-26a4f95e41b0","name":"Bailiff's mace","desc":"Bronze mace cast in one piece with ground tips. It expresses both position and determination to make one's case, even if one has to beat one's ideas into opponent's head with force."},{"id":"f66192d0-67e8-4351-9753-9256df132e83","name":"Sewing needle","desc":"A secondary product of hay drying."},{"id":"f6899d80-8ca4-4aa9-a7e0-20aa9e45f03a","name":"Dried nettle","desc":"It can be found abundantly by water, on the edge of woods and in the furrows of fields."},{"id":"f68eff91-c8dd-42f8-ae13-d224e616b2e2","name":"Ordinary coat with crest","desc":"A plain coat, made in red and white and decorated with symbols of Kuttenberg."},{"id":"f69547b8-b9be-4fe9-af1f-28f6d324379c","name":"Broad battle coif","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"f6aa674f-f64e-41ae-8a51-e6234c05901b","name":"Work scarf","desc":"A work scarf is worn tightened around the head and tied in a knot at the back of the head."},{"id":"f6b79b12-8e1f-44ae-853f-eb1f87d18799","name":"Chaperon with brooch","desc":"Elegant and slightly eccentric headdress decorated with a decent brooch."},{"id":"f6c0b8db-655a-43b9-98a8-e8901d1c5ac1","name":"Simple veil","desc":"Veils, or also wimples belong to the everyday clothing of married and widowed women. They are most often white or light-coloured and are fastened with pins and brooches."},{"id":"f6c33b65-da21-425d-aea1-a67500c3bb01","name":"Hanush's sword","desc":"The longsword is a perfectly balanced lethal weapon. Its price is not small, because only a master of his craft can forge a thin yet flexible blade! The longsword is not meant for the heat of battle, but for swift swordplay."},{"id":"f6cc59be-d9af-419f-b9f0-66440c1d79ae","name":"Knight's waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"f6cd8a45-3b9f-4fb9-87cf-71722127646b","name":"Brocade hood","desc":"Have you achieved success, are you noble and rich, or at least you want it to look that way? You can't go wrong with a brocade lining."},{"id":"f6e2e337-d781-4aca-b2e5-6ee8affbd5d7","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"f6e6b06e-487f-4bf2-bbd6-0b6eb2a49688","name":"Wreath","desc":"A festive beech leaf wreath is designed for big days, such as the wedding day."},{"id":"f6ede291-0b47-4dab-85bf-c507ad0e90a7","name":"Dried lepiota","desc":"Why would anyone do that? What a shame! There's nothing like such nice round cuttings from a lepiota..."},{"id":"f6f6cfba-2e56-4c95-959d-9e5e63597a12","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"f6fd203c-6983-481b-882f-f03836743086","name":"The Papal Schism","desc":"How two popes came together on the papal throne and what it means for Christianity."},{"id":"f734d3db-4092-4f2e-b4d6-135474f772e3","name":"Embroidered shirt","desc":"Extended linen tunic with delicate embroidered trimmed hems."},{"id":"f74c8503-89cf-4f35-878f-8a5a9ff503e8","name":"Broken round shield","desc":"Remnants of a shield from another era, still good for kindling."},{"id":"f75371a0-6d02-4d18-8a78-a5c63882968a","name":"Tyrol brocade cotehardie","desc":"A fine dress that will make even an ordinary girl a lady worthy of a knight's favour."},{"id":"f753c1fe-278b-4383-95dd-4430f1bf193b","name":"Riding caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. This one has was made for more comfortable riding."},{"id":"f76aeb4b-3c0b-4169-b9ef-a8b688eee9a6","name":"Lady's gemstone necklace","desc":"If the husband does not respect his wife, she can appeal to the law and then, along with her dowry and all the gifts she received during the marriage, remove herself from the household."},{"id":"f7bcdadb-de2f-4576-b84f-474c2a56804f","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"f7bf3158-9170-4a4f-bfef-c41c67b5b972","name":"Mail hood with a coat of arms","desc":"A quilted hood with a collar and wide mail hood."},{"id":"f7c5a150-2c16-4876-ae86-7587c530bd3d","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"f7ce1893-d207-472c-adec-929319f7ac25","name":"Noble boots","desc":"Decorated high men's boots with a raised toe, made of quality leather. They are designed for the richest."},{"id":"f7dd31a5-d8e7-485d-a970-73f30aa6127d","name":"Butcher's apron","desc":"A long inner tunic joined with butcher's apron."},{"id":"f85df23c-28bd-466f-af52-ebdaefc546a6","name":"Women's straw hat","desc":"When working hard in the fields, men and women protect themselves from the sun by wearing straw or wicker hats."},{"id":"f879ac63-2ce2-4114-83a2-89643c1ed102","name":"Charcoal","desc":"Charcoal is wood burnt in kilns by pyrolysis without influx of air. It is used primarily in forges and smelting works, and to a lesser extent in alchemy for its filtration properties."},{"id":"f884204d-0d13-4ff2-9c54-40d2375d8a63","name":"Women's hood","desc":"A women's hood covers the head, chest and shoulders. It protects from the cold and unwelcome stares."},{"id":"f88fe14a-e013-43eb-987b-e99fc646675e","name":"Butcher's apron","desc":"A long inner tunic joined with butcher's apron."},{"id":"f8933c95-6ad2-4256-86f1-02cc431b32ab","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"f8e3162a-dff1-4099-a60f-05be4e40f7ca","name":"Weighted die","desc":"A mysterious playing die found in a ruined house. Suspiciously, it tends to land on 1."},{"id":"f8e674ee-4c14-4f77-942f-b10d2b7086de","name":"Burgundian hat","desc":"A tall, cylindrical hat, also called a burgundian hat. The hem is decorated with a bird feather."},{"id":"f8f7f4bb-7474-43d3-9c44-36793f83e7a4","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"f8f97efa-a624-486d-b966-fbf35757431f","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"f900a652-6e59-4044-95f9-32788c12ba57","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f90262b5-a805-4737-b891-21ee7c64db4f","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"f91c4738-fec3-4b1d-b70e-08d792119931","name":"Map of game near Slatego","desc":"Map showing places where you can hunt game in the vicinity of Slatego."},{"id":"f9236ce9-77b1-4209-950d-51e86ddf1be1","name":"Miner's hood","desc":"This isn't just any piece of cloth, it's a sacred part of the miner's dress and yacker traditions."},{"id":"f92a401e-39d9-4bc7-857c-4341b49fe84a","name":"Reinforced tempered gauntlets","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"f93404c6-c41b-4336-8813-3ffef8c40392","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"f93c9156-efa1-4712-bb48-3ce5d50962bb","name":"Jewish bread","desc":"A crispy unleavened bread, also called Matzah, which is typically square or round in shape. It is a traditional food for the Jewish holiday of Passover."},{"id":"f9439148-1e80-4d72-99d2-a314f05a2c50","name":"Lord's overcoat","desc":"Long lord's overcoat made of fine fabric, decorated with rows of buttons. Perhaps every person in it looks robust and dignified."},{"id":"f9500c7c-bd97-472a-b5b0-d3d41c47a8d6","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"f953cb01-8f55-4075-a16a-f1e3a4001a9e","name":"Carpenter's badge of advantage","desc":"You gain a new dice formation called the Cut, consisting of 3+5."},{"id":"f9648337-4f47-470b-9967-2677e326fa18","name":"Copper jug","desc":"Can be used in various manners in the morning, day, evening and night. It just needs to be washed thoroughly."},{"id":"f96a10d6-3fb7-4e57-a5c1-f84c7a4f64f9","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"f96f93ed-3141-4a31-9d3b-eac9f4c1c422","name":"Short pourpoint","desc":"An expensive and honestly made quilted coat from precious fabric for all noble warriors."},{"id":"f97d02a4-f0ce-4ddc-888a-e6c639ab8257","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"f985330c-abc6-4678-b952-336e93b52b3f","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f999b3e2-e4b5-45b3-921b-561dcee0da56","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"f99c144c-76d4-4e88-ad33-6bcb1a473053","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"f9aed059-bbe3-4144-af1f-8ac41bd5173b","name":"Magdeburg plate arms","desc":"Protection of the whole arm and forearm by precisely fitted metal plates. The armour is decorated with brass and artistic ornaments."},{"id":"f9baa3be-b110-4202-a9ef-f3df22388390","name":"Simple brigandine","desc":"Folded armour made up of a number of forged plates hammered side by side under a leather vest of good cowhide. A well-made brigandine has the individual plates folded so that they overlap slightly. Compared to a plate cuirass, it is a little cheaper to make, but still a very expensive part of a warrior's armour."},{"id":"f9bc2aaa-96cd-4aa7-ad17-3624ce58e155","name":"Quilted coat","desc":"Quilted thick coat, suitable for every splash and slots."},{"id":"f9be9c8b-de15-4216-bf0d-7e71d25c0b84","name":"Plate knight gauntlets","desc":"Better hand protection is a must in combat because as they say: hands go first in any fight."},{"id":"f9c2e7e4-0894-4f04-a4c5-93662230db16","name":"Saxon plate legs","desc":"A leg protection made from tempered sheet metal plates forged into the dorsal edge to better withstand slashing and crushing blows. The armour is not fitted with sabatons, as its intended wearer is not a horserider and often must move on foot."},{"id":"f9d5d37e-a7d2-427a-a277-55d40e6f5dfb","name":"Bandit's brigandine","desc":"Folded armour made up of forged slats hammerd on a leather vest is a slightly older form of protection than the fashionable metal cuirass. Both provide similar protection, but the brigandine is a bit heavier, but there are warriors who will not let it go. This one's been through a lot, though, and has had more than one owner. Most certainly haven't given her up willingly."},{"id":"f9f651ef-c619-4c47-81b3-7d00e593168a","name":"Saddler guild knight shield","desc":"A guild shield. Two crossed wooden mallets and a saddle are the emblem of the Kuttenberg Saddler Guild."},{"id":"fa13dc4a-09d1-48ff-b48b-9d1dd2aac13a","name":"The Strength of the Knight IV","desc":"A skill book on Strength. Can be read from level 15 of this skill."},{"id":"fa168685-f367-47a0-8d12-a6df841560b7","name":"Lavish rosary","desc":"One of the most common types of counting devices. It doesn't count money, but something quite different."},{"id":"fa19b23a-c9c1-4e36-b70d-622d220b61da","name":"Riding boots - high","desc":"Thigh-length boots that protect the horseman's legs against chaffing. Putting them on and taking them off is a rather lengthy process, so they're worn more by folks who tend to spend the whole day in the saddle, such as messengers and grooms."},{"id":"fa422bab-781a-4f44-9d23-23a17531eb4e","name":"Embroidered chaperon","desc":"A richly embroidered, elegant headdress, which is originally nothing more than an upside-down hood."},{"id":"fa5f3d45-8d52-4119-8b9d-40f0e56d9bed","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"fa62f728-cf18-4efa-8d38-39a446f290fb","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"fa75f226-f8b1-46a7-aef8-b069bd10d436","name":"Liber Razielis Archangeli","desc":"A magical grimoire filled with centuries of strange, ancient knowledge accompanied by cryptic symbols and drawings."},{"id":"fa79bacf-3838-4028-8f91-3e89712c0c64","name":"Earthworm","desc":"An earthworm for fishing."},{"id":"fa938686-e8b9-44ea-8e5d-bf2a451fbc48","name":"Wanderer's hood","desc":"Whether the sun is shining, it's raining or snowing, this hood will never let you down. There was one who went all the way to Jerusalem wearing it, and when his bereaved sold it, he had a nice funeral out of it too."},{"id":"fa9f0438-4b43-4629-9257-d9e728bffe8d","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"fac619a6-889b-453e-a45a-938e5abcfe64","name":"On the Composition of Alchemy III","desc":"A skill book on Alchemy. Can be read from level 10 of this skill."},{"id":"faed9509-92fe-42f2-be78-3c07d2c494b5","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"fb0e22ad-cd3c-4f49-add1-e9001a431f29","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"fb15a17d-81d1-40ee-926f-f3f031234ed8","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"fb175529-7e50-4d9d-a940-d3037284b8f3","name":"Gambeson short","desc":"A quilted combat coat made of several layers of plain linen. Can be worn alone or as a basic soft layer under other types of armour."},{"id":"fb19e7cb-fbef-4184-bec3-a4c545d9f6d5","name":"Festive dress","desc":"A buttoned dress with a long skirt is the ideal garment for formal occasions, both for bourgeois and wealthier village women."},{"id":"fb30c64e-2360-4ed7-b805-531b3424fe4d","name":"Battle shot","desc":"Ammunition for firearms, suitable for immediate use. The powder is faded and the ball is a little conical."},{"id":"fb391cba-80cf-4c17-903a-b1129eb9fba9","name":"Worn tunic","desc":"An inner linen tunic is a good base for any outfit. This one's a bit worn out."},{"id":"fb42f996-b1a5-4ecb-a801-a5604616611c","name":"Ripped hose","desc":"These miparti hose can't be used anymore unless a tailor looks at them. They're torn lengthwise."},{"id":"fb4cdf39-d880-4cad-9f5c-0404c60f599e","name":"Hunting cap","desc":"A hat of unmistakable pointed shape with a decorated hem is the pride of every good hunter. Its colourful shades guarantee that no one will mistake you for prey in the woods."},{"id":"fb5e7350-abe9-433a-8e76-32e2ec2d54b7","name":"Frilled dress","desc":"A frilly, tight-fitting dress with a raised skirt tip coquettishly revealing the petticoat are coming into fashion especially in cities."},{"id":"fb7c15ed-89ef-418e-b091-dbd813a962d0","name":"Dried mint","desc":"It is rarely found in nature, but rather alongside houses and in gardens cultivated."},{"id":"fb7ebf36-7aea-410d-800e-2482193d0982","name":"Bell-shaped bascinet","desc":"A helmet called a bascinet protecting the whole head except the face, so it looks a bit like a bell. Very often used by marksmen because the face is not covered by any visor and it is easy to see the target."},{"id":"fb95090e-ab36-4e5e-9447-99653eaa4873","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"fb999545-a4b1-493b-bb61-84ce505434c4","name":"Bohemian cap","desc":"A decent round cap with a high hem is a hot novelty in Bohemia and every burgher with a finger on the pulse of the times must have it."},{"id":"fb9b67e8-7362-4462-973e-2b0d77cb7576","name":"Lord Ruthard knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"fba4ddab-729a-4485-9f9c-cfff0f2757b3","name":"Noble's plate legs","desc":"A masterpiece of plate armour decorated with brass lining. The forged plates are further hardened to achieve higher durability, while the metal sheet could be weaker and therefore lighter overall. The plate legs are completed with foot protection called sabatons."},{"id":"fba91521-a381-4980-8c15-8fdca6bd34ad","name":"Headscarf","desc":"A simple men's scarf, skillfully tied around the head to keep it from untying."},{"id":"fbab9877-fb56-4aa9-bcd4-118ba9b0912d","name":"Painted pavese","desc":"A skillfully painted riding pavese."},{"id":"fbadc26b-dc70-4ad3-8b15-c1c1e7c159d6","name":"Hemmed hood","desc":"If you have a little more money, it should be apparent. That's the decent thing to do."},{"id":"fbb641e5-a1a0-43ba-bfa8-c411bfa79f46","name":"Cooked deer rump","desc":"Delicious hind leg meat. The topside cut makes for the best roast. Dice the rest and boil it in salted water. Now to make a good sauce to go with it, crumble some bread in beer, add a little vinegar and cook it with some pepper and cloves, if you have them. Pour the sauce on top of the cooked venison and garnish with baked apples. This is how Severin the Younger advises deer to be prepared."},{"id":"fbb7926a-ed87-4da7-a88c-35a8c5673930","name":"Dead virgin's hair","desc":"A talisman made from the hair of a dead virgin. It's said to protect its wearer against venereal diseases. +8 gonorrhea resistance."},{"id":"fbc524b9-4f4e-4063-bc5d-32ce7cdde6f9","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"fbc58e41-81e9-4447-8a86-e9d236b9dad5","name":"Simple hood","desc":"A hat is for show, a hood is for the cold."},{"id":"fbc9c104-e20f-4372-b7aa-2d488c8ccee1","name":"The Book of Poison","desc":"About abominable poisons, their acquisition, and the art of stopping the effects caused by them."},{"id":"fbdde51b-cb6b-49c2-8da6-8ac75bef6ec2","name":"Cuman shield","desc":"A circular Cuman shield used by light Hungarian horsemen."},{"id":"fbea7771-4176-4faf-808e-05777a946fa0","name":"Hose joined","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"fc1184c5-751f-40b1-973c-f8094e2353a9","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"fc19d965-53a1-4dc5-b35e-990b347b10bf","name":"Fastened caftan","desc":"A caftan is a long men's overcoat with long sleeves. It is a traditional part of the male dress of nomads from the eastern steppes. It fastens at the chest with a series of ornate buttons."},{"id":"fc1ce409-2815-4b44-be8d-01097702ae0f","name":"Dried boar tenderloin","desc":"A prime piece of a boar meat, juicy and tasty. Prague burgher Havel of Silberstein liked it very much and used to prepare it in a special way called wild boar on venison."},{"id":"fc214bc3-f5cb-402a-a2e6-ba27622d9eab","name":"Beggar's hood","desc":"Even a quality hood will turn into a worthless rag with time and wear, but it's still better than nothing."},{"id":"fc31699c-1c3a-404f-9a99-535e9ee7e927","name":"Decorated headpiece","desc":"Ornate headpieces are worn by young unmarried girls on their uncovered hair, by married women under the veil."},{"id":"fc43bd66-f504-478f-8b90-5c47b5b28b19","name":"Huge dragon bone","desc":"This bone is really huge. Good thing what it belonged to is long dead."},{"id":"fc71a57e-cbb0-4f1e-bae3-9314ac2b06b4","name":"Pointy cap","desc":"A simple pointed cap with a narrow crepe is an interesting fashion choice even for less affluent people."},{"id":"fce747f5-da7e-4218-8d41-b87b820cdab7","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"fcf968a7-ec9e-4290-bbdb-69367d985bc8","name":"Relics of cloth scraps","desc":"A tiny fragment from the veil of Saint Ludmila is a piece of very fine batiste. Ludmila prayed sincerely to Christ and brought her grandson, Prince Wenceslas, the patron saint of the Bohemian Kingdom, to faith. But she stood in the way of her power-hungry daughter-in-law Drahomira, who sent two cruel Norsemen to kill her. It is said they did it to her with her own veil while the duchess was praying to God."},{"id":"fd03a418-add8-43b5-b670-de2796f5d125","name":"Work dress","desc":"An ordinary dress designed for daily wear in domestic and agricultural work. The apron is a typical accessory of a housewife or a maid."},{"id":"fd0449fd-931f-4ede-a752-f419617297af","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"fd228718-a653-4172-b7b4-9ad089a59989","name":"Padded hood","desc":"A quilted hood with a wide collar protecting the neck and shoulders of the fighter."},{"id":"fd2e7345-5584-49d1-a0f9-e69c51d2bdf0","name":"Painted die","desc":"One of the dice coloured using modern techniques that hide the attempt to load it."},{"id":"fd3682f9-621d-4d50-ae9d-1c0081f140ab","name":"Ataman's sabre","desc":"An unusual curved blade used by nomads on fast horses in the Hungarian steppes and remote Arabian deserts, this swift weapon excels at offense and defense alike. Every good Christian should beware of losing his head to such a weapon."},{"id":"fd63e1fe-54f3-436d-9dcc-3839ba7236c5","name":"Hungarian heater shield","desc":"A shield made of wooden planks glued together and covered with thin rawhide. These shields are usually decorated with the coat of arms of a lord, noble family or city."},{"id":"fd65fbb0-115b-4b63-a410-c235a69860a1","name":"Old Town of Prague knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"fda28334-d525-4093-bf40-21c7d5a08fdf","name":"Noble gambeson","desc":"Exquisitely tailored and fitted noble coat made of precious fabric designed as a soft undercoat for chainmail armour and plate armour."},{"id":"fda4de4f-3528-4d98-a8bb-d39318a130f8","name":"Knight shield","desc":"A battle shield made of wooden planks joined glued together and covered with raw cowhide. Usually its outer side is decorated with the coat of arms of the lord or other symbol by which the warriors can recognize each other in the heat of battle."},{"id":"fddaec6e-f86d-41fe-8d58-86a816cc9f91","name":"Wolf meat","desc":"Only eat wolf meat in an emergency and always keep it in flames for a long time beforehand so that all the evil is burned away. Also, you must never eat too much of it, for then you may become afflicted by a bad disease or a cruel curse."},{"id":"fdee7fe7-2dd0-4ae1-8a50-e25ca7aa3a68","name":"Map left by the deceased","desc":"A map the gravedigger found on a dead man."},{"id":"fdf956c4-d349-471b-bdbc-9f3163ee2245","name":"Rosa's manuscript","desc":"A book of short stories secretly written in Lady Rosa's hand. The last part is our work together."},{"id":"fdfd6989-a28d-40bc-ac0d-882b4d1cf4f9","name":"Protective axe","desc":"An axe forged from three protective talismans. Hidden in the attic of the house, it will drive away every storm, fire and hailstorm. Well, perhaps…"},{"id":"fe0ee8bb-ad21-4091-be60-c8c176d47e12","name":"Maleshov tower key","desc":"I have the key. The question is what door it opens, what lies behind it, and whether it is wise to find out."},{"id":"fe365538-9abe-41ca-90e8-97e191662490","name":"Gambeson long","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"fe43bcae-b562-4c02-a484-390a784a1b90","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"fe64808e-a09a-49ea-a00c-14f8704f8027","name":"Narrow headband","desc":"A narrow headband, or also a crown, made of more or less noble metal, is usually decorated with semi-precious and genuine precious stones."},{"id":"fe6b84cb-29ca-4897-a380-ef5ab5573007","name":"Tournament mace","desc":"An excellent mace, which serves more as a symbol of a strict ruler over the tournament than for fighting."},{"id":"fe70a61e-1300-47cb-a284-fe73bcdf0630","name":"Leather apron","desc":"A long linen tunic joined by a long leather apron for harder work in the workshop."},{"id":"fe78bf19-30ed-4263-8c46-0cc26a745e17","name":"Godwin's personal belongings","desc":"A bunch of Godwin's stuff, I'd rather not open the bag. Who knows what I might find in there."},{"id":"fe802bee-4e06-4cee-b2b7-bd5ab23d8639","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"fe8e189d-842d-44c0-b81a-c89811aa6529","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"fea86fd0-adeb-45e1-b21e-2948db98887f","name":"On the Composition of Alchemy II","desc":"A skill book on Alchemy. Can be read from level 5 of this skill."},{"id":"feb2c247-611c-412e-8acb-c85f027f4fa3","name":"Embroidered hood","desc":"Either you have someone skilled who likes you, or you just have to pay extra for the embroidery."},{"id":"fec4d2a9-e82e-40b8-b762-004060c0d979","name":"Bonnet","desc":"The tied cap is worn by women and girls not only at work, it is also a sign of their status. According to the custom of the time, married women should not be seen in public without their hair covered."},{"id":"fececd0c-712b-43be-8ce2-0acd91f7d971","name":"Copper plate","desc":"Two out of three pieces of copper ware were made from copper mined in Falun, Sweden, where a large copper mountain is said to be located."},{"id":"feea3905-8f49-4098-83b5-7f5a572a45a8","name":"Cuman chief's bow","desc":"Cuman riding bows are one of the lighter bows, easy to handle even from the horse's saddle. Their strength comes from the layering of different materials similar to better crossbows. This bow is a true masterpiece worthy of a famous Cuman chief."},{"id":"feed8566-ede4-4096-95a5-3518ee0dbb50","name":"Sunken chest key","desc":"The key I found in a skeleton by an abandoned cart on the riverbank."},{"id":"fefb708a-289c-4153-a989-6559478f4350","name":"Riding waffenrock","desc":"The Waffenrock is a loose outer garment, usually linen, worn over armour. It carried the colours of the lord, town or ruler the wearer bore allegiance to, and as such was the precursor of the military uniform. It also protects its wearers armour from dust and harsh sun."},{"id":"ff0b037f-7325-4ec6-9b04-3bdd224c550f","name":"Sapphire ring","desc":"Gold ring set with a small polished sapphire."},{"id":"ff0e9782-252b-4cba-8931-62b0ff08bd21","name":"Astrolabe","desc":"An odd device full of cogs, dials and other mechanisms I know nothing about. I hear it's called an astrolabe, but that doesn't tell me much about what it's used for."},{"id":"ff13ef87-dedc-4dac-98a7-bd8b0b616f5c","name":"Undigested skull","desc":"A skull pulled from a pig's innards. It's been chewed on a bit."},{"id":"ff1994fb-a737-4e68-9dc4-7f1ca47a9168","name":"Map of Kuttenberg underground","desc":"A map of the Kuttenberg underground, which has been used for not entirely honourable purposes."},{"id":"ff1a4d2f-efda-4ebc-a0d0-dc3e3e6fb132","name":"Weapon stub","desc":"The remains of a weapon. It used to be useful, now it's useless."},{"id":"ff25cae9-7182-4d55-bbb0-0706404e5b69","name":"Dog meat","desc":"Raw meat from a dog. It doesn't sound good because it's not very good. But it's still better than trying to eat shit. Actually, it might be wisest to fast."},{"id":"ff29ea1e-dcef-43bd-ab06-b454d7894ccd","name":"Bloodied broken arrow","desc":"I found this bloodied broken arrow near the place Natan told me about. Maybe Mutt can sniff out its owner."},{"id":"ff2e6856-f5b7-45dd-9690-bb0fea117fa3","name":"Sketch – Executioner's axe","desc":"A lightweight, well-forged battleaxe. The blade forged to a point replaces the spike, which can be used to cut through chainmail and the belly underneath."},{"id":"ff44440b-aeeb-409a-9830-4f29d7feabbf","name":"Dried boar meat","desc":"The taste of a poacher's long winter evenings."},{"id":"ff5d03fd-5e8f-4e4d-b5e7-8b19b6274c32","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"ff67dd26-5f5a-4850-b700-7f2647ce4024","name":"Vejmola's medallion","desc":"The Vejmola's medallion. It flashes so brightly that no magpie can resist it."},{"id":"ff74a5d0-86a3-4233-bbe9-2b56b104d28c","name":"Halved pavese","desc":"A skillfully painted riding pavese."},{"id":"ff7b2eb9-7cc5-45ad-b48f-551fc71658eb","name":"Vagrant's boots","desc":"Plain, ankle-high lace-up boots with a raised toe, suitable for wealthy travellers and poor vagrants alike."},{"id":"ff81bd2f-7d4f-468d-a984-cc0d32764050","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ff889521-56bf-4195-b31c-9ff599fcb02e","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ff8f8351-c909-4f46-8d3e-b1b8acc1460f","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"ff989889-6efc-48f4-8fed-886ea407714c","name":"Training sword","desc":"A wooden longsword that can bruise but not kill. For those who are serious about swordsmanship, this is an invaluable tool for practicing."},{"id":"ff99e988-8b42-432b-b08c-1436e8f1039d","name":"Work headscarf","desc":"A work scarf hides the hair and protects it from dirt. According to the custom of the time, married women should not appear in public without their hair covered."},{"id":"ff9b02d2-9021-49fa-b45c-70e3488215cd","name":"Broken shield","desc":"The remains of the shield. Good as firewood."},{"id":"ffa8c4dd-5d4b-4fbc-ac40-38b50536b454","name":"A suspicious bag","desc":"What might be inside?"},{"id":"ffcc5e56-e448-48e0-b33d-8210e9431478","name":"Beer tankard","desc":"A discarded tankard left at the baths after a great celebration."},{"id":"ffd03165-2eb7-41b2-a11a-c3cecc19c123","name":"Noble chaperon","desc":"A chaperon is originally just a hood worn backwards, transformed into an elegant headdress by means of a special harness. This one is tailored to the best cut of good cloth and would therefore not be lost in a royal court."},{"id":"ffd9af7c-d24d-4e70-8c25-ad22a37a64e7","name":"Soft shoes","desc":"Soft comfortable shoes made of fine leather give the wearer the confidence that his steps will be less audible. Which sometimes comes in handy."},{"id":"fffab57b-ccb8-452b-ab1d-5bb259c334cd","name":"Christian's safe conduct","desc":"A letter of safe conduct entitling the bearer to move around in the royal mines near Horschan."},{"id":"fffce133-8738-4bc2-a300-02f3e0a1be31","name":"Frilled veil","desc":"Veils, or also veils or shawls belong to the everyday clothing of married and widowed women. They are most often white or light-coloured and are fastened with pins and brooches."},{"id":"fffeaced-bb1c-4a0d-82d1-02c069b1883b","name":"Lord of Suchotlesky heater shield","desc":"A heater shield with the family coat of arms of Sir Peter of Suchotlesky."},{"id":"1e283d52-3d33-4324-ad4c-6dc936624796","name":"crossbow_lever","desc":""},{"id":"1e283d52-3d33-4324-ad4c-6dc936624797","name":"crossbow_goat_foot","desc":""},{"id":"1e283d52-3d33-4324-ad4c-6dc936624798","name":"rifle_ramrod","desc":""},{"id":"373bb32d-ea3a-40a6-8529-db8a33aec14e","name":"rifle_ignition","desc":""},{"id":"3c3b3ce1-f12b-4a11-afbb-89b9f3d60496","name":"powder_flask","desc":""},{"id":"494ed6dc-51b9-444f-8055-3116e08a5329","name":"Door and chest keys","desc":"The owner's keys to all his doors and chests."},{"id":"5ef63059-322e-4e1b-abe8-926e100c770e","name":"Groschen","desc":"Groschen, Groschen, Groschen\nMy silver cushion\nIt's a merchant's world\nGroschen, Groschen, Groschen\nIt's my passion,\n now my goods are sold."},{"id":"b54eaa25-f0e9-425b-8b29-1fb14a71de56","name":"Bunch of keys","desc":"All the ordinary keys to the doors and chests in one nice bunch."},{"id":"bd20bdb4-4c50-4610-b023-30ceac635e7a","name":"Keys to the shop","desc":"The key to every chest and door in the shop."},{"id":"bd23c1b7-69a5-44ac-a705-190d20a2619c","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"d45d8a3f-1292-4310-9b39-8f811f0ea5f6","name":"A book by the Wysoka parish priest.","desc":"A book by the Wysoka parish priest. He spent many years working on it…"},{"id":"dce71bd0-4397-4d00-8a01-1e734a8255a6","name":"Uncommon die","desc":"Test die."},{"id":"157697b8-f618-4856-aea2-3b3cba06c1d6","name":"Brunswick's bascinet","desc":"A large bascinet decorated with a gilded lion statuette, excellent for jousting tournaments. According to legend, it belonged to the Bohemian prince Brunswick."},{"id":"1ffc3ad5-4d06-4dfb-b384-bcd45edf37f3","name":"Warhorse pourpoint","desc":"A fitted quilted coat that honours the colours of the Lords of Warhorse. It is suitable as a base layer under armour, but one need not be ashamed even when wearing it just as it is."},{"id":"24e62c1d-a52c-4a07-8cde-cdab9c833adc","name":"Master huntsman's gloves","desc":"Hunting gloves provide a good grip on a bow or crossbow and those who don't want to get dirty when preparing game can keep them on. Although this pair may be a little too nice for the job."},{"id":"25054826-ae61-4599-a070-c8ea6248e616","name":"Brunswick's chainmail coif","desc":"A hood complete with a small hook. Provides decent protection while hiding under a large bucket helmet. According to legend, it belonged to the Bohemian Prince Bruncvík."},{"id":"36099b07-dae2-4b7b-bcb2-5b580e872ec3","name":"Brunswick's dagger","desc":"A dagger worthy of a true knight. Its shape is perfectly suited to cut right into a gap between armour."},{"id":"3a55c3e6-fda4-4ef0-b2f4-920f91b1a4c5","name":"Master huntsman's hood","desc":"An essential piece of every hunter's kit, a hood it protects its wearer from the harsh sun in open clearings, cold winds on morning hunts, and prickly thorns while stalking prey. This one is bedazzled with pearls for good measure."},{"id":"4156f317-0e12-4633-a3dd-c01aa61d7f6f","name":"Shield of Autumn","desc":"You'd rather go hunting with a crossbow than with a shield, but this knightly shield with an autumn hunting motif will reliably protect you from the hit of your antlered enemies."},{"id":"448e8c3b-a420-41ff-af0f-b98d48784ea8","name":"Brunswick's plate sleeves","desc":"Full arm and forearm protection with gilded shoulder pads in the form of targets. This is simply the pinnacle of knightly handsomeness. According to legend, it belonged to the Bohemian Prince Brunswick."},{"id":"4bb60c3b-ce8b-4362-be61-a26903c823a8","name":"Shield of Summer","desc":"A Cuman shield with a traditional symbol of the hot Hungarian sun."},{"id":"4c3cc6f2-bcb7-4a20-a4ba-33cf0ae66325","name":"Nimrod's coat","desc":"Nimrod was the great-grandson of Noah, who, according to legend, possessed the mantle of Adam with which he lured animals into his traps. He is rightly called the greatest hunter of the ancient world. In the Bohemian lands, his name Nimrod has become synonymous with hunter or huntsman. This coat may not attract animals, but its colour makes the hunter blend in well with the surrounding vegetation."},{"id":"54ec9f69-6a42-44f3-aa83-836cc2e9a8f3","name":"Artemis' crossbow","desc":"Artemis - the ancient goddess of the hunt, but also the guardian of virgin purity, who can bring sudden death. So watch out!"},{"id":"5a6caaf1-2742-4c19-ba0b-ae214c0359b1","name":"Shield of Summer","desc":"A Cuman shield with a traditional symbol of the hot Hungarian sun."},{"id":"5eede8e8-686b-4587-85c2-a548d574aaa6","name":"Warhorse bascinet","desc":"An older form of the bascinet with a removable wide bretache, complete with a chainmail aventail protecting the warrior's neck and shoulders."},{"id":"660a39ee-f440-4dd4-a412-4b89d1bad7f5","name":"Warhorse waffenrock","desc":"This waffenrock makes it clear to everyone where your allegiance lies!"},{"id":"71ac5966-90bf-4406-bba9-6c75f81ac20f","name":"Cutpurse's pourpoint","desc":"It's good to dress light for an event, but you never know what can happen. This pourpoint provides at least basic protection while allowing you to remain unseen."},{"id":"726e092e-a46c-4909-9342-c86e9138c5bc","name":"Shield of Spring","desc":"A true knight wields a rose more often than a sword!"},{"id":"7a06af38-c6e3-4aa5-ab40-eaa3435f62e6","name":"Warhorse shield","desc":"This shield clearly displays the house to which its bearer gives allegiance."},{"id":"7c881eec-7585-44ff-83a2-d44eddf55a3a","name":"Master huntsman's boots","desc":"You need proper footwear for the forest. The hardy hunter will find the terrain challenging. Treacherous rocks, slippery mud and miles of forest undergrowth."},{"id":"7d75cb36-a8cf-47bc-9561-2d14f8a07a17","name":"Shield of Spring","desc":"A true knight wields a rose more often than a sword!"},{"id":"80cb6275-db4a-46a1-91d3-f24a5f4dfe88","name":"Cutpurse's hose","desc":"Where hands fail, strong legs must step in. These pants won't help you run any faster, but at least they won't give you away when you're hiding in a pile of manure."},{"id":"86eb09e2-7dcb-4c46-a357-a70c3749ba33","name":"Cutpurse's shoes","desc":"Neat hands and quiet footwear are essential for success."},{"id":"8f0afc06-e359-4371-b1ce-a312f5d4aa64","name":"Brunswick's brigandine","desc":"A masterpiece from the best armourer. The folded armour is assembled from a number of small hardened slats attached to an upper vest of the finest cowhide, which is covered with a precious fabric of excellent quality. The best protection and fashion taste in one! The armour is said to have once belonged to the legendary Bohemian Prince Brunswick."},{"id":"90c3b622-1c1d-4bd1-bee7-6b1c04072c5c","name":"Warhorse shield","desc":"This shield clearly displays the house to which its bearer gives allegiance."},{"id":"9403ad41-7eea-451b-836f-32ba034ef3bb","name":"Warhorse gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"954afcac-c0ab-41ce-9e37-6a7fb4e55b1e","name":"Warhorse plate leg armour","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"96981577-61e6-4e10-bb01-c3cb879aa920","name":"Brunswick's plate leg armour","desc":"The perfect leg protection made of hardened sheet metal that not just anyone can afford. The legendary Bohemian Prince Brunswick himself is said to have worn such armour."},{"id":"9f5b2c66-ad53-4583-bd2c-6c2f78eced90","name":"Shield of Winter","desc":"For a proper totentanz of your enemies, the death figure on this shield will play some serious totenmusik."},{"id":"aa11269e-ee54-46e0-b7c7-1efc50d7bcb8","name":"Brunswick's poleaxe","desc":"A knight's battle axe on a staff. This is exactly what George the Lion of Wartenberg wanted. In the end, I made it according to the lost instructions."},{"id":"bfc06521-05ed-44cb-a022-88be09a2dca7","name":"Warhorse tournament caparison","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"c052fb20-9f20-4ebd-8b7f-8ff937ee11b0","name":"Brunswick's gauntlets","desc":"These aren't just perfectly forged pieces of sheet metal, they're works of art! It's said that Prince Brunswick himself wore such gauntlets."},{"id":"c1d85298-9cca-48d3-b553-454a32eee00b","name":"Shield of Autumn","desc":"You'd rather go hunting with a crossbow than with a shield, but this knightly shield with an autumn hunting motif will reliably protect you from the hit of your antlered enemies."},{"id":"cd694cd7-caec-47ca-810f-1e00fc402621","name":"Broken polearm","desc":"The rest of a polearm weapon. Just add a bucket for a head, some old rags, some other junk for hands, and instead of villains, the poor pole will be scaring away crows in the field."},{"id":"d172564b-6b94-4df5-93df-84093a657f42","name":"Cutpurse's hood","desc":"Ordinary people wear hoods as protection from wind, cold, sun and rain. But some people wear hoods to protect themselves from the eyes of other people."},{"id":"d4fb7944-20da-47b1-bf93-03bc58176793","name":"Brunswick's caparison","desc":"A cloth hood covering the whole body of a horse which, according to an old Czech legend, belonged to the brave knight Brunswick."},{"id":"d7d3aedf-76e2-43db-96cf-2135dc4436bb","name":"St. Hubert's hat","desc":"Legend has it that while pious people rushed to church on Good Friday, Hubert, the oldest son of the Prince, went hunting. But instead of prey, he saw a majestic stag with a glowing cross between its antlers, which spoke to him. After this incident, Hubert led a pious life - so pious that he was eventually canonized and became the patron saint of hunters."},{"id":"dacee2bf-6394-47b8-b7b7-175cd9a60b94","name":"Warhorse boots","desc":"They're just ordinary shoes, don't look for the brand on them. But what kind of set would it be if it didn't have shoes?"},{"id":"ef7d8509-667b-4d7f-920c-b22fcf646e18","name":"Cutpurse's gloves","desc":"Bare hands are best for delicate work, but sometimes it's better to protect them at least a little. And then thin gloves made of fine deerskin are ideal."},{"id":"f1a530c3-ab08-44dd-a67c-1f099c546063","name":"Shield of Winter","desc":"For a proper totentanz of your enemies, the death figure on this shield will play some serious totenmusik."},{"id":"f2813ad4-32ed-4bdd-920c-2ca7fbec4e7a","name":"Warhorse brigandine sleeves","desc":"Arm protectors consisting of overlapping hardened slats hammered on cowhide leather."},{"id":"fc60850a-a266-421c-be69-6839787f56cd","name":"Alluring wreath","desc":"Wearing a wreath is the domain of single women. But it can look nice on a bachelor, too."},{"id":"0094cf41-f12f-498e-ac87-9c6206263c70","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"00acd76f-fdbe-4552-bffa-6640832af8e3","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"010dace9-e80f-49db-b744-968a2a05b3ed","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"013be77f-e0e9-44d4-af3a-8888ebc0d6fd","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"02de7fc4-7679-4fd1-925d-36683b2bd9a1","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"03319c8e-1096-4ef0-80ae-c52de29a9fbb","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"06b506d2-11ea-45a5-b70a-f36e91e002a5","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"072c4a0f-3efc-4c9d-9ea0-cf9b577477fd","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"0757f25f-041f-4467-832f-9d3dc838a868","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"08488293-63b5-42c6-803a-8d547d425925","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"088ce19a-dac6-4243-9055-3f6b8319503e","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"08a87c78-3761-4a04-a693-1226c56b0766","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"08cd152e-0a78-4119-930d-64762e3605b0","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"0a01129a-00f2-455c-ac7c-3a69922b8f56","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"0a5439f2-0145-4eb5-9301-f3d2f614dc53","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"0a768dfe-859f-4db8-9ce1-18ad29b9206c","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"0b38b046-f80e-4941-8c85-af9619cc3313","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"0b51c334-71e2-4c20-bbe4-ba7d4037d25a","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"0bce901c-6370-45f8-abde-3513a566ac5c","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"0c044d3b-508e-4da2-bb9b-e57f7e457827","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"0d7bd42b-f495-4ff6-80a3-ef99475d583e","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"0f517dbf-ae9b-44eb-990c-e941e8151596","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"0f8c83fe-3516-42cc-9034-32a8d072132f","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"0f929cb0-58c7-44a7-9df7-0b4339070bec","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"0faf833f-8e88-40a0-87b8-2669c0e64c03","name":"Knight's horseshoes","desc":"Honest horseshoes with studs to help the animal achieve better speed and grip."},{"id":"0ff0a7d1-8f34-4e5f-a71a-5d83faf890ca","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"1017710d-9585-4416-9a14-92c271ff0077","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"10378077-c05f-4fd3-ab2e-627a969e51b3","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"104567b2-f6b0-4726-99b8-bf052a1e8ce1","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"10aa607a-06eb-497f-86cf-3a5afc931657","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"11084379-c94c-4a8b-bfe8-5b6214b9c890","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"1144ac54-351f-44d2-a713-a525f5d1fd19","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"11f99643-7fc3-4ba3-95ea-178467c3ec75","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"12427009-3f05-45f4-81f4-c8163b3a8543","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"1265d185-9915-4509-8536-bef531fb6164","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"132977d7-bfe2-466d-ba43-f7328beb8f86","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"13b7e805-3c51-4c0e-93f2-de54d2e46e5d","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"1436c206-4208-4215-8402-896e87791cb8","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"14b87250-c51b-43bc-b8af-abaa7e192102","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"153b4fff-7a69-4425-bb31-fa74034f5d78","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"155571e4-ff66-4f2b-848a-01f78ed44b4b","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"156d7c44-9882-4951-a1a5-bb6717a665e6","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"15bcd913-3ce3-4ab7-82c5-16a9ee61c286","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"15fbc2fb-af46-4765-9ffd-0ed63f596b3b","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"17032eaf-2ff4-4803-b671-79eaccaa4743","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"185f823e-5e4e-42ee-a8c3-9c995bebad88","name":"Rattay harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"1ac8e65c-6154-4884-a03f-7ec679a6b036","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"1b23dccf-4b1f-4156-9441-f438dd662244","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"1ca6a63a-0522-42b1-a60a-e8295a0c03f1","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"1d979689-a035-44d8-adad-4e6068a74714","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"1da7e68f-e06d-4417-bac8-901350da15b7","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"1dcc68e2-20d6-44da-bf31-fd5ccf16a1fd","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"1dd2863e-0793-49ba-bb82-125af6b31ddc","name":"Lovarian horseshoes","desc":"Horseshoes designed by Romani blacksmiths called fierari. The rider can expect a generous increase in his horse's speed."},{"id":"1e0ac4a2-00f9-4d50-b80e-0e3033bf12ba","name":"Caparison of the Lord Ruthard","desc":"Cloth hood in Ruthard colours covering the horse's head, neck and shoulders. It does not make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"1fa14c25-19b0-455a-9fff-592a3fddf336","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"20060d35-0347-4ee7-b1b5-06766d6f5285","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"215b3118-14aa-4576-ace0-e14c96785314","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"21f1f549-1bbb-479c-8368-0ee986dc7636","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"236a25e6-232a-431f-9541-7b4bb3ac41b6","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"23cf705b-f472-4fa8-a623-ed6ccf36e022","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"23daff23-428c-42a1-bc43-7ba432f58423","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"23f1afa6-51b3-4053-81d3-e1b64460a8c8","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"2426bf31-8534-4d37-9b5f-447cd0a0eb63","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"248f40f1-4213-44b6-93b8-d0ee04dc4884","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"24f9ef85-28a0-40df-8733-fd670a072b3f","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"257d653c-1aab-4121-a684-c88f91ed93e2","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"25c4d2e8-2368-431d-86af-b8c10c5c79ae","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"26566627-402c-4d3f-adf8-2aa205194b0e","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"27467b6f-a8d8-498b-9297-b8eaba69e80c","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"28855f6e-c16a-473d-b16f-43ce0b23b49b","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"288d5d7e-e87d-457e-a174-04f31cf66d71","name":"Tournament caparison in colours of Leipa","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"2913fe30-7252-475d-96d7-5ee408fd38df","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"2939fb92-50f8-4ad0-9afc-deba97a38a1a","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"29935052-4849-447f-938e-3b84348cd6fe","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"29f86d3a-4bf2-4c0f-b177-94fa7027b23c","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"2a119cb9-20a9-466a-982b-645b6fc733ac","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"2b2a3572-38a6-4787-aa58-2ee4ee00cab0","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"2b714d8b-8753-43f4-a82d-8cfe414d3dab","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"2c972710-02d1-41e0-83cd-8de8f9bc7216","name":"Caparison of the Lord of Semine","desc":"Cloth cape in Semine colours covering the head, neck and shoulders of the horse. It does not make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"2ca11fcf-c0a1-4424-97cc-9538c3a5be7c","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"2d0b520e-a7b1-499e-bbb9-82b0dc76fbd2","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"2d604b81-801d-45fe-ac88-0a2eae2dbb38","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Hague harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"2dd6589c-5067-48a5-90c0-e6f07a86738e","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"2e062fed-74d0-4c00-b566-56a64be719cc","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"2e343e8a-2c21-4794-8c7d-7ee11f720676","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"2ec3b1c1-bfbe-4dad-81fe-da4a573b004a","name":"Executioner’s caparison in colours of Leipa","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"2ef6ca4c-ea3d-45ce-923c-42d084ae6bf9","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"303572e5-fdcf-4241-a710-f557fa51c6b2","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"308cfc8d-64a7-4726-8539-48f878e31733","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"30e40e6d-6bc0-4543-98e4-f1e0d9678bc9","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"31c45b42-342f-4372-bdaf-02507111a92b","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"32432cd2-9f55-4107-984a-091755410155","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"3350f93c-2b8b-4c83-ae3f-9e85cd67497f","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"338edf6b-d128-4ee4-afab-d7869fa22873","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"34168b55-f1d6-4f52-9f2c-d1373a8b4269","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"34758735-e07e-40e0-9c04-9665106331c9","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"34b86ba5-95f4-449a-9f9c-df5f13ff938a","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"34f3b6e7-f251-4199-b86f-c8782c8a7758","name":"Tournament caparison in colours of Leipa","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"350373bb-ea1d-453a-b7c0-9f4a135a9c9b","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"353e4bb0-d365-4281-8a47-a5ab9d694c62","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"35a5693e-891a-4239-a8a3-dc35cdf84574","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"36694031-e85d-4547-8054-5e67b51aa8fe","name":"Skalitz caparison","desc":"It may be just a caparison, but in medieval society, a left-handed child needs to show that at least one of his parents belonged to the nobility."},{"id":"36b6f37d-41e3-4899-9335-f83dff408f25","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"37140c46-727e-41a6-afca-2eebccaf4616","name":"Executioner’s caparison in colours of Leipa","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"37686ce9-e122-4a41-b4d5-926cae9ef74f","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"3793a429-6d49-4542-a263-bd6f16425790","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"37ca1d69-60dd-476b-a488-43b266c51c9f","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"381c996c-7c8b-416b-a217-5fbb483b22ca","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"38524c97-f740-4e37-b65a-ea332e3e4385","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"3a098596-5bb6-405c-b7b5-70cdff8db673","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"3a7911af-8a5b-4038-890a-90cd4f66c1a4","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"3a865dd3-3380-456a-9818-7b96efe83876","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"3a87205f-5988-4d46-9ed9-83e2e19b7731","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"3a8dc292-52a2-4140-82af-eaa8737a52e9","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"3ae53d22-43b5-47c8-9486-de739e4eabde","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"3c28bcae-6724-4465-aa60-3b0364450f34","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"3c865190-3414-4fd0-8a1c-3d8e018209d1","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"3cb68c2a-dccc-41be-8515-626ed0756b97","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"3d44de66-b34c-476d-98eb-f280b07d88c0","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"3d70fc92-440d-4177-85e1-6c702d185059","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"3f19b164-cc5b-4444-b7ef-6a0da1fe960e","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"3fed5dda-18f1-4e5e-b1f8-471a0f7d1241","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"401abd48-c45c-4df3-ab8f-ee4f5be626db","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"4146da70-95fe-4776-9ce5-6bc54ebaa566","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"43f00e08-e8c1-462c-897f-447ad7ab37f0","name":"Rattay bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"444cccd2-fc08-4800-8255-cbb19427aee0","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"455154ff-87a2-4892-a001-80708edc0f46","name":"Executioner’s caparison in colours of Leipa","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"465c20ef-f2fa-442e-9de0-6343ca7b5ff4","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"46eec158-6f24-4914-83c0-1443b37ebbc2","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"477c944b-27cb-4d76-99ef-4f7e6b7eb1e4","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"478b934c-025e-4313-acfc-bc1e699d1a95","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"47c73480-49b4-4788-9a2d-065fbdb7e563","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"4934fb15-73c4-4b71-912a-9bab78a53f66","name":"Racing horseshoes","desc":"Flawless horseshoes that enable the horse to reach the highest possible speed."},{"id":"4967ecb7-3dae-4390-a9a2-6a0f08a4b92e","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"49d08322-10f6-4f56-b9ae-ceb8b62d5c52","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"4ac37359-e55c-4dc9-a39a-c4b70ad5c29d","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"4af690ff-f83b-47d4-a551-449cf7270021","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Hague harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"4b324fef-6385-4a50-b355-f73e797dc657","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"4b59331b-2dbe-4831-ac2a-4453935e4342","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"4cbec1f9-335e-4ad2-822f-12771f82ad68","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"4d5634b0-bd29-4432-89f5-93929b2ffc86","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"4d8c778d-144a-4bd5-9163-70d7ecd24338","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"4ed167e1-9712-464c-9b34-032ab10b3b20","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"4ed20d32-2ae9-4eae-8b66-4f017eeb59ab","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"4f4ddea5-1c57-463e-bd48-6148fb02f23b","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"4f638b4b-adb2-4782-b3de-0bb93ddf8429","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"4fbe6287-9b35-4608-948c-ed5c487d726f","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"4fc291cc-93e9-4a92-ab43-41e0f3dcd09e","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"505343b8-b5ff-4f47-94d9-470a1977a421","name":"Damaged leather bridle","desc":"A bridle, in which a whole crowd of horses must have taken turns. Looks like it's about to fall apart. It won't do the horse any harm, but it won't add to its speed or stamina."},{"id":"50bc4d3d-7e67-4a75-88b6-c94bdf9630bd","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"51636329-c3b8-489f-ac74-a10993153063","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"51b5c2ca-be2b-4e8d-9022-17ab74a63523","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"51cbe92d-f11f-4475-bf76-2d5a04626ae2","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"51e7f495-3abb-4a64-a19a-863afb9e0c4c","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"51f8ae21-65c9-424f-b0ef-3ab7453714a8","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"5201189d-794d-4c2b-8bcb-7a9a0c861b5d","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"52015519-f75a-494e-8487-327169c844de","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"52379cdf-9749-423e-815d-c1e5591f3ed1","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"52774f52-cd99-4783-a864-a19aa3dca586","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"527ae1dd-fd0c-4c6a-8ff3-5cc4ce2ca401","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"52bae50a-2cc3-498a-8736-04ac6a31fd12","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"531bdc22-0cf3-47a8-9565-d20f8d6d263e","name":"Executioner's caparison quilted","desc":"Thick quilted hood covering the horse's head, neck and shoulders decorated with crenellations. Makes the horse bolder and braver. It does, however, slightly limit his speed and stamina."},{"id":"538d406b-3706-4e12-8cc5-48078a1d52cc","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"53a6b283-0ad9-48da-ad2e-c5537ee64cd4","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"53b03774-0e9e-471c-a546-dc8e2cf77436","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"54741398-b9b6-4e1e-8280-793af804cbf1","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"549ab26e-df73-43d6-ac9b-f4f74afec67f","name":"Farmer's horseshoes","desc":"Horseshoes that are the result of the efforts of a novice blacksmith. The rider will hardly feel the acceleration of a horse in these."},{"id":"54bfe970-e84d-453d-9fd0-8da0eaa178a7","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"55a4a336-9617-4f9d-b4a3-c98d263da72e","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"55d6ad0e-011e-4a3e-93ec-1c7f582edf63","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"5643a2b2-7400-44a9-8022-2f30f094e75b","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"56e54c14-e049-4473-8a9d-27106dbf5bb9","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"5740fe7f-019c-45e7-b220-b21b2ac9bd17","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"57ac2f43-bcb5-4b5c-a2b8-8a9be75bfb46","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the animal except its head and neck, decorated with embroidery. It makes the animal considerably bolder, but slows it down and limits its carrying capacity."},{"id":"57c34487-7433-4d5a-92d8-fe680bbd5a86","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"58f79fdd-143e-413e-a72f-71bcf3cca192","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"59015337-0b25-458c-80dd-b35af648a599","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"592428d2-6e56-406f-b917-899024ee4427","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"596212ea-ce9b-4b8c-af09-278ae2d834bb","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"5979f0c3-bf55-4bd5-9d91-f4dc08902257","name":"Caparison of the Lords of Leipa","desc":"Cloth cape in colours of the Lords of Leipa covering the head, neck and withers. It doesn't make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"59823877-63a1-4e97-8c5f-e3e5db024823","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"5ae64694-f455-411a-a33d-dfc91c95a199","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"5b7fd800-e9a2-48a7-97d1-3afd561dea39","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"5b832791-6195-4b8f-895b-8ad85f7fa5b9","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"5bb37b12-c268-4abb-bb83-f31e8631ec79","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"5c93de8b-a82c-45ed-9d69-466d71d5056f","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"5d5dad3d-3f5f-45c2-a066-f7d001c0857c","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"5dce98d4-971d-48f8-89cb-aad53bd70af5","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"5ded1ff4-9f81-4179-bb65-f786e6e80560","name":"Nobleman's horseshoes","desc":"Great horseshoes for a noble steed. The horse will reach almost the best speed with them and they will last for some time."},{"id":"5eb8fd68-bfc8-41e9-941b-a29ea5b7429a","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"5f2ae2c5-b557-4399-a01e-4d7de16bfa49","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"5f4e4f67-794c-467c-9a30-a8436b5cad5a","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the animal except its head and neck, decorated with embroidery. It makes the animal considerably bolder, but slows it down and limits its carrying capacity."},{"id":"5fdac6a0-470b-4020-9b13-d94f90a969a5","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"61d0e35a-2c53-4646-9852-f097d229bc56","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"637a1bcc-a03a-4733-98b0-df7be1ef6d18","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"63a38e69-225a-4d82-91ee-20018557d402","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"644aeef7-5230-4912-a7d7-a021e5674df6","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"6454ac78-049e-441c-80de-7e5e7263b913","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"65525bbe-86c4-4d36-8869-f4cdb309532f","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"662663b9-61ae-4378-a2a6-b3c82beea544","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"665005e3-8f19-477e-a10c-6cb665ce1df9","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"66be7eb2-923e-4d8d-9652-49b0563141df","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"66c02e00-86a3-49ee-94d6-6b007e4fb7b3","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"670b8480-23f6-4f37-818b-80d4c1143d53","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"6766fb76-17ac-4acd-ac87-4e47b949b997","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"676a72d3-c088-477b-9fd5-47c0c65d18fb","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"67878a6d-91b7-4ba2-9fec-939496d61b38","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"68204d36-5d4d-412e-9b37-8bce360952f3","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"6896df33-18f7-42c0-ba5e-108a5ea07f38","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"69aa0f16-b6ef-4cd8-affc-a6c5e1a20331","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"69e4929c-b5d6-46b0-a36e-92829fbc898c","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"6ae2fa40-7ceb-4067-99ef-54a86a7c6b2d","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"6bbc8afd-602d-4181-99cc-4b5cdd64cf44","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"6d712946-f8a0-4b51-b863-c21812413427","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"6df3efcb-27f6-41fe-8ca4-5105c9a1a6d3","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"6ebbf914-5917-4ce0-850b-caf2c04f6562","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"6f04d4c1-d6bf-440b-a199-f6a081843558","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"6f3c3b10-687a-480c-93dc-771b063250c6","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"7084e3e7-a865-47bd-823e-0de2c4ac5c08","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"7093c5df-79d8-41f3-9e9d-f3227072b875","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"71d13987-b003-42c6-85ba-f565b7662b98","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and completed with a Mainz harness. It makes the horse bolder and stronger, but at the same time limits its speed and stamina."},{"id":"7281b200-ed5b-4f8a-8ad2-4be277437ca4","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"72a1c5f5-0732-4395-a7b6-11075a43f770","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"72b01b0c-fae2-4f5d-9bac-4ec905586767","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"72eb952b-3354-4e70-8c54-5c9a33fb9f91","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"73634299-2c72-48c6-a986-feb001cf8e08","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"741b60fa-d7e2-44f4-86bf-925c3d12be9d","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"74c05b8b-6461-4e24-a344-99a48197c503","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"74e56615-5cfb-458b-bc73-95bab7d81ebe","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"75d84292-9fe6-4878-a646-8482194b8bed","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"77d38e9d-a374-4a16-930f-b5ca6bd86f49","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"77d53928-9c9f-44a0-9f60-a50d4751b78d","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"77f4d779-aeea-4937-a36c-74d17eb2cb15","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"787f1371-f5d7-4a85-9acb-f1543ef11237","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"78ba17e5-2761-4f59-b2f2-c6af88547f74","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"796890cb-0aa0-4aad-9cae-8c65c9eb752a","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"79c7e1fd-bfcc-4c26-b3eb-fb4f9be42ab8","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"7a33f459-476b-4e3f-92b5-5c6de67ea002","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the entire body of the horse, shortened above the knees. It makes the horse more courageous and strong, but noticeably limits his speed and stamina."},{"id":"7b0ddc96-1ac8-45c3-9f06-fca440c2fde6","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"7b885bcf-a60e-4722-baed-1601d6fafaf6","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"7d0c6354-eb5e-47a8-bd88-f5800cdef639","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"7d61ceeb-5230-46c5-a610-8b7ec0d7b091","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"7dc67d5d-30bc-4bd0-8f0d-210854390dfd","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"7dfc1c15-6452-4cf6-9d41-2ca7fb8a8252","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"80058304-bb23-45fa-83a4-e632d89c1938","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"8007b1d2-6179-49bb-a9eb-132bfc1b0ab6","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"8033fb08-2fbb-40fd-88a0-db257ea7409a","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"807a742a-8c89-422c-b0cc-64f8210558dd","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"81b4ef33-4e2d-4e0f-98d4-967c7352ab8e","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"82242945-dcc8-4b6d-aec9-e12b80ff6f29","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"82c19843-4254-427b-812b-53bf8a939845","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"83003a9e-8c50-4a48-976b-f9fde08145a5","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"84ef8a68-a21b-4227-83be-a3d69bcbe7af","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"8509c519-4a13-4b63-be62-182b9c392c1e","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"85983427-faf2-48e1-a700-2aa4da881e5d","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"859c486c-5eaa-4c84-8ef7-3b9b3338b6a2","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"85a133ab-cc0a-4106-a414-375e6b7f2af2","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"8631c168-3b26-4955-adc7-916753140f5b","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"871018f4-bad4-4f44-b29c-6c36e2a6dbcf","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"872ef517-59dc-4c56-a3d6-d6b363f400de","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"881032cf-cd77-4b76-b8de-d3cfac5a21fe","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"88455b1c-c518-4ebf-a637-90852153dddd","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"886aaa70-06e0-4617-a55c-5a3e5fdec2d6","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"88ad09e8-f339-4f9f-8b26-2572e58c5023","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"88b82d1f-dd8d-4546-b3fa-73d3f2356552","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"89001105-166c-4276-b92c-da1b6bb83805","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"891e6272-8792-435c-ad17-0f0d04fc4ede","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"8af9135b-2b6e-442b-a6c7-c9d8ea4530d4","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"8afad34e-877e-4e3b-aa51-787288c22e21","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"8b1bf03d-f100-4432-b91e-95de8ba06aec","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"8b6afb40-e9b0-4b82-afda-7c134a521d77","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"8c14ac92-cc83-45c1-82b1-6554183807a1","name":"Caparison sewn in Leipa colours","desc":"A cape of thick cloth covering the entire body of the animal except its head and neck, decorated with embroidery. It makes the animal considerably bolder, but slows it down and limits its carrying capacity."},{"id":"8ccab226-4038-4095-9ba1-5a3934db850d","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"8ce6b2ec-d2bb-45a3-bbd1-4574d293607c","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"8d345816-ec28-4f71-8fdb-79438308df70","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"8d8c6878-5e2e-4d05-8518-4da978492031","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"8dbd1400-754b-4e84-ba7d-5e0bb36401b2","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"8e9765b9-4cc8-4cbf-9013-873946960aab","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"8f750fcf-e720-40b0-ad39-ef1905c0b5cc","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"8ff7c154-4741-4a2b-bcd0-10c0e5043cc3","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"903e2f21-996c-487b-aa2c-ec31d246f937","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"90fa13dd-120b-43e2-b743-a03ed8e2cb96","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"9112f383-0216-42e1-a017-bff80f2e8d7b","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"911df0af-e8c8-4ff6-b487-a13f29cefe38","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"9253e9d4-41ba-4ded-bb04-5b6860f8ea57","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"928226ee-b328-4c29-b2aa-6a3aec846972","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"92f84b58-ae79-4429-bed8-de43c09e402b","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"93109d78-7b6c-4b26-b2cd-51aae8d0ea3d","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"93768d06-15a4-4d81-a69c-cc52f4329291","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"93c91306-67dd-446a-8d3d-67de866d97df","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"93ccb74f-8b86-41c1-8eca-7dbd8f2214f6","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"9443c076-6645-45c7-8b4e-551853339f52","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"94fdc2b1-95a3-4519-a1c6-093c2a854009","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"95144a64-4cbd-4166-baec-d5f02cef5285","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"95a500fb-89e3-45fc-a058-15335899b0bf","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"95d5e043-2bba-43dc-8897-4ea8c64ae68a","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"95fdc8c1-9c4a-4d69-b398-9708b1760478","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"966760b0-75c6-4387-ae57-8c5238f09df9","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"9671fc3f-0734-4866-8586-ff174189a59f","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"96a5ce7a-6c6f-45bc-b4ea-1c0a2e4cdbd3","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"96d902a0-3368-4505-a989-a040593910c0","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"96fd2a94-7570-473a-b4ba-7b64829247f7","name":"Caparison of the Lord Ruthard","desc":"Cloth hood in Ruthard colours covering the horse's head, neck and shoulders. It does not make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"972175ab-00fc-471b-ae1d-6d257a18ad58","name":"Caparison of the Lords of Leipa","desc":"Cloth cape in colours of the Lords of Leipa covering the head, neck and withers. It doesn't make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"976e5898-8d71-4d28-88a9-4c056fb7f776","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"978eff03-61a3-4b0d-bb19-33c10101754e","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"97c45588-7a43-432e-b364-913159035351","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"980969f0-fe14-4faf-9ab9-18b98762f518","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"98a01fba-7694-4f59-8e6f-0e68364bf850","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"9902f662-a748-4765-b78a-23b1fc91333f","name":"Caparison of the Lords of Leipa","desc":"Cloth cape in colours of the Lords of Leipa covering the head, neck and withers. It doesn't make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"9a91b09f-bcc2-4bc5-9505-7822f59826af","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"9a9fc522-c626-443d-85d9-2336f6cd62db","name":"Executioner's caparison quilted","desc":"Thick quilted hood covering the horse's head, neck and shoulders decorated with crenellations. Makes the horse bolder and braver. It does, however, slightly limit his speed and stamina."},{"id":"9b456bd7-f2a9-4603-a658-0d568a4c5094","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"9b80d61a-b073-42ea-9ec1-57d255b8e90b","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"9be0331e-e07d-4055-9c12-d16c91b80f37","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"9c4be44a-ddcf-4829-9cf4-71f0161c5108","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"9c6158cf-5f30-4aef-bcef-d665505c3623","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"9c6da684-8448-43d7-b28c-0a7ffa89e180","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"9caff0c8-3f23-4d5e-ae38-f20e8d0049c4","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"9d583a73-9102-417b-a6ef-317fc9c975fd","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"9e770c83-7d7c-4fa4-b7a2-35ea7ea1c1c5","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"9ebb6fb5-0c6e-4f4b-8ca9-c150666c56f9","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"9fc5c8ee-4b81-4e99-8b84-b2fa60b833b5","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"a024c830-5e59-4677-9337-10cd088ec636","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"a0f0411b-78f9-4e13-aaee-2db04706021d","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"a1e4191e-e8d7-40c9-ac8f-438ba7e8d6c8","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"a3ce6197-7b02-406e-9afd-e0da5828f506","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"a3d02b6b-e8ef-4727-8548-9bac4b627124","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"a3d98538-60f4-4051-9704-bd57aa9b5f7f","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"a5264a2f-8f6f-4de4-b80f-5db4f35ff9a1","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"a57afc93-b952-461b-8dfa-18ba1a446431","name":"Caparison of the Lords of Leipa","desc":"Cloth cape in colours of the Lords of Leipa covering the head, neck and withers. It doesn't make the animal very brave and the effect on its speed and carrying capacity is negligible."},{"id":"a5cebc2e-f901-4dcc-82f9-638ee0daa7a5","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"a5d6d4ea-7099-4590-b3f7-138a9660811c","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"a6855c72-1caf-4e4c-9ceb-c128f4b19d09","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"a77065c6-7bae-41ba-8e34-9ad7242c2792","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"a7863748-175b-4ff5-bcc1-77a914fe1068","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"a7d4c077-4813-4632-8e1c-4689ed792fe1","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"a8308a40-31ae-459f-8a93-d82de04efd15","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"a8626b5b-6d74-4e0b-b992-cee6922f0629","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"aa12cf71-7816-40da-9b1b-a5cef0874dda","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"aa2c10e4-145c-49bb-9e9c-afcdc3468fc6","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"aa4fe572-9442-4184-8dba-d8c91efd3700","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"aaee1995-16c8-4c35-af8e-f9f17f7f66b1","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"ab02705b-9c90-43b9-97f5-35ef70ebb595","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"abf99866-6deb-4de1-a9ba-ee0443cb0db1","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"ac74242c-a20c-4675-a27f-fa78e05b5fba","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"ace99cb0-6ec3-46f4-8226-2c5a3301342e","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"ae7eb079-4570-4f9c-8002-5de375d4421c","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"aecfd845-a69d-4e69-9cdb-49026eda4924","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"af0e44c7-8fc5-4186-a6fb-d2d57a563a67","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"b0102119-cab9-4d52-b473-f99a938ad083","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"b0f581d8-b787-4489-bb7b-b5fd049d1e43","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"b2350448-fdc8-4ac3-84dc-263a1a0fc64c","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"b2ceb731-81fb-43a1-a0d3-c21066d65a55","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"b2cff226-0f20-4bb4-be37-21b03d8b932f","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"b2e610f1-4c18-4fa5-8172-248470491aaa","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"b50334bd-3e7f-46a5-af8d-61373569fabd","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"b50bc28e-7a5a-4ec7-92a6-454800f158e9","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"b5869d5e-86d6-4648-9eca-abd536fbae7a","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"b5e1afb0-d067-486a-9d8e-0b4a278c43ee","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"b65ceba3-a532-45be-8d82-dc6a202f98dc","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"b6bd8d57-2d4c-442c-9a6e-522142af25ed","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"b6f33840-7bfe-4ce8-aa6c-5151207682fd","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"b7bf69c9-e0ff-4c43-a86b-461784805e34","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"b89ca515-a4b8-4073-b172-e12989df5ac6","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"b8b6e1ad-4f3c-4163-ae84-73a6462aea26","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"b9a5ba14-c3c5-41d3-bf74-ec68fee3c65a","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"bb05ba08-8f51-43c3-a51e-15339aa50660","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"bb84ffa6-211c-4fd3-9771-873f9f939dc1","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"bb8fd4b8-70dd-46d8-9d31-bb830b1e582f","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"bb97b80c-1f12-497b-9bba-66923c2b19e7","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"bbad295d-76a4-4897-a71c-52f950135473","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"bbfb564d-768f-4252-8998-91edcf2cab86","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"bc25c392-64c3-4e37-b1d4-4f96edfb6b0e","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"bda66810-1255-4c97-b179-3b1b03025591","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"bdd98236-3fd2-411c-8194-cfc6b5dfeffe","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"be99e748-2fca-4363-a102-d0d83343e844","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"bf06d242-4dcb-48e9-bbf1-b6a36f368a57","name":"Moglen saddle of poor quality leather","desc":"An old, shabby saddle, which perhaps the great-grandfather of Sigismund of Luxembourg himself rode in his youth. The devil must have owed it to him... It adds little carrying capacity, but fortunately does not slow down the horse."},{"id":"c06fb041-304a-4810-a29d-10a584141744","name":"Executioner's caparison quilted","desc":"Thick quilted cape covering the horse's head, neck and shoulders. Makes the horse bolder and braver. It does, however, slightly limit its speed and stamina."},{"id":"c0b3273b-5121-49ae-ae0e-95c35634ff2d","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"c0da574d-f21f-4d6f-916f-eeeca45d895b","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"c1238997-86be-4803-aa98-7b27eae9cd9c","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"c14ede14-3138-4d0a-8e32-b1d985fff226","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"c18e7087-592a-4eb0-a242-aa5630a50130","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"c195f864-5154-4df2-ac14-b552f9be8dc6","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"c1c03e61-2d2a-4ece-8426-426a52c58c14","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"c21df618-bf34-4532-9ee2-06e32914d732","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"c2749a78-ed35-4df9-a7e9-0942bc8ccc9d","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"c2e04911-14d5-44d6-9d82-e2ad0b7ced82","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"c3deaeec-4712-4e2b-bd95-20b3a8c2b549","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"c5d6da49-48b0-461c-b7ae-eb16b0599b15","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"c675ab1d-995f-4b35-aa8a-ba5b62dbe4a2","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"c68f7174-ae53-4d75-ac92-88c54eccc452","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"c8542eac-f3ed-4799-8cb9-e60d3ed84c85","name":"Bridle of the Holy Roman Empire","desc":"First class bridle consisting of a bronze decorated bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"c86b79b0-3214-478b-aac7-96ebe0be793b","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"c894d31f-95cd-446a-a4ad-d01fedf7b589","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"c92bf1cf-0513-4870-91ce-b96e8b6b95b1","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"c949589a-3cdb-4eb6-9504-37add6cddb81","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"c99cce7d-c007-4402-bfde-4b6a17fff4e3","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"ca154752-a639-4b06-9a19-2d6028352465","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"ca526ec9-d923-4cf3-a1cb-ced43bdc2f72","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"ca590f8c-5c65-4a56-ab70-acf8f6a2426f","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"cab8d2b3-ffe8-4341-aab1-eb4c7d020f21","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"caccef17-3530-4e16-9c1b-09f3972eb400","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"cafb850b-23a4-4a59-a500-4cd27eb15799","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"cb464bd2-9504-48b2-b8ac-de5452dd73b1","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"cbe3909c-1d76-4ef8-94bd-7c419ead48f9","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"cc358866-4314-4c97-80ae-d1849f6203ed","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"cc619b0e-2c49-4b2f-9029-163301396b79","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"cef0e663-7cf6-4984-a2a1-ca3a12400aab","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"cf252e68-842d-4e7d-a597-d07938c14439","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"cf32fddc-8d4f-4fb2-8efa-fbdfbf7de711","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"d07daf9e-46df-4347-9529-6492d74cf45e","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"d0864235-80e2-4077-9586-8316c95a3bcb","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"d18c67a0-e117-4530-86ea-514e67ce60fe","name":"Caparison sewn in Leipa colours","desc":"A cape of thick cloth covering the entire body of the animal except its head and neck, decorated with embroidery. It makes the animal considerably bolder, but slows it down and limits its carrying capacity."},{"id":"d1f96b94-2a78-4663-9d44-af5a39997d83","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"d31186b6-d0b2-4ba7-a387-95ffb8b0dd07","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"d358142b-ba22-422a-ac40-9f6613776bc4","name":"Mainz harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"d464f9be-c088-459c-aaf3-60beef6905b9","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"d51bb072-916b-4235-85d2-ddba645c1c93","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"d5e78740-a7f3-46f1-acde-b5a0976ebb52","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"d6da5adc-f3aa-4e20-b65e-903971bbe55a","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"d761189b-9ac2-4fa0-bdc8-cb59d1845957","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"d80678f8-7267-48d5-9868-56c2b17b2354","name":"Tournament caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"d842004a-b83f-4768-8551-a2fe0bbfe0a4","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"d859030d-12f4-4af5-babb-043839d20b71","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"d8738c2c-9a40-4393-a2a8-01e3ae5f3b3a","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"d9277418-34a7-42c5-8514-03e1f1d4850f","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"da93d293-ffa9-4841-8dd3-242a5b7876c5","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"da944680-fbc0-431f-ac4a-4a64c32e3856","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"dadc9db2-ff5d-4845-901d-fcf9504bcd4e","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"db7e8637-31de-4287-ad28-ee779ff4c25d","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"db9eb8f0-ba77-48a8-a657-91eaa1018114","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"dc2f0283-5570-462c-ba36-afab924034e3","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"dc7c6cb2-9a46-4499-ac63-e9af6633a1ff","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"dcb8c5a6-df67-4ee9-afb9-e59d86e855de","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"dd37d5f4-74e1-4ef5-a3a0-38682eef40ae","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"dd8ed70b-7225-47bb-886b-0514a1d9471f","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"ddba3782-b343-4bf1-9142-225b49e2c976","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"dddee287-f803-4e89-bb42-02c06d668f1a","name":"Transylvanian knight's saddle","desc":"Quality solid wood saddle with decorative horn, padded fenders and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"ddf60ba6-e7e9-4823-85fb-220ba1086886","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"dea605c7-2f09-4d49-af83-6224d036bc21","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"ded459e9-fb6f-4225-8d8f-2ff70300884d","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"df108cd8-72ad-45fc-936e-3cf26e793d0b","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"df55ebd0-b61c-4a82-88c6-0c20a2335e0c","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"dfb5ebaf-70d3-4db8-8eae-340a225bb452","name":"Halved caparison crenellated","desc":"A cloth cape covering the entire body of the horse except its neck and head. While it makes the animal more courageous, it also slows it down and limits its carrying capacity."},{"id":"e04237cb-356d-4012-b9b4-54981beb1c8a","name":"Moglen saddle","desc":"Equestrian saddle with bronze cantle, rosettes and leather saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"e09d7e78-7524-469d-ad75-d0d48d5d2d85","name":"Bravante saddle","desc":"A first class versatile saddle with bronze-lined cantle, decorated fenders and sheep's wool pads. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"e26ed0c8-91cf-4120-a898-1498856615ff","name":"Executioner’s caparison in colours of Leipa","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery. It makes the animal bolder, but it also slows it down and limits its carrying capacity."},{"id":"e28e1ff1-d463-4bd7-8f1a-1d06e76f9a27","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"e3d5498a-4869-476d-9edd-8561df9f2931","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"e576ae73-6422-46ca-9898-5e6f35f5c654","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"e6233a38-9ffb-4ca9-aa52-85d36361a438","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"e6352ea6-c400-4284-ae13-dc2c04e6ea4b","name":"Noseband bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"e6c56923-4062-451c-8a83-39aa76977b00","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"e6cc44a4-d5c3-4dfc-8198-d0a902f5d6bd","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"e6e2e301-8df2-41ba-b55d-935118da72f4","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"e6ea8edc-0c8a-4e93-9ba2-0b2c67cfd336","name":"Bridle with plating","desc":"A simple bridle consisting of a bit, plated cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"e72d851c-0da3-43fa-9433-fa8f60ae4bea","name":"Norman saddle","desc":"Saddle with slightly raised cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"e7c5ad73-951d-43e7-8722-8006a79393d2","name":"Prague saddle","desc":"Versatile saddle with reinforced cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"e8549d6b-d220-4e00-b513-a5231441ad71","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"e88ff1c5-203a-4483-b492-6bf81c5633e6","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"e9484ee3-cf40-4acf-9ec8-3e297eea3f5f","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is completed with a Mainz harness. It makes the horse bolder and braver, but at the same time it noticeably limits its speed and stamina."},{"id":"e9b2dae4-fcf1-4ac7-8a0c-4b65af20e6fd","name":"Caparison decorated","desc":"A cape of thick cloth covering the entire body of the horse except its head and neck, decorated with embroidery and crenellations. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"e9bba790-bae7-4b97-a683-8fc8c14e7ad1","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"eaaf1591-bcf3-4fb0-8df7-9e6ce4916dda","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"ecaf3259-5425-4006-9b0f-e758bd3de3b3","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"ecd94ac4-e8f0-48c4-95e4-729685ca8f28","name":"Wielun harness","desc":"Leather harness with crenellations and loose hanging straps. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits its speed and stamina."},{"id":"ed154d31-b836-4c4c-a8c8-3b00c2f6b6b3","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"ee4b742f-ad10-473c-940e-a743971c28d3","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders. The cape is decorated with crenellations and is completed with a Wielun harness. It makes the horse bolder and braver, but at the same time limits its speed and stamina."},{"id":"eff39384-5a02-4cc5-89d8-4717824480bc","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"f0107fc6-4be0-4f17-94df-5413a93a6228","name":"Sharukan briddle","desc":"Bronze decorated bridle consisting of of a bit, cheekpieces, reins, headpiece, noseband and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"f05b9cd0-ca30-4393-8540-033083861182","name":"Halved caparison decorated","desc":"A cape of thick cloth covering only the head, neck and back, decorated with embroidery and crenellations. It makes the animal much bolder, but at the same time slows it down and limits its carrying capacity."},{"id":"f0dc849e-2439-40d7-9a8c-8d629f77f9a5","name":"Executioner's caparison simple","desc":"A cloth cape covering the horse's head, neck and shoulders. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"f1657cbd-97f4-45f3-948b-68ec3962027e","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"f2c54b43-48aa-4c71-9201-484147e7e85b","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"f2ee862e-852b-4980-a4e6-bc0a69d144fb","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"f31bacdd-7bc7-47f5-a4b8-c907aea56e82","name":"Quilted caparison with harness","desc":"Thick quilted cape covering the horse's head, neck and shoulders, complete with a Hague harness. It makes the horse bolder and stronger, but also limits its speed and stamina."},{"id":"f5c64a03-c38c-4736-8805-28f743646ff9","name":"Caparison á la peytral simple","desc":"A cloth cape covering only the horse's shoulders. It does not make the animal very brave and has a little effect on its speed and carrying capacity."},{"id":"f66fc83f-074e-447a-ab41-361887c47a2a","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"f74034d0-58b3-4ebf-8dca-b7ba3abd1940","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"f8307be9-ec64-4934-953b-cbea36aa4b2d","name":"Caparison á la crupper simple","desc":"A cloth cape covering only the horse's loins. It does not make the animal very brave and has little effect on its speed and carrying capacity."},{"id":"f836869b-013a-4040-a209-c936cb56bdcb","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the whole body of the horse decorated with crenellations. It makes the horse more courageous and strong, but limits its speed and stamina."},{"id":"f854687f-fc8a-4c51-93d9-98535bd75731","name":"Tournament bridle","desc":"Bridle decorated with crenellation consisting of a bit, cheekpieces, reins, headpiece, browband and noseband. It helps the horse to achieve higher speed and stamina."},{"id":"f9cbfaff-21fb-48a8-b10d-d97585b10201","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"fa7be428-e2f9-46dd-bfd3-f3191e025455","name":"Hungarian saddle","desc":"A simple wooden saddle with a sheep's wool cushion and a linen seat. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"faada886-a161-4e3b-9614-9c7243059353","name":"Executioner’s caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations and is completed with a Hague harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"fb253378-030c-465e-83bf-8af0bbd9e00c","name":"Cracowian saddle","desc":"A unique saddle with a significantly extended cantle, decorated fenders and top grain leather saddle bags. However, the generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"fb36885b-8df0-4353-b36c-fe0f9c65b61f","name":"Executioner's caparison decorated","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery and crenellations. While it makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"fb66efee-3aa6-4d87-aa76-647e4a2b75d6","name":"Tournament caparison quilted","desc":"Thick quilted cape covering the entire body of the horse, shortened above the knees. It makes the horse more courageous and strong, but noticeably limits his speed and stamina."},{"id":"fb6859ba-cda9-417b-926c-97e2357d51df","name":"Soft leather bridle","desc":"A simple bridle consisting of a bit, cheekpieces, reins, headpiece and browband. The better the bridle, the greater the bonus on the horse's stamina and speed."},{"id":"fbafb20c-9473-4b37-9fe6-d9e877e2b2cc","name":"Executioner's caparison with harness","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"fbeadf50-89c1-476c-bc32-96b3249a59ef","name":"Dragon chanfron","desc":"Steel chanfron in the shape of a dragon's head with eye protection and a simple bridle. In battle it makes the animal much braver, but in gallop it slightly slows down the horse."},{"id":"fc9ea950-6d10-4353-9197-ea2a437fdca0","name":"Tyrolian chanfron","desc":"Robust chanfron forged from one piece of polished steel. Includes a crenellated bridle. It gives the animal courage and slightly slows it down while galloping."},{"id":"fcb39e3e-138a-4072-8234-92df6c366327","name":"Hague harness","desc":"Leather harness with loose hanging straps decorated with rosettes. Helps with balance, slightly improves carrying capacity and makes the horse more courageous. However, it limits his speed and stamina."},{"id":"fcf843c9-d15b-4bc7-8f02-b5988249f944","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"fd4b04c1-6400-449d-8471-75980518cace","name":"Plain tourney caparison","desc":"A cloth cape covering the entire body of the horse. It makes the animal more courageous, but it also slows it down and limits its carrying capacity."},{"id":"fd6c8a0a-96b9-4b20-a0f0-01f52637ae9e","name":"Dragon saddle","desc":"Excellent versatile saddle made of solid wood with decorative horn and saddle bags. The generous extension of the carrying capacity brings with it a reduction in the speed of the animal."},{"id":"fd74329c-eaba-4c72-a774-527b099dad3d","name":"Bridon saddle","desc":"High quality tournament saddle with bronze lined cantle and fur cushions. The generous increase in carrying capacity brings with it a reduction in the speed of the animal."},{"id":"fd94cd25-cf40-4a9d-b15a-a0df9e67f501","name":"Caparison á la crupper decorated","desc":"Thick cloth cape with embroidery covering only the horse's loins. While the cape makes the animal bolder, it also slows it down and limits its carrying capacity."},{"id":"fe4c4894-b916-4d35-b403-2280dac4975c","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"fe9b01ba-71d8-4892-bc59-d72f5317139c","name":"Lovari saddle","desc":"Equestrian saddle with wooden seat and knitted saddle blanket. It generously extends the horse's carrying capacity. However, the rider has to take into account a considerable limitation of the animal's speed."},{"id":"ff65c42b-b3de-4347-b01f-36626bf4c1ee","name":"Soldier's saddle","desc":"Lightweight saddle with reinforced saddle pads and a rear cantle. It extends the horse's carrying capacity only modestly. But the effect on its speed is also negligible."},{"id":"fff81d9e-65b0-49a9-a41d-48d67bd3fbd0","name":"Milanese chanfron","desc":"Solid chanfron forged from one piece of polished steel. Includes bridle with decorated cheekpieces. It gives the animal courage and slightly slows it down while galloping."},{"id":"0958776d-8528-4480-b0e3-df127362e0c1","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0bc067ff-f27c-4ab8-bd10-b37a9a2491cf","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0d09f3be-ff48-4bb6-bd89-53cc42b35592","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0d0ba084-8eba-43b3-a1d6-48643c1a07d3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1017066a-aa4d-4f37-83db-adc9c4d45208","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1877d30b-e8c5-4355-960e-a97eaa2fa043","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1a03f694-b41b-4fd1-bf8f-8d99d16fad11","name":"Noble's bascinet","desc":"What might be inside?"},{"id":"23c73a7a-6797-4545-8a0a-73468ed51d62","name":"A suspicious bag","desc":"What might be inside?"},{"id":"25423384-b6c9-45ff-a915-d8514e4629b1","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2574952f-3f37-44b2-8486-1051cc2a18d5","name":"Colour from the bull","desc":"Paint wiped off the bull. Slightly diluted with blood..."},{"id":"26ae783b-2138-476e-88e4-6a5184b08f0e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2b275c25-b21e-49c7-83b5-4fe4311872e0","name":"Hounskull bascinet","desc":"What might be inside?"},{"id":"2bbd9b10-5108-4aa0-a6d4-1f3849754b87","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2c921aa0-cfff-4e93-b56e-b60df98f8e75","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2e90e073-e60a-4e81-9b00-19f9a0067d46","name":"A suspicious bag","desc":"What might be inside?"},{"id":"35446ddd-74b4-4c72-85ef-0fa7df502953","name":"A suspicious bag","desc":"What might be inside?"},{"id":"36dfd94f-9d92-4490-81b5-092a5f3b14eb","name":"A suspicious bag","desc":"What might be inside?"},{"id":"39592e0f-00d3-472f-ab02-306de06c2499","name":"A suspicious bag","desc":"What might be inside?"},{"id":"399cc163-7705-4f45-9428-00f65e3488eb","name":"Burgher coat","desc":"What might be inside?"},{"id":"406dc85d-9cb1-4926-b72f-b57490b9cec9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"43852f3d-ed8c-4369-b5d7-4b7c05ef6c50","name":"A suspicious bag","desc":"What might be inside?"},{"id":"459b7af3-f4b7-4cc2-bbb2-2e6967874de4","name":"Hounskull bascinet","desc":"What might be inside?"},{"id":"4634df53-53ee-4127-a0ca-536e79a8a8c7","name":"A suspicious bag","desc":"What might be inside?"},{"id":"467f8539-39b0-475d-97d9-126f3036a3b2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4b68a6f3-f963-4d00-b013-99872caaee17","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4d50a7c3-e991-4e75-a47b-45ca138364d5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"539c70cf-f5d9-4409-9431-b9c03bc7d3e4","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"54b745c2-f9b5-4c25-bca4-f3fb29208705","name":"A suspicious bag","desc":"What might be inside?"},{"id":"564d4736-b7f6-4090-ae35-4c3ad3dc9744","name":"Colour from the bull","desc":"Paint wiped off the bull. Slightly diluted with blood..."},{"id":"56bed759-ba8a-4b75-bcf2-2ef817cd5cf5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6ef6d6e4-f2de-48e2-851a-810f2699c0a4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"72ceac2a-6dd6-4857-b53a-1d564ed1c0b6","name":"A suspicious bag","desc":"What might be inside?"},{"id":"767733e7-9737-4636-998d-65857799b242","name":"A suspicious bag","desc":"What might be inside?"},{"id":"76d32b03-9c46-49e5-b5d5-329194a79889","name":"A suspicious bag","desc":"What might be inside?"},{"id":"77683dc3-ad4e-40b0-9761-99d30d7d6124","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"7a0a5b29-a918-4b9f-beca-844549166a2f","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"7ab34533-7d0d-46d3-82dc-8702aacd7d91","name":"A suspicious bag","desc":"What might be inside?"},{"id":"7bca8097-7d3c-4d5d-8de0-9c336de7761d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"7dbe147a-0462-4e3f-aca7-8ca0f8a9f6ac","name":"Hounskull bascinet","desc":"What might be inside?"},{"id":"80ad04b1-0795-4fe3-ab2f-55be3d3fa89e","name":"Nuremberg bascinet","desc":"What might be inside?"},{"id":"84bb65a1-42eb-47a7-841a-03a9a8260dfe","name":"A suspicious bag","desc":"What might be inside?"},{"id":"8570106b-0b4e-415f-9e78-a47ed68d8163","name":"A suspicious bag","desc":"What might be inside?"},{"id":"883c45f0-2848-40c6-98f7-509926384020","name":"Short tunic","desc":"A short linen tunic is worn by rich and poor alike as a base for the rest of the outfit."},{"id":"8c2f483c-3efc-4439-9eb8-30a825581a6b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"91a0565b-ed4a-4aa1-96bc-867778219704","name":"A suspicious bag","desc":"What might be inside?"},{"id":"91c7e215-9260-4d8b-ab27-71f3cbed21e4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"99fc0bff-961f-4f8d-9e60-54ef959dc11f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"9b026786-6ae9-4da1-bdbc-a5938310d79b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a50580ff-45c9-4a30-9c4c-19f011b030b1","name":"Nuremberg bascinet","desc":"What might be inside?"},{"id":"a5e0e48b-0565-495e-8203-a58812cbccec","name":"Long gambeson","desc":"A quilted combat shirt made of several layers of plain linen. It provides some protection on its own, but is primarily worn as a soft underlayer under all types of armour."},{"id":"a880782f-37f7-4047-8ce7-37992109154c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"aa7fee92-7e24-45fa-8035-7b424836abb1","name":"A suspicious bag","desc":"What might be inside?"},{"id":"adf6ac2f-6400-4783-b0c7-bb3c2183afed","name":"Italian bascinet","desc":"What might be inside?"},{"id":"ae890818-2010-4c34-9b54-7e830fc286f2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b10b5cde-daa1-4b17-9317-1dd8505feab1","name":"Italian bascinet","desc":"What might be inside?"},{"id":"b4802f55-cb4c-40aa-965a-a62a2e62c022","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b708a913-da79-4300-8141-a081a73b708f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b94c9fc6-ae1f-45b5-8b27-66e053f8c9ae","name":"Noble's bascinet","desc":"What might be inside?"},{"id":"bb69f051-ce6f-4039-8579-5e5007d8d351","name":"A suspicious bag","desc":"What might be inside?"},{"id":"bc0e04e5-2b4d-481e-b897-b2e9c79e06c4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"cded28ab-9b98-49cf-b544-0e05dd87b8dd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"d8b18f36-8aaf-4d3d-8ffc-d12b297f80c4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e6d5d765-bb71-48aa-b0a9-a04c905cc9d0","name":"A suspicious bag","desc":"What might be inside?"},{"id":"ea71bd7e-2e85-4aa7-8b33-1a182063b46d","name":"Colour from the bull","desc":"Paint wiped off the bull. Slightly diluted with blood..."},{"id":"f547b4ed-255b-4716-b239-b8d1b34abdee","name":"A suspicious bag","desc":"What might be inside?"},{"id":"faa30fee-39bc-41e2-9c59-b6c82b84b438","name":"A suspicious bag","desc":"What might be inside?"},{"id":"006ec8d6-1ce1-4e90-8267-7c349812ddcd","name":"Unknown potion","desc":"An unknown potion. God alone knows what good - or bad - it can do."},{"id":"0422b7ef-1554-4c9b-b7a0-037be091094f","name":"Henry's Nighthawk","desc":"You will see better in the dark and Energy will not decrease at all, lasts 25 minutes."},{"id":"0513eeae-05a8-4ca7-8719-443cb0d906d5","name":"Sulphur","desc":"Yellow nonmetal represents the masculine element in the mystery of alchemy. It is an indispensable material for the manufacture of gunpowder, because it is associated with the principle of combustion."},{"id":"07016792-531f-4ef2-8c3c-ea7566326c04","name":"Weak Artemisia","desc":"Increases Strength by 2 for 10 minutes."},{"id":"09834ed5-010e-438b-8ac0-cf60529ff383","name":"Weak Painkiller brew","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 15% less. Lasts 10 minutes."},{"id":"0bf30154-1954-427d-ab92-6fa0048b0e27","name":"Strong Aesop","desc":"Increases Horsemanship and Houndmaster by 5 for half a day. Animals will take less notice of you, so you'll find it easier to approach them. Dogs won't notice you at all."},{"id":"0da553ab-9df7-4ed4-92b8-a9c9e42566a5","name":"Strong Aqua Vitalis","desc":"You lose 30% less Health and slows bleeding by 30%. Lasts 10 minutes."},{"id":"0e6f3e1b-961a-447e-ba58-17901f70896f","name":"Strong Embrocation","desc":"Increases Agility by 4 and Sprint will cost 20% less Stamina, lasts 15 minutes."},{"id":"10134a72-9c08-4bee-8352-208cdba64534","name":"Strong Painkiller brew","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 50% less, lasts 20 minutes."},{"id":"12174dd5-16bb-4e3c-9a3e-f66d851994e9","name":"Henry's Chamomile brew","desc":"For two days, sleep will heal you five times faster and restore Energy three times faster."},{"id":"122b7fbe-3ce3-4c4a-b692-cedfa355e7b6","name":"Nighthawk","desc":"You will see better in the dark and Energy will decrease 25% slower, lasts 15 minutes."},{"id":"12c30ac1-f9fc-4b61-a337-b3eb98779ca6","name":"Strong Chamomile brew","desc":"For one day, sleep will heal you four times faster and restore Energy two times faster."},{"id":"16aad4a8-c992-4230-8175-f3ec4ef4d4f8","name":"Strong Cockerel","desc":"Increases Energy by 20 and Energy decreases 20% slower for half a day."},{"id":"18b29b5b-a1a2-4b51-9540-b156745d1bca","name":"Henry's Hair o' the Dog","desc":"Eliminates drunkenness, hangover and temporarily suppresses the effects of alcoholism."},{"id":"27144e47-00aa-468e-a81b-49cb3b248b07","name":"A suspicious bag","desc":"What might be inside?"},{"id":"272357ec-8722-4b1d-9ee7-03f29ab465ef","name":"Strong Bane Poison","desc":"Makes running impossible and reduces Health by 110 in 30 seconds. More suitable for poisoning cooking pots than applying to weapons."},{"id":"2907cc32-ff8e-4a3c-b357-8fe434341874","name":"Strong Fox","desc":"Increases Speech by 5 and increases your reading speed for a day."},{"id":"299754d2-8e74-4f95-8919-b4cfc42d3285","name":"Lullaby potion","desc":"Reduces Energy to 0 and decrease perception. Reduces Stamina and Stamina regeneration by 10% for a quarter of a day."},{"id":"2a17517c-e5f3-4c9e-ad45-b9e4b171b452","name":"Artemisia","desc":"Increases Strength by 4 for 10 minutes."},{"id":"2f566495-fbee-4b58-9abb-6a5287b2e681","name":"Digestive Potion","desc":"Decreases Nourishment by 20, cures food poisoning and increases Vitality by 1 for 10 minutes."},{"id":"301cc8ff-f3f5-4c39-b27b-129bb58792d0","name":"Strong Artemisia","desc":"Increases Strength by 4 and both attack and defence cost 25% less Stamina, lasts 10 minutes."},{"id":"3157d51d-7461-4fdc-9601-93bd5ed42156","name":"Weak Bowman's Brew","desc":"Increases Marksmanship by 3 for 10 minutes."},{"id":"34d9f446-e5a7-4af4-858a-e96473de814f","name":"Weak Fox","desc":"Increases Speech by 3 for half a day."},{"id":"3a6936e1-cb05-4c4c-b6f6-379322c13c93","name":"Kuba's potion","desc":"Kuba's healing potion for the miller's horses."},{"id":"3d4a8904-98f1-464a-9b3e-d3926b835804","name":"Strong Saviour Schnapps","desc":"Saves the game, heals 20 Health points and increases Strength, Vitality and Agility by 2 for 5 minutes."},{"id":"4c3e263a-3aaa-4453-9910-325c300c0ae2","name":"Aranka's potion","desc":"A potion from Aranka, which should make Tibor just a little bit groggy... Perhaps."},{"id":"4f60ae85-28a3-45c1-9040-e11ed56edc87","name":"Fox","desc":"Increases Speech by 3 and increases your reading speed for a day."},{"id":"5060809f-feec-4c39-b7f4-1cea5e55ab70","name":"Weak Chamomile Brew","desc":"For half a day, sleep will heal you two times faster."},{"id":"555739da-ec53-49a0-a465-651e56ff1e96","name":"Strong Nighthawk","desc":"You will see better in the dark and Energy will decrease 50% slower, lasts 20 minutes."},{"id":"567fc1b1-1424-4784-9da8-5104e2e7354d","name":"Weak Embrocation","desc":"Increases Agility by 2 for 10 minutes."},{"id":"5cd3c6f7-ddb8-4475-870d-895d604c1d98","name":"Embrocation","desc":"Increases Agility by 4 and Sprint will cost 10% less stamina, lasts 10 minutes."},{"id":"5dd0afa5-3c76-475c-9775-6ed5c69132fd","name":"Strong Digestive Potion","desc":"Decreases Nourishment by 20, cures poisoning and increases Vitality by 2 for 10 minutes."},{"id":"601f9ff2-0413-40c9-b443-9695aafa71a5","name":"Lethean Water","desc":"Drink one mouthful and you'll forget all earthly experience. Obliterates all perk points, so they can be used elsewhere."},{"id":"633bcf78-58fa-4cb0-a229-876c61d61389","name":"Strong Dollmaker poison","desc":"Makes running impossible and reduces all weapon skills by 4. Gradually reduces Health by 30."},{"id":"68853c50-8e91-4644-b914-3035715896cd","name":"Henry's Artemisia","desc":"Increases Strength by 6 and both attack and defence cost 35% less Stamina. Lasts 15 minutes."},{"id":"68cc138a-67d8-4305-8140-aef772fb4d66","name":"Henry's Aesop","desc":"Increases Horsemanship and Houndmaster by 7 for one day. Animals will take less notice of you, so you'll find it easier to approach them. Dogs won't notice you at all."},{"id":"6a3efa9e-700a-412a-88ee-721d34da98a8","name":"Henry's Cockerel","desc":"Increases Energy by 30 and Energy decreases 50% slower for a day."},{"id":"6a4858db-2c3e-442d-8bcd-4c79d855e43a","name":"Strong Hair o' the Dog","desc":"Eliminates drunkenness and hangover."},{"id":"6b955a9b-d8de-492c-a53e-a052fab4ff0a","name":"Weak Nighthawk","desc":"You will see better in the dark for 10 minutes."},{"id":"6ef253ae-ec6d-4755-a194-9b763e361b42","name":"Strong Lullaby potion","desc":"Reduces Energy to 0 and decrease perception. Reduces Stamina and Stamina regeneration by 30% for half a day."},{"id":"73ff1fde-ec8b-41e9-95e3-b5938c715bf1","name":"Weak Aesop","desc":"Increases Horsemanship and Houndmaster by 3 for a quarter of a day. Animals will take less notice of you, so you'll find it easier to approach them."},{"id":"761f9e84-e07b-4b4b-9425-7681898abccd","name":"Marigold decoction","desc":"Heals 25 health over one minute and hangover passes 100% faster."},{"id":"7a1e8447-4449-473b-aac9-63f7a324fa0b","name":"Weak Hair o' the Dog","desc":"Decreases drunkenness."},{"id":"850d28d9-9d0a-4b2e-9feb-e6c48c5f1aad","name":"Weak Aqua Vitalis","desc":"You lose 15% less Health for 5 minutes."},{"id":"8b713d0c-9a04-4354-a53f-ffd384057fa6","name":"Weak Digestive Potion","desc":"Decreases Nourishment by 20 and cures food poisoning."},{"id":"8cf956d4-39d6-4e9d-9010-95f8f2772ad9","name":"Saltpetre","desc":"Saltpetre is formed by evaporation of leachate from decaying residues, carrion and cattle excrement. It is suitable for smoking meat and is easily recognisable by its cool taste. It is also one of the three secret ingredients for the alchemical preparation of gunpowder."},{"id":"928463d9-e21a-4f7c-b5d3-8378ed375cd1","name":"Weak Saviour Schnapps","desc":"Saves the game."},{"id":"92c829ca-41f6-40a7-b8d9-aac5159c7a89","name":"Weak Buck's Blood","desc":"Increases Stamina by 25% for 20 minutes."},{"id":"9536b229-2454-48cd-83a2-2f6292e18044","name":"Henry's Embrocation","desc":"Increases Agility by 6 and Sprint will cost 30% less stamina, lasts 20 minutes."},{"id":"980ce52a-866c-4212-a80a-dfc6b53f5c40","name":"Bowman's brew","desc":"Increases Marksmanship by 3 and slows down Stamina loss when aiming by 20% for 10 minutes."},{"id":"9872a67f-e235-4641-913a-737681f52870","name":"Kuba's potion","desc":"Christ, it's poison!"},{"id":"9ca97b1a-579b-44f2-8624-46d081b9001a","name":"Henry's Buck's Blood","desc":"Increases Stamina by 60% and Stamina regeneration by 30% for 1 hour."},{"id":"a3d9df4f-c502-473d-8010-9f1204e1b124","name":"Hair o' the Dog","desc":"Decreases drunkenness or removes hangover."},{"id":"a881243c-ea11-4d4b-a7e4-0b2105c79e28","name":"Henry's Quickfinger potion","desc":"Increases Craftmanship and Thievery by 8 for 1 hour."},{"id":"ab25a50a-7836-47a9-acb2-5fd93684b8c5","name":"Weak Quickfinger potion","desc":"Increases Craftmanship and Thievery by 2 for 20 minutes."},{"id":"ade54ad7-c400-4b19-a3fe-d34bd1fc3b30","name":"Aqua Vitalis","desc":"You lose 15% less Health and slows bleeding by 10%. Lasts 10 minutes."},{"id":"b13717cf-c4d0-4e79-9f56-cb0fecc26eaf","name":"Kuba's potion","desc":"What a strange potion."},{"id":"b38c34b7-6016-4f64-9ba2-65e1ce31d4a1","name":"Weak Marigold decoction","desc":"Heals 15 health over one minute and hangover passes 50% faster."},{"id":"b4e0af8c-3ed7-40ed-8537-7772489832c8","name":"Strong Marigold Decoction","desc":"Heals 40 health over one minute and instantly cures hangover."},{"id":"b53dc1c8-29c9-4002-878d-6b75fc10f217","name":"Painkiller brew","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 30% less, lasts 15 minutes."},{"id":"b6456b1c-ba84-4b3a-ba5b-47c388d3befb","name":"Henry's Painkiller brew","desc":"Suppresses the effects of injury and your maximum Stamina decreases with Health 75% less, lasts 15 minutes."},{"id":"b7e25984-1dce-4129-b857-dd61821503c1","name":"Henry's Saviour Schnapps","desc":"Saves the game, heals 30 Health points and increases Strength, Vitality and Agility by 3 for 8 minutes."},{"id":"b86a7329-ac5b-4a85-b77f-b226b938310a","name":"Dollmaker poison","desc":"Makes running impossible and reduces all weapon skills by 3. Gradually reduces Health by 20."},{"id":"be58eb36-bd45-45d9-8a38-5bd07ceb4258","name":"Buck's blood","desc":"Increases Stamina by 30% for 20 minutes."},{"id":"c016f34b-be76-47c7-9f96-caec61afa238","name":"Strong Buck's Blood","desc":"Increases Stamina by 30% and Stamina regeneration by 15% for 40 minutes."},{"id":"c40dc516-9886-4245-8a8b-2cbb16da918d","name":"Weak Cockerel","desc":"Increases Energy by 10."},{"id":"c4109e90-e359-4803-b78e-20ce73be34e6","name":"Henry's Dollmaker poison","desc":"Makes running impossible and reduces all weapon skills by 5. Gradually reduces Health by 50."},{"id":"c4755706-216b-447e-ba4e-a7e51a7c04d1","name":"Henry's Lullaby potion","desc":"Reduces Energy to 0 and decrease perception. Reduces Stamina and Stamina regeneration by 50% for a whole day."},{"id":"c7022225-70b4-4bde-afe0-1d42763a2ecd","name":"Henry's Marigold Decoction","desc":"Heals 60 health over one minute and instantly cures hangover."},{"id":"ca4bb7aa-12a9-45d5-a589-de2a2458fc4d","name":"Chamomile brew","desc":"For one day, sleep will heal you three times faster."},{"id":"cc2060b0-b588-4a54-9a73-293a8a4f2ff6","name":"Strong Quickfinger potion","desc":"Increases Craftmanship and Thievery by 6 for 40 minutes."},{"id":"d273bcad-6b58-4eae-9d2a-800c40176cfd","name":"Saviour Schnapps","desc":"Saves the game, heals 10 health and increases Strength, Vitality and Agility by 1 for 3 minutes."},{"id":"d4d378ef-0fb1-4030-880e-6b2fea8a394c","name":"Cockerel","desc":"Increases Energy by 20."},{"id":"d7647722-61db-4250-bd1b-0091be96a16e","name":"Aranka's concoction","desc":"Aranka's concoction, which should cause some trouble for Tibor's horse"},{"id":"db3b9089-3985-44fb-a2f4-d662321b6d4a","name":"Aesop","desc":"Increases Horsemanship and Houndmaster by 3 for half a day. Animals will take less notice of you, so you'll find it easier to approach them."},{"id":"de4fa13c-def3-4b1f-b4f9-eb8a21f0adb3","name":"Henry's Bane poison","desc":"Makes running impossible and reduces Health by 110 in 15 seconds. More suitable for poisoning cooking pots than applying to weapons."},{"id":"dec304dc-47f4-4bb2-8e4c-1c0a30203b6e","name":"Henry's Aqua Vitalis","desc":"You lose 60% less Health and bleed 60% slower for 15 minutes."},{"id":"e3023c6f-1293-49f1-8cd4-21cac3e3f604","name":"Henry's Digestive Potion","desc":"Decreases Nourishment by 30, cures poisoning and increases Vitality by 3 for 20 minutes."},{"id":"e730436c-53f6-4041-bdd1-3f4826f15975","name":"Quickfinger potion","desc":"Increases Craftmanship and Thievery by 4 for 20 minutes."},{"id":"e843c734-f28f-4263-9033-f6f40fe65a85","name":"Strong Bowman's brew","desc":"Increases Marksmanship by 5 and slows down Stamina loss when aiming by 50% for 10 minutes."},{"id":"ecd5ec75-6483-4376-a7ff-83be58847f11","name":"Henry's Fox","desc":"Increases Speech by 7, increases reading speed and increases the amount of experience gained by 50% for two days."},{"id":"ee4d5b06-0a7e-4073-969b-b11131e97fef","name":"A suspicious bag","desc":"What might be inside?"},{"id":"f57b55ad-b964-4555-b564-726ab821670e","name":"Fever tonicum","desc":"Fever and related complications can often lead to death. This tonicum will alleviate fever if given in time."},{"id":"f613838b-0a41-4dee-a1cf-41cb753b5eb6","name":"Henry's Bowman's brew","desc":"Increases Marksmanship by 8 and stops Stamina loss when aiming for 15 minutes."},{"id":"fed2dff1-eefe-41a7-93a9-1c2a3801774c","name":"Bane poison","desc":"Makes running impossible and reduces Health by 110 in 45 seconds. More suitable for poisoning cooking pots than applying to weapons."},{"id":"05913089-eb8b-4964-9af8-4f8bf65a6055","name":"A suspicious bag","desc":"What might be inside?"},{"id":"100baec1-374a-44f2-b901-22a8b7fd7390","name":"A suspicious bag","desc":"What might be inside?"},{"id":"141b79e0-fe55-4215-bc95-2242e8b4e997","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1558b620-d1bb-4ee1-8a36-32c0c91d7dcd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1651603e-511c-4607-88b8-f722b65b88a3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1d534b2e-4774-4063-8b67-cb5217da6d19","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1e1c76a6-24bf-41b8-a3f4-652b56d7d272","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2282541b-78b5-4a4a-95f2-39ba046defc3","name":"WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW","desc":"Placeholder. A test sword with a really long name. A test sword with a really long name. A test sword with a really long name. A test sword with a really long name. Test sword with a really long name. Test sword with a really long name. Test sword with a really long name."},{"id":"275bc631-75cb-41ad-be6c-bc9f319fcb5d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"33069aba-2dcf-42c4-97ea-f9c8a6f7e06e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"340d4edd-cfc7-4468-8393-7255708fde80","name":"A suspicious bag","desc":"What might be inside?"},{"id":"36b84113-9aee-4fd2-ba08-ec53a9114eab","name":"A suspicious bag","desc":"What might be inside?"},{"id":"38d4a88c-068f-4067-8000-0604b3d41ac8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"392878eb-090a-4fe9-a1c9-e5030b1bc5db","name":"A suspicious bag","desc":"What might be inside?"},{"id":"3c498ca0-455f-4ebe-884d-f4c2ea7de6ff","name":"Placeholder axe","desc":"Placeholder weapon, if you found it in the final build, report it!"},{"id":"3e0c1595-4274-4997-b2d0-b83d5baec4e2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"3ea65a63-5181-4957-b1cb-deab043f4d62","name":"A suspicious bag","desc":"What might be inside?"},{"id":"3f454d39-6703-4311-8dc7-09ce9fc2d12f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"40068e97-e2d0-15a3-3cfe-71c574b221aa","name":"A suspicious bag","desc":"What might be inside?"},{"id":"40b5371b-6235-e4de-db1e-4528b11a25b6","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4144898f-aeef-08af-15a6-d963dccd96a5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"416511f7-268c-03fe-6cd2-2135987e2686","name":"A suspicious bag","desc":"What might be inside?"},{"id":"41766893-0309-b874-5531-e52dc0eb7cba","name":"A suspicious bag","desc":"What might be inside?"},{"id":"419bd251-9da5-1971-10cd-8428a6bdcb91","name":"A suspicious bag","desc":"What might be inside?"},{"id":"41c13ac4-ee03-073c-3a31-3f04a97e6abd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4363c07c-d91d-7a01-97da-e8794bfcb4aa","name":"A suspicious bag","desc":"What might be inside?"},{"id":"43858f99-def2-df4b-b86d-8dd9f6773ea5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"43e02509-f02b-6618-b09e-9110c1fbd6a4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"43e385bf-e3ac-473e-e9b2-34e8760cd2b5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4465f08f-aff7-0ff7-dbb6-5b6d6cd0a984","name":"A suspicious bag","desc":"What might be inside?"},{"id":"44a42a13-f552-9a1a-b812-d0dc175be39d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"44eaf3b9-c5a3-9225-1573-2a85e7c1e780","name":"A suspicious bag","desc":"What might be inside?"},{"id":"451d4a88-5aae-ee2d-05dd-cfe1f3312bba","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4521fad8-d91c-9b20-2f03-9dccdf00e48e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"464ec461-a974-f7da-3b10-d34f66882faa","name":"A suspicious bag","desc":"What might be inside?"},{"id":"468eb027-12ed-4df9-8899-6b47d856a311","name":"A suspicious bag","desc":"What might be inside?"},{"id":"46a16aaa-5419-94da-7a9b-104b41fb25b1","name":"A suspicious bag","desc":"What might be inside?"},{"id":"46fbcca7-a792-b039-b87e-24c26f6373a7","name":"A suspicious bag","desc":"What might be inside?"},{"id":"472fbd1f-7749-ca4c-d87e-a0659b5886b8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"47c34961-a189-4151-344c-d966387ccb8c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"47e60a8f-e458-454c-861f-bd596c9d18df","name":"A suspicious bag","desc":"What might be inside?"},{"id":"483a91ae-6866-ab8d-929b-dee063bc6782","name":"A suspicious bag","desc":"What might be inside?"},{"id":"483d2eab-9723-27b2-7b85-3e7333b3be82","name":"A suspicious bag","desc":"What might be inside?"},{"id":"488a0ea3-a5c7-af0d-d6bb-8cc7eb77fa9a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"48a3e071-1a87-a5c1-9291-568fdea21e8c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"494c8365-2984-4514-a80a-2ba575c9a2f2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"49598d90-3804-8b6b-d775-0758ad24d682","name":"A suspicious bag","desc":"What might be inside?"},{"id":"499903d1-3d6f-bc66-5875-b0ab7c28269d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"49d8927c-4c4d-d1cc-2374-34c23669eca9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4a80479c-ff4a-4463-b545-8c663fb7951d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4bd249c6-0fea-4296-b60a-8d8a56ce76e6","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4c694bdc-69ab-fd72-4452-7fb635e6e69a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4c7ba4e3-0fd4-4efa-b751-5f35fc0ebcc0","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4cac53f7-2971-4b94-577a-a4b310a7c4a8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4cb04f94-b9e2-3ffc-83bb-229c917e5194","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4cfb5e34-e8ce-2c62-18ab-05074b0551bc","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4d197020-1241-490b-7ae7-6360dcb888ac","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4d3ab56f-92dc-45ea-805d-a570ef2dca76","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4d887670-13cb-746d-5e27-5d234e146cb3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4e5d50ee-d51e-9d3a-28a5-37eea670fcb6","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4eb2b9eb-e59d-2366-90bf-75e936b4e9a2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4ee2a4de-65de-89f7-ca92-31cd5ae76093","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4f0e8929-39f6-e0ae-739f-682a0389319a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4f1b5ec1-1306-4d11-872e-27872aa400f8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4f38fc34-fcb6-1860-5f8b-4df39f0c72bd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"51297fea-ac38-4dae-ae93-5f7ad66e7f28","name":"A suspicious bag","desc":"What might be inside?"},{"id":"53f6194b-d1be-4a7e-bcca-19c6e1a0645f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5420f246-7688-4f4e-8efe-9a9c29c34e47","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5450027a-1499-4b4c-ab96-6370976fc2da","name":"A suspicious bag","desc":"What might be inside?"},{"id":"58b3b141-7bde-49a8-a201-3b9bf4167d35","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5d1a533b-c957-4875-9471-e76a48533968","name":"A suspicious bag","desc":"What might be inside?"},{"id":"60e78fa6-2155-4f5f-8173-5fd0cfd4f314","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6195801f-e7e4-429c-9db9-8b31a62126c8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"63a1c8ca-1f25-44a3-9c10-a6c81856655a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"68f3ef09-143b-4853-9c85-cd6df38d2ad1","name":"A suspicious bag","desc":"What might be inside?"},{"id":"69ff2530-2556-439f-a486-a073ee44fb61","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6d6cdd37-b64d-4e59-bdfd-3f72ffe7f92f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6edc8135-6795-4f18-81fc-95b22503afbb","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6fad7800-d0b6-41dc-96c3-a0b7821c341b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"70405729-62b8-4ea9-b369-4e7e73cfb74a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"78c22235-7a4f-4b4f-99c6-064cb01875c5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"7fc59505-3216-4f58-afa2-a6ad626a056f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"8c6b9277-e7ad-4246-974a-65b7000fbc5a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"8ce8be73-7416-4d0d-8272-16a178efaa58","name":"A suspicious bag","desc":"What might be inside?"},{"id":"90f2591e-2fc2-40f4-acad-ca7b01e99f78","name":"A suspicious bag","desc":"What might be inside?"},{"id":"92bd0714-c57a-4cbe-8682-2f3fcdf93352","name":"A suspicious bag","desc":"What might be inside?"},{"id":"9425993a-b1ea-423f-8d48-fd6161d98d32","name":"A suspicious bag","desc":"What might be inside?"},{"id":"98851303-bf50-4a41-9aa7-aa33e025d0fb","name":"A suspicious bag","desc":"What might be inside?"},{"id":"991526e6-7014-4df7-bc19-3d50dfa265c6","name":"A suspicious bag","desc":"What might be inside?"},{"id":"9ab1be12-029d-4fd1-9a2a-91550319e36e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"9e6badb0-3249-4e3c-9707-0092dc62572f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a166eff6-8dff-462b-bae0-3ed476a90fc8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a16e6c86-2970-4106-a25b-9b4fba181972","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a16e6c86-2970-4106-a25b-9b4ffa181972","name":"Tin doppelganger badge","desc":"Using it will double the score of your last roll. Can be used once per game."},{"id":"a4d75b12-011e-4a35-a21c-dc1f6082affe","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a4e01cf1-78af-4692-b6db-7c6be15cbe4c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a7054b3a-17e5-418b-ac96-85e19501aa98","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b11aeb90-5752-48a2-962e-af64fe618b4d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b185ad3c-6e51-4298-a997-472eb37b8b2a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b3b18ab1-d46b-4818-b12e-b99142e8e9b3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b4252330-cbe9-44df-b189-77ec87efbe1d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b4dad9f9-ea29-4718-87f3-624430eac6f3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b6a54450-9296-45eb-bf62-7ba8b41b743e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b6ce8b62-9cab-428f-b1e8-0e12823f18c8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"bbe96b1d-072e-4bbe-8262-a30517a7ecca","name":"A suspicious bag","desc":"What might be inside?"},{"id":"bc9cee60-c0b3-4f83-95e3-e55d493360ab","name":"A suspicious bag","desc":"What might be inside?"},{"id":"bd3b7884-dca8-41f8-8ea8-fb5a60e3135b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c162bb27-5684-4f0c-9ab6-ee30a1ead070","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c2271223-0d25-4714-969e-ff74f7cdc227","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c29540d1-c2b7-44a3-a567-a03dbb3f82ff","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c3fd5fea-dbc4-44dd-9fc9-bb7dd24432ca","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c5c2ef8d-e481-498f-b99f-19550b418118","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c6053348-3bfd-43c5-a716-2aad4143ba35","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c730a8f9-20f9-4631-9ea0-b0c50dd7af61","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c80e67a7-8dbd-4662-ae63-26a92b6ae28b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c8d7fd2d-8237-47f5-a8f6-17549ff59a4e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c9e42db7-4f90-4b4f-89f1-b3a81e7e2108","name":"A suspicious bag","desc":"What might be inside?"},{"id":"cd50a1b6-41b3-488b-a0c0-cc0b0d886bdd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"cef7e87d-ab9a-4359-a82c-73906f5fed51","name":"A suspicious bag","desc":"What might be inside?"},{"id":"d847b09b-3340-4eda-a038-385cc58ab47f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dab2c84b-83b8-4214-920c-03042e38209e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dd2d35f2-7078-469b-af26-9afd81248f8c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"de656e08-e385-49df-be56-b03820caa3f2","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e046f9d4-d12f-4090-8836-a407717ae944","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e08b4ee1-ab7f-4ff3-b019-1eb31dcb9382","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e44eeaf7-734d-44dc-8c55-ec5eaa56c1e9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e4f05e67-803e-4189-a09e-ad934db0ec00","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e4f05e67-803e-4189-a09e-ad934db0ecad","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e4f05e67-803e-4189-a09e-ad934db0ecaf","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e4f05e67-803e-4189-a09e-ad934db0ecbf","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e4f05e67-803e-4189-a09e-ad934db0ecdf","name":"A suspicious bag","desc":"What might be inside?"},{"id":"ea5cfda1-a145-45fd-9499-466d30d0dd99","name":"A suspicious bag","desc":"What might be inside?"},{"id":"edaa337a-5ed7-4d49-8b89-5d9693dabf1d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"eed20f9b-84de-4628-920c-28abe13935bd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"f8edf520-91e9-4c8e-b998-8bc0d9c209e4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0171d2f2-75f1-474c-8b75-07e08d64345b","name":"Old horseshoe","desc":"I reckon this horseshoe has done its fair share of travelling."},{"id":"03096c7e-5a03-4666-8d96-5736e5e37565","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"03221d70-990f-4380-bf67-f511236c72db","name":"Rabbi's hood","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"040945cd-4f2b-476d-a259-61d2b239662f","name":"Brigandine gauntlets","desc":"Finger gloves composed of small slats riveted to the leather and completed with a buckle, so they fit like a glove. Compared to gloves made of cloth, they last a little less, but they are lighter and fit better."},{"id":"055b2c57-174b-4a57-9912-aad81a134926","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"08b22db7-f612-40a3-b7b0-351a731bf5e0","name":"Capon's gambeson","desc":"Gambeson of Lord Capon of Pirkstein."},{"id":"09567135-d301-4eb4-8876-f3be04e904e0","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0ac7819f-5061-48ab-a040-8614b34376ab","name":"Old brigandine legs","desc":"Protection of the entire leg formed by individual iron plates riveted to the honest cowhide leather. This is an older form of folded armour, which can be seen especially in the shape of the knee pads."},{"id":"0d46f211-2ceb-4115-ad5c-96e5a1ba8cb9","name":"Oats' ring","desc":"A ring originally belonging to Oats that I won in a game of dice against Tankard."},{"id":"0de4ffa0-0a00-4efa-98b7-209bdd443277","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"0e5ead13-b7ba-42bd-bda2-97a45488f529","name":"A suspicious bag","desc":"What might be inside?"},{"id":"0f04e727-f40b-402d-9ad6-356b588fe626","name":"Windfall straw hat","desc":"The wind was rough, it made her cough, she coughed until her hat blew ough."},{"id":"0f716757-c281-4b58-af60-c6afc6750717","name":"Lost helmet","desc":"string name changed, delete me"},{"id":"0fca1819-2818-4c48-bcf9-7e7fadce4bcb","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"107b3a4b-27c4-4fb4-bb65-54b538629709","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"12f1e675-21a9-43c0-9775-cdf71e76fd6d","name":"Padded coif","desc":"Sturdy padded cap serving as a soft underlayer beneath the helmet. A good soft padding is simply essential, even for tough guys."},{"id":"13e7dede-8f42-4d3d-8586-3f432567ffca","name":"Chamberlain Ulrich's hat","desc":"The magnificent wine coloured chaperon of the Trosky chamberlain Ulrich."},{"id":"14847226-1258-4979-97f4-7067693d9cb6","name":"Riding boots","desc":"These shoes should not be visible in the game."},{"id":"1786f901-cbbe-48d2-926a-d1c39e1717df","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"18aa1145-fc39-4921-a00f-9b98a9df06c0","name":"Embroidered hood","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"18bb4d37-9c8c-4893-a46d-d5e26990f417","name":"Katherine's dress","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"1a642252-6f9a-43fa-8b8f-2327f855f956","name":"Capon's hood","desc":"An unmistakable part of Sir Hans Capon of Pirkstein's outfit."},{"id":"1b4fb17c-c1f8-4935-924a-9609aa05b882","name":"Casper's ring","desc":"A ring I got from a bandit named Casper."},{"id":"1b6b44b7-69ad-4ccf-836b-a9469d5701c3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1c493151-714a-4fa8-b98d-28194211736e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"1c6988c7-bcbc-490e-97aa-350b378ef186","name":"Old gambeson","desc":"My old gambeson, a memento of the many battles and the life I left behind. It has grown old with me, but it still serves where prayer alone is not enough."},{"id":"1cae111a-6457-4874-b43f-3b28ce4ac480","name":"Embroidered hood","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"201942e1-4ba5-493b-a234-4923389fe531","name":"Fitted coat","desc":"A fitted coat made of good fabric with a wider skirt will make its wearer look good in any better company."},{"id":"21be124d-23de-4ed6-aba2-09a8d494c7fc","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2222f4c3-9ec6-4624-82c7-50a27499abaa","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"22799e4c-1489-44b1-807f-6bfa3df47425","name":"Spiked horseshoes","desc":"string name changed, delete me"},{"id":"22bdc463-8a82-4a98-8203-72d42f9bd62b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2428b944-b184-4e9a-9faa-58c778003c48","name":"Markvart von Aulitz's caparison","desc":"A cape of thick cloth covering the head, neck and shoulders of the horse. The cape is decorated with embroidery, crenellations and a Mainz harness. It makes the animal significantly bolder, but slows it down and limits its carrying capacity."},{"id":"25d4aeb7-5ed6-401d-872c-3076ddc02488","name":"Cap from Nebakov","desc":"An older hat I found in a pile of bloodied rags in Nebakov. Who knows how it got there. It stinks pretty bad, but with a little care, it could still be useful."},{"id":"2681f0d0-06e7-4ef2-967b-6cb77dabb213","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"274b827f-cf97-42ba-97b1-8c73bb5bbc3b","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"2919b642-b0eb-4399-a041-464d8a00c51a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2a29a32f-3ed2-40aa-ba5e-933824ffb66a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"2b8775f0-2f60-46fa-879c-e0d5b1e00d01","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"2ca3d4ee-e889-41e6-8ecc-4040b68ccdd8","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"2cf06381-7692-4f3c-b917-e98dd3b5f8e3","name":"Jezhek's plate chausses","desc":"Part of the armour of Sir Jezhek of Holohlavy."},{"id":"2f75026b-83e5-4d0d-af27-ba31ff9d6c3a","name":"Legate's hood","desc":"Red cardinal's hood of the papal legate, made of the best fabric and with a good cut."},{"id":"312657a7-0bfb-420e-b3c8-a534a01fe46a","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"31da3908-dd04-41cc-a376-3754b2fbea51","name":"Hauberk long","desc":"A long, chainmail shirt with sleeves covering the arms and forearms."},{"id":"320ec2b7-af1e-4201-97cf-c8a8a8676027","name":"Voivode's amulet","desc":"Supposedly a magical amulet of a nomadic foreman, which guarantees invulnerability and resistance to all diseases."},{"id":"32c601fe-12ce-4449-b044-f473507994f7","name":"Short aketon","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"35624bd9-9d1b-4123-8950-e758d4e3696f","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"3663335c-7756-4b8d-82fb-064149197de4","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"38f3a103-fe9e-4cde-b023-3911e2626020","name":"Lavish caftan","desc":"What might be inside?"},{"id":"391e4eb4-bc8f-49f7-ae76-034d65f763ff","name":"A suspicious bag","desc":"What might be inside?"},{"id":"3b57616c-7a48-4d5c-b149-665be1a1cbd4","name":"Royal waiter's coat","desc":"A coat in which you don't have to be ashamed to serve the King himself."},{"id":"3b7e27a0-7375-4076-b406-90ab532c9323","name":"A suspicious bag","desc":"What might be inside?"},{"id":"3c3b344a-89ed-472f-bb12-f397e7a055c8","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"3d7385bb-b48f-4ced-8414-c0c94920e8f0","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"414f8f5e-ca5a-467f-a10a-4ca1812ea669","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"41ca6379-56eb-4f98-97ba-539e76981544","name":"Noble laminar hands","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"42fa0f12-5a76-40d0-a2ff-40181fd1a992","name":"Mail collar with badge","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"466806c3-4f09-4efe-a9b5-283594dbad1d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"46df2226-b623-4f29-a41b-f454310bbb56","name":"Gartered hose","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"474c36a4-6427-4276-a542-73ebbfbe860b","name":"Virgin Mary medallion","desc":"Medallion with the Virgin Mary belonging to the villager Willow from Bohunowitz."},{"id":"477cf18d-36c6-42fd-9ca3-23fc4f204ac9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"48755100-c074-48ac-b233-e98b50ab3991","name":"Mikush's cap","desc":"Mikush's handsome cap, supposedly made according to the latest Italian fashion."},{"id":"4907ee7b-a80a-4567-9873-2f500e1f82c9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4ab86b39-e094-4737-beda-5cbd29d6f65a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4b396e6a-9b01-4ee6-bab5-97f3d72245f4","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"4c523510-9481-4b13-8957-9def62bfdd98","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"4d22fab7-9424-429f-a443-14eed1cc11f2","name":"Laminar knight legs","desc":"Full leg protection, consisting of laminar and plate armour, made with an emphasis on lighter weight, but also with an emphasis on the good looks of the wearer."},{"id":"4dc15378-9506-452e-9cd9-55dfab6a5c77","name":"Drowned man's gloves","desc":"The stinking gloves of a poor man who died a hideous death."},{"id":"4eaacefb-70af-4e9f-9a06-311a3dcadb23","name":"A suspicious bag","desc":"What might be inside?"},{"id":"4f129653-55f8-4022-b6ea-02790dbdb963","name":"Hounskull bascinet","desc":"A helmet called a bascinet with a fitted klappvisor. It has been pejoratively nicknamed the dog's snout because of its strange shape, but it is easier to breathe in it and is more durable than its older models."},{"id":"5051c16a-437e-4cfa-b25e-f67566f52736","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"50ed5626-8248-4116-a54e-75fd76c88352","name":"Simple shoes","desc":"Low-cut shoes come in a variety of designs. These simple, comfortable shoes are popular among all societal classes."},{"id":"51b61116-8059-4475-9455-cc73b335ed2b","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"52ee5016-ef12-48e9-8dd7-493128d81cdd","name":"A suspicious bag","desc":"What might be inside?"},{"id":"53e2fe23-cfd2-453e-b059-4f244251e41d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5575d3ec-e42a-438b-aca1-93f08d48bd43","name":"Jezhek's spurs","desc":"They symbolize everything that makes a knight a knight."},{"id":"58bbc590-7e57-4e7f-85e5-39f2f768e97a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"58cc63cf-6fd4-4249-bfa8-72ed690a2e94","name":"Rosa's dress","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"59976257-5352-43dd-8b2b-1c17831b7a7d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5a8742d4-c14e-4920-847a-166238ae4c71","name":"Hounskull bascinet","desc":"What might be inside?"},{"id":"5d33ea40-f8f0-46ff-90d3-bbf9b68847c3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"5d603bea-3062-4d38-80d1-d3642dbfa2ff","name":"Short aketon","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"5dc7e2a4-9082-401a-863d-34aae06619c2","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"5fb45d64-c10f-4a7a-b713-e32e940239e1","name":"Water goblin's hose","desc":"Ivy green trousers. When I wear them, I'm drawn to the water. But I can't swim."},{"id":"652278ee-c760-4485-aaf3-499817155ab9","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"6534b5c8-4840-4329-88ed-12d45fe46f0b","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"65ebe8ab-14d5-475e-b31b-a2c6624560a7","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"67129f45-fbc4-4547-be4f-8262bc636a13","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"6729739a-f0ff-4235-8a58-589d6661b925","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"675ea411-34d2-4c6c-95b7-062b6d1027c6","name":"Kastenbrust","desc":"An older form of the German cuirass, square shaped to withstand both slashing and crushing blows. It has considerable durability, but this is heavily compensated for by its weight."},{"id":"67704b46-4af7-49bd-bbf4-727214982da3","name":"Abbot's hood","desc":"Flamboyantly simple but coupled with an exceptionally esteemed mission. To be a shepherd and lead his flock through the tearful valley of earthly life, one must have great determination."},{"id":"6aabb9c9-5137-4bac-ac80-723b133cdba2","name":"Fine shoes of cobbler Vejmola","desc":"High quality shoes by cobbler Vejmola."},{"id":"6b2c6cda-eb16-48fe-86b8-f67195a71262","name":"Burgher's shoes","desc":"These shoes should not be visible in the game."},{"id":"6bfa09b4-c5bf-486c-bf61-65ca186c7162","name":"Surcoat","desc":"A surcoat is an outer dress with wide armholes, revealing the lower layer of the garment. Evil tongues claim that such a cut attracts inappropriate attention. Perhaps because of this, it is very popular."},{"id":"6d5fccfd-5c39-4897-b433-5a9cb4df4f7a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6e2be654-1f44-4ab4-813d-f13cd842c766","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6e811201-88a3-464c-b1e1-98dbde207281","name":"A suspicious bag","desc":"What might be inside?"},{"id":"6f41a1df-74a8-4bf2-9a70-16a9e6dc47a1","name":"Marika's scarf","desc":"Nice scarf, probably belongs to Marika, a young girl from the nomadic camp."},{"id":"729ebab8-9044-455b-a532-423622c7f2b1","name":"Noble laminar hands","desc":"Excellent full arm protectors composed of sheet metal parts and supplemented by laminar shoulder pads."},{"id":"74a815e9-0ddc-4b9d-a3c0-06218573a5e3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"76d8cec6-eb5b-4030-a568-f6fb63f99d86","name":"Chamberlain's ring","desc":"A simple but truly beautiful gold ring with which Chamberlain Ulrich wanted to bribe Enneleyn at young lord Semine's wedding."},{"id":"79c08d0b-de8a-45fd-87e2-c134fd919cc1","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"7b3cce77-4ab8-4b81-ba77-5e26fbdb42f1","name":"Oats' ring","desc":"A ring originally belonging to Oats that I won in a game of dice against Tankard."},{"id":"7b6a90fc-06f4-4618-8900-c0693c29d540","name":"Jezhek's plate pauldrons","desc":"Part of the armour of Sir Jezhek of Holohlavy."},{"id":"7eb5dab1-5efb-486d-b3f4-e077b30ddbe6","name":"Gartered hose","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"801d5db6-d241-4eb8-8059-e201d00f1147","name":"Legate's hat","desc":"Legate's red cardinal's hat with a broad brim, the emblem of high ecclesiastical office."},{"id":"805ab0ca-e933-4e47-8526-bd336c3c2c8f","name":"Common ladies shoes","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"8069c62d-1ecc-4fc1-be08-15a76bea5ed1","name":"Capon' plate chausses","desc":"Plated leg protection of Lord Hans Capon of Pirkstein."},{"id":"82735e11-dab2-463d-863d-b1858c4b9ef5","name":"A suspicious bag","desc":"What might be inside?"},{"id":"8381805b-dff0-4c7f-b67d-b928047ab75e","name":"Gnarly's old helmet","desc":"The old helmet of captain Gnarly. It's got holes, but it'll provide some protection. And if not, it'll at least serve as a colander."},{"id":"83d2601a-e29e-4cc5-b489-3da1190d5e72","name":"A suspicious bag","desc":"What might be inside?"},{"id":"843c4f07-c41e-4693-a024-001c07d27342","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"84d99c7d-5b69-4d1b-ad82-49808001b127","name":"Silver cake ring","desc":"A simple silver ring I nearly chipped a tooth on, because some mad old woman from Wysoka accidentally baked it into one of her sweet rolls."},{"id":"85733268-6749-4c56-9f37-b3587512b60b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"86183abd-43c5-4762-8a0c-12f4a8057fe7","name":"A suspicious bag","desc":"What might be inside?"},{"id":"876c492b-7f08-4956-81a6-836ff1b5e607","name":"Old gambeson","desc":"My old gambeson, a memento of the many battles and the life I left behind. It has grown old with me, but it still serves where prayer alone is not enough."},{"id":"88083e07-95eb-4dbe-8b73-aa450d96c2c3","name":"Voivode's necklace","desc":"The necklace of the nomadic foreman protects against bewitchment and evil spells."},{"id":"88176355-9735-415d-a2e8-78189d1639e1","name":"Mail collar","desc":"A short chainmail collar, called a gorget, protects the neck and guards the warrior from being cut or penetrated by a blade under the visor of the helmet."},{"id":"89675c90-a6d7-4f5a-91dc-118f7d445b52","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"8b7030eb-9056-404d-9d87-5cf79438e346","name":"A suspicious bag","desc":"What might be inside?"},{"id":"8d09748e-a90e-407d-aa5b-e610e478622a","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"8ddf24c9-6562-4180-b309-6bdd3cad46bd","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"8eeb62ff-ea2f-480d-9c80-ffe7d3632302","name":"Coif","desc":"A simple linen headdress usually worn under a hat or cap."},{"id":"8fffa592-f442-43cb-8c83-6a960667a6be","name":"A suspicious bag","desc":"What might be inside?"},{"id":"90311895-1fe3-4d48-8251-d8e4aae1e319","name":"A suspicious bag","desc":"What might be inside?"},{"id":"9043e197-1e7f-4f13-a1ff-2b9b9236688c","name":"Head bandage","desc":"A bandage around the head."},{"id":"91184dfb-484d-4f4d-929f-414bdcca9c7a","name":"Semine's hood","desc":"A hood of the good knight Jan Semine of Semine."},{"id":"9194ec83-6bf0-427f-ab79-ca17ce3445f4","name":"Ordinary ring","desc":"The ring I found hidden in the fake grave. It doesn't look very expensive, but it's certainly worth something."},{"id":"91e271bc-be16-49ea-af14-ecf97a5033d4","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"95560508-6beb-4a61-9d07-60c01629016a","name":"Silesian cap","desc":"Scooped cap of linen cloth or felt with a wide raised hem, split in two at the front. Especially popular north of Bohemia."},{"id":"961591fe-76c1-4fa6-a421-978de372804a","name":"A suspicious bag","desc":"What might be inside?"},{"id":"96586306-727e-4336-82bc-ff01c3fee935","name":"The hose of a royal waiter","desc":"Tailored trousers that fit perfectly with a royal waiter's tunic."},{"id":"99910dfe-2ec7-4943-96a7-0cc27fd3a331","name":"Brigandine gauntlets","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"9a7a4ba8-bf08-4401-bfd5-58e13b20d454","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"9b448bd7-c101-4627-8e74-5d7e701cf1c6","name":"Charlie's hat","desc":"A hat of the Handsome Charlie"},{"id":"9b7869d7-d4a9-4979-87d2-52bea6440be8","name":"Hose loose","desc":"Only nomads and Hungarian horsemen wear such strangely frilled trousers wrapped tightly around their calves."},{"id":"a05a2567-ec81-4c81-875e-453d8a64eded","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a093ab6e-8973-405c-a87b-e1da4bdc9fca","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"a14c32e4-3e23-41b5-af0c-980b3c35090f","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a2dd8608-b428-4d2c-a676-ab9bbef7bab8","name":"Drowner's hose","desc":"These are the hose the drowning man was wearing. They smell awful and only a madman would wear them."},{"id":"a2e150f0-df24-4eea-8891-ea03dea12f8a","name":"Riding gloves","desc":"Gloves made of fine deerskin are quite flexible and retain the touch in the fingers, so they are perfect for riding."},{"id":"a2e58fdb-0179-4b1b-9299-2252a8c021b7","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"a36cd28f-4f1e-407b-8769-4f69c4be3eef","name":"Gnarly's gambeson","desc":"An old quilted coat that has been stitched a hundred times and also sewn a hundred times."},{"id":"a3f1ffe2-8bc8-4411-843e-4ac3231257a9","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a3f652b1-dd99-4862-9256-85416824b8b8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a4fa9057-3a42-4df7-8277-390e6da4c195","name":"Bavarian plate legs","desc":"A leg protection consisting of forged plates of sheet metal suitably fit together. Such armour protects the warrior's entire leg, but its weight depends on the craftsmanship of the maker."},{"id":"a5427b6d-f30d-4090-af39-50e793693800","name":"Lords of Holohlavy caparison","desc":"A Caparison in the colours of the Lords of Holohlavy."},{"id":"a55966fa-0937-40bb-aaae-fa0bccc7180a","name":"Short aketon","desc":"A quilted coat sewn to the best fit, so it is great to wear and does not restrict movement. An excellent soft layer under other types of armour."},{"id":"a6d373c3-de69-4cd7-8355-740da04cf8f8","name":"Noble's quilted hose","desc":"Thick wool trousers, well made of honest fabric so they don't hinder movement and last a while."},{"id":"a7f1527d-299c-4796-bec9-7acc14c59e4b","name":"A suspicious bag","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"a88da312-9523-4790-851a-773122af3413","name":"A suspicious bag","desc":"What might be inside?"},{"id":"a979cc8b-7256-4e65-8f90-b47909cc97f3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"aae29d34-83e1-48a6-9d63-d70445ab0c9f","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"ab7226df-7798-4d48-b3ee-20d5dd26408b","name":"Chamberlain Ulrich's hat","desc":"The magnificent wine coloured chaperon of the Trosky chamberlain Ulrich."},{"id":"ab7e7c7f-b03f-4d58-8f88-943bdfed50de","name":"Drowner's gambeson","desc":"A quilted long gambeson soaked in dirt and much worse stuff. Its wearer surely died a horrible death."},{"id":"abe9eb98-a43c-457a-9bd6-92d0ea455526","name":"St. Katherine's medallion","desc":"string name changed, delete me"},{"id":"ac032cfa-5a67-46e6-8d85-25df71e8dfcf","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"ac2dfada-15da-429c-af13-e61716207018","name":"A suspicious bag","desc":"What might be inside?"},{"id":"accfbe2c-cffb-42a6-b468-3b9e715e2194","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"ad08bfd8-430c-4310-a186-e9fefbbe638d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"af34b82d-7459-49f4-8fe4-8480f254ba5e","name":"Brocade hood","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"af8c405e-7cf5-48af-befe-7f049aca4908","name":"Katherine's dress","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"afc7e686-9be8-49a4-b1bd-a2b740d3581c","name":"A suspicious bag","desc":"What might be inside?"},{"id":"afe31429-33dd-40d2-8550-71cbc55e67e2","name":"Bascinet with aventail","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"b10e85e2-e266-42f4-9b0a-31d617d36416","name":"Legate's tunic","desc":"An exquisite quilted tunic of a papal legate, a perfect example of the mastery of the Italian masters of the sharp needle."},{"id":"b428c02f-524f-47ba-866a-f3d04f2ff7c3","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"b436b689-12e4-4b1e-8407-427c92d9d2c3","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b4c5fae6-1289-4456-ba60-b5de7da55dd8","name":"Short aketon","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"b6374bb5-6426-41a6-a0ab-c53e132eef28","name":"Sigismund's hood","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"b75b94e6-47e1-4202-a2dd-2aaf245d3ea8","name":"Nuremberg gauntlets","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"b825303a-2745-4363-9923-c3320b2ff83e","name":"Padded collar","desc":"Short quilted collar protecting the neck of the fighter."},{"id":"b84c0e49-d279-4a80-8d62-7374ae3cb054","name":"A suspicious bag","desc":"What might be inside?"},{"id":"b9182c51-a70c-4b00-9101-8900958e021e","name":"Lord Semine's necklace","desc":"Necklace for the winner of the swordfighting tournament at the Semine's wedding. Gnarly was right that Lord Semine really had to pay a big money. Maybe he didn't believe anyone but his son Olda could win the tournament."},{"id":"bab3f816-c19e-4cbb-a91d-229d3b649261","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"babd3d0d-0966-4d76-8ce1-694dce509666","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"bb34c92e-505b-4a48-bd95-652ce458d876","name":"Pavlena's necklace","desc":"A simple pendant, made for Pavlena by her lover a long time ago."},{"id":"bb7c554b-119a-424a-a6b4-3989046a858f","name":"Eggman's hat","desc":"A hat pulled off the head of the bandit Eggman. Fortunately it doesn't smell as bad as he does..."},{"id":"bd3f772d-ece1-4923-bbfd-666b867f30c0","name":"Legate's tunic","desc":"An exquisite quilted tunic of a papal legate, a perfect example of the mastery of the Italian masters of the sharp needle."},{"id":"bfaab83e-2b10-492c-b357-6c66154e5312","name":"Gartered hose","desc":"Long hose are a staple of men's clothing. They are worn by noble lords as well as simple folks. However, they differ in quality of fabric, cut or richness of colour. These hose are fashionably joined at the crotch by a separate flap."},{"id":"c0f92b8e-60f5-4792-9863-de36807ed981","name":"A suspicious bag","desc":"What might be inside?"},{"id":"c2016c1f-1b75-48d4-b486-12011cf7ece1","name":"Old gambeson","desc":"My old gambeson, a memento of the many battles and the life I left behind. It has grown old with me, but it still serves where prayer alone is not enough."},{"id":"c324577c-469f-4d89-a156-b7ab0a8ef45e","name":"Magdeburg plate arms","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"c36d9fa2-3484-487e-9fd6-4eea23bf4bf5","name":"Caparison sewn in Aulitz colours","desc":"A cape of thick cloth covering the entire body of the animal except its head and neck, decorated with embroidery. It makes the animal considerably bolder, but slows it down and limits its carrying capacity."},{"id":"c6654980-703d-4580-86ee-069011c52f80","name":"Jezhek's gloves","desc":"Part of Sir Jezhek of Holohlavy's armour."},{"id":"c69361d6-84d5-4c74-a399-97890561087f","name":"Legate's gloves","desc":"Legate's gloves made of very fine lamb leather."},{"id":"cba41456-97f6-47ae-aacd-7a7cbb94bd81","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"cc334dba-2d91-4af9-9c44-ac02bcbb8fec","name":"Nuremberg gauntlets","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"cd525ef4-d2f3-4227-bc0e-e8e6f1e49676","name":"A suspicious bag","desc":"What might be inside?"},{"id":"cf3b62b6-9d79-455d-9b8c-b41f83c6ccdc","name":"Leather apron","desc":"A short linen tunic joined with a leather apron for harder work in the workshop."},{"id":"cf5b3df5-d7dc-4829-ba91-c9a523754934","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"d0a78087-0630-4dcf-907b-f579f06e7d6c","name":"Handsome Charlie's hat","desc":"A beautiful hat I picked up from a bandit called Handsome Charlie."},{"id":"d25b23d1-2fda-4683-8bbf-6a98a8dc3436","name":"A suspicious bag","desc":"What might be inside?"},{"id":"d3f2c2e8-dd01-4455-b654-4513ca28c055","name":"A suspicious bag","desc":"What might be inside?"},{"id":"d5d764ec-3345-4bf1-b749-8229570c2519","name":"Lost hose","desc":"string name changed, delete me"},{"id":"d5e769f1-e3af-4b65-a2f1-d5b3ec952d9f","name":"Noble brigandine legs","desc":"A full leg protection of a newer type formed by the combination of lamerall and plate armour. While the thighs are protected by folded slats, the warrior's shins are encircled by well-forged metal plates."},{"id":"d6a2e36a-3a27-401f-8f17-f50137622fe4","name":"Erik's pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"d9f33173-7f4c-4c75-a871-43d52fc0e35a","name":"Jezhek's Brigandine","desc":"A cuirass bearing the coat of arms of Sir Jezhek of Holohlavy."},{"id":"da3889eb-9733-410b-b606-dd62805b58d5","name":"Legate's robe","desc":"Legate's quilted clerical robe of the highest quality."},{"id":"dacb4ec9-1bb1-483d-aa36-281abefb77f4","name":"Katherine's dress","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"dced0b0e-3bc3-4fa3-9c12-016e3ee1be12","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dcfd12a5-9025-4580-9848-8eb034253d66","name":"Peter of Suchotlesky's cuirass","desc":"Brigandine of the knight Peter with the coat of arms of the Lords of Suchotlesky."},{"id":"dd546f33-fdae-4faa-9c70-b4db06d8c459","name":"A suspicious bag","desc":"What might be inside?"},{"id":"dd5992c2-526f-419b-b066-ea17ab10fd84","name":"Mail coif","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"dd6e5871-9436-4825-9546-ee27c5f8735b","name":"Magdeburg plate arms","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"ddc174dc-5b3a-43a2-9afe-6ad4097bc296","name":"Servant's hood","desc":"Plain and poorly tailored, but it protects perhaps more than the best wool. For everyone can see at a glance that the wearer is in the service of his master. And a servant can only be kicked with impunity by his master, no one else!"},{"id":"df85f445-9eb1-43c2-82c0-39e793227aab","name":"Long pourpoint","desc":"A well-made long combat coat made by a real tailor, so it doesn't restrict movement like ordinary quilted gambesons."},{"id":"e055b9a3-0390-4a6f-8367-a042c5ed3eac","name":"Capon's bascinet","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"e0bec7ac-22f9-4c64-8bcc-fee959a652f7","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"e0d7263b-7ed3-4a28-9f76-a0f83000bd04","name":"Noblewoman's cotehardie","desc":"A light outer jacket, popular among wealthy burghers and noblewomen. It is commonly adorned with pendants, decorative buttons and embroidery. Long, flared sleeves are also in vogue."},{"id":"e1a1ad3b-cfeb-444d-993f-880d851a38da","name":"Royal waiter's hat","desc":"A hat to go with a waiter's suit, suitable for royal banquets."},{"id":"e25ba309-2e97-4b6e-a45c-2fcbe0bd2f0b","name":"Lavish caftan","desc":"What might be inside?"},{"id":"e27ffcf6-1c58-47f9-952a-58cfcd32021f","name":"Burgher coat","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"e311ea75-ae1c-493b-9bf5-65ee3152eb0e","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e337397f-eae6-4739-84d9-7fce2da75d4a","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"e3d240c2-b61f-4005-a822-10775d007b9a","name":"Embroidered coat","desc":"The coat with embroidered hem and forearm is fastened up to the neck with decorated buttons."},{"id":"e3ea9c63-6b63-4eab-9e0f-80b9ec856fd4","name":"Nuremberg bascinet","desc":"A helmet with a german klappvisor is an example of the highest armourer's art. It is easy to breathe in and through the widened visors it is much easier to see to the sides."},{"id":"e4d2f1c7-1332-4c7b-bde8-219fe44a4bba","name":"Short aketon","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"e535ea2b-1d06-413a-92ea-c4d0047e95ba","name":"Capon's bascinet","desc":"A helmet called a bascinet with a wide chainmail aventail that protects the neck and shoulders of the warrior."},{"id":"e59bb198-e5fd-484a-bb07-a1a07d29b1f1","name":"Drunkard's shoes","desc":"string name changed, delete me"},{"id":"e62d37e8-de7a-47b2-9507-2894b3f15889","name":"Noble gloves","desc":"Noblemen's gloves made of finely tanned leather keep the hands of the highest class safe and also show their social status by their quality."},{"id":"e6b10069-429b-47ec-be14-35f8c47e0a42","name":"Black hood","desc":"A hood that protects well against cold and discomfort, although it could definitely use some fixing up here and there."},{"id":"e717222e-fca0-4cc4-9d69-da449ff54d8d","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e78d6a70-5556-4d82-9c8c-c24a8e59e803","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e931202b-bd5f-4351-b97c-75a5a2a12f81","name":"A suspicious bag","desc":"What might be inside?"},{"id":"e935c1d0-d962-4887-8468-ddc65314e41b","name":"Black hood","desc":"A hood that protects well against cold and discomfort, although it could definitely use some fixing up here and there."},{"id":"e96c35a5-87ba-4feb-981c-cb93fc4923c7","name":"Burgher coat","desc":"A burgher overcoat made of fine fabric with rich embrodiery and decorated buttons."},{"id":"e99a819c-612b-4842-b6d8-6ecf35113ae7","name":"Lords of Holohlavy caparison","desc":"A cape of thick cloth covering the entire body of the horse decorated with embroidery. It makes the animal much bolder, but slows it down and limits its carrying capacity."},{"id":"ea2a2ccf-e5d3-4ef6-925d-a4124eb356e0","name":"Noble's bascinet","desc":"A helmet with a klappvisor in a fashionable round pattern. It is much better adapted to the face, so it is easier to breathe and the knight has a better view to the sides through the folded visors."},{"id":"ed42a542-70f4-486f-be47-5ac6a237ba87","name":"Magdeburg plate arms","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"ee471eb9-9e53-409a-aa1b-1722e5bf7e61","name":"Mail coif","desc":"This is a unique clothing asset for an important character. If you got it in game, report it!"},{"id":"ee6fa981-c5ba-42e7-a956-afed86202eb4","name":"A suspicious bag","desc":"What might be inside?"},{"id":"ef40d3ee-401f-47b3-83a5-439939f96bfe","name":"Drunkard's tunic","desc":""},{"id":"f223e51f-fdd4-405b-bc56-bd62ba7354de","name":"Lord Toth's chaperon","desc":"From under this chaperon came strong talk and would-be wisdom. The owner, despite his undeniable knowledge of proverbs and aphorisms, is surely already burning in hell."},{"id":"f2b4ccc8-6ccb-4cb3-997a-0e7941ffd9d3","name":"Jezhek's helmet","desc":"Part of the armour of Sir Jezhek of Holohlavy."},{"id":"f2c053a3-d8d0-472e-9fe7-4b63cfe1dc71","name":"A suspicious bag","desc":"What might be inside?"},{"id":"f352e55a-2a29-4469-b580-70d9c73ebbbf","name":"Drowner's hood","desc":"This stinking rag has a very sad story attached to it."},{"id":"f3bf351b-d625-44f9-ad9a-db91cf523b4d","name":"Plain troubadours' hose","desc":"These colourful hose are worn by troubadours, jesters and generally eccentric people who like to play pranks on others."},{"id":"f4887f82-0080-49b5-be04-8a8ac68e0fa8","name":"Godwin's ring","desc":"A ring given to me by Godwin. He said that if I meet someone named Oderin, I should show him the ring. Who knows what Godwin's up to now?"},{"id":"f68584b7-1460-4cf2-9485-b4c554aa54a8","name":"A suspicious bag","desc":"What might be inside?"},{"id":"f8f75f14-085c-407c-abc0-2977d4aa3624","name":"Legate's hose","desc":"Decorated trousers of the papal legate, made according to the latest Italian fashion."},{"id":"f9a913dc-2038-4769-b7b6-2101a09a1060","name":"Cleric habit","desc":"A habit, or long, single-coloured outer robe of coarse cloth, is worn by priests and monks. Besides the shaved tonsure on the head and the bare, beardless face, it is a clear mark of a cleric."},{"id":"fbe48ef0-40da-424e-af44-41e9e7579437","name":"A suspicious bag","desc":"What might be inside?"},{"id":"fcf3b5a7-7c66-4809-a0dc-b0b7bae6c296","name":"Cheap ring","desc":"A plain and shabby copper ring."},{"id":"fd69ff98-89fb-4268-b97a-65a8a58b1b1b","name":"A suspicious bag","desc":"What might be inside?"},{"id":"fdb7bcd9-3e53-46dc-86e6-1d7bec6fc529","name":"Head bandage","desc":"A bandage around the head."},{"id":"ff692a18-0b9a-4725-96ff-f5e55bd3a2f2","name":"Burgher's shoes","desc":"Low bugher shoes with buckle and decorative clip, ideal for a short walk or into higher society."},{"id":"ffd25d84-b190-4a79-a6ac-2d9bf7e5cab0","name":"Saxon bascinet","desc":"A helmet called a bascinet with a fitted klappvisor of an older drop-shaped pattern. The helmet is fitted with a wide chainmail aventail, so it protects the whole head and shoulders of the warrior."},{"id":"ffe35c10-6a19-42f3-9960-1c4801fd1fbf","name":"Mended padded leggings","desc":"Padded leggings that have seen the world. They are comfortably broken-in and freshly repaired so they can keep on serving their purpose."}]
\ No newline at end of file
diff --git a/src/data/meta.json b/src/data/meta.json
new file mode 100644
index 0000000..5460f40
--- /dev/null
+++ b/src/data/meta.json
@@ -0,0 +1 @@
+{"source":"https://github.com/pryans/kcd2-cheat","cheatModDocsVersion":"2.18","fetchedAt":"2026-07-13T07:06:21.835Z"}
\ No newline at end of file
diff --git a/src/data/perks.json b/src/data/perks.json
new file mode 100644
index 0000000..86ac25b
--- /dev/null
+++ b/src/data/perks.json
@@ -0,0 +1 @@
+[{"id":"0133008f-09cf-4b68-a434-ea7f7b0283b3","name":"Burial","desc":""},{"id":"01c3b32a-5751-4c98-b6ab-258d02370382","name":"Hardcore Mode - Constants","desc":""},{"id":"01e845c3-34ca-4bd1-9f08-72ac0e19af57","name":"Kitchens","desc":""},{"id":"0298f5cd-21e3-4284-95ff-87114609832b","name":"Rabbi","desc":""},{"id":"029ab094-21b6-45f2-a242-557a6d340eb0","name":"Mint Masters","desc":""},{"id":"032ecad8-f7fd-48d6-b268-573025598e37","name":"Witchcraft","desc":""},{"id":"0335c283-6c1b-402d-acd8-0edd48ef38ae","name":"The Conquest of Kuttenberg","desc":""},{"id":"051028ac-d94c-4538-99be-fc76c1abdfbf","name":"Jail","desc":""},{"id":"06940cc6-0c96-421a-ae90-1c4079f87c0f","name":"Negotiator","desc":""},{"id":"0731a146-6220-43aa-989b-f2993d3390a7","name":"Holy Roman Empire","desc":""},{"id":"075e3563-168f-481b-8a25-d0566763a05c","name":"John II of Liechtenstein","desc":""},{"id":"07bda032-e4b0-45b7-a462-6e525b2ba69c","name":"Ius Regale Montanorum","desc":""},{"id":"084dd7fd-daee-4041-bae1-c58a0c132292","name":"Relieved","desc":"You've confessed to all your wrongdoing, made reparation to Virgin Mary and undertaken a pilgrimage of repentance. You have succeeded in cleansing yourself of your sins. Try to keep it that way! Now, when you get a good sleep (at least 4 hours), you'll subsequently learn new things faster and improve in skills you already have."},{"id":"0856ace1-3956-4cec-8283-f3c5374f5d1a","name":"Sir Hanush of Leipa","desc":""},{"id":"09d81b58-1a30-4d96-8eb4-80db04446870","name":"Miners","desc":""},{"id":"0a3d5815-b962-4198-b003-1eb0a7459903","name":"Gamekeeper Rules the Woods","desc":""},{"id":"0b129319-de62-41f2-97ef-4b9c10f370c9","name":"Player Theresa - fader protection","desc":""},{"id":"0c358b88-0305-497e-89ea-8637c67b6209","name":"Taverns, Inns and Innkeepers","desc":""},{"id":"0d3322fe-5b3f-47c5-8a21-1fa5e5cffe36","name":"Charcoal-Burners","desc":""},{"id":"0ef3b73a-3c20-4f82-981e-e1fc57a4f1f6","name":"Player Theresa - companion-horse","desc":""},{"id":"0f22368c-4d37-4250-b536-0c0b707b00fd","name":"Silver mining","desc":""},{"id":"0f783667-e997-4211-83fe-bfbaa29c9a49","name":"Towns and Cities","desc":""},{"id":"118def30-4fc4-4fbe-96ac-01f7d1626204","name":"Swordsmiths and Armourers","desc":""},{"id":"12bbb8f4-4d0e-440a-8adf-9563120a2389","name":"Invective","desc":""},{"id":"12c75fff-d00d-4cb0-8c27-4a8e4838dc14","name":"test_dummy_perk","desc":""},{"id":"148c15e7-9be5-4b05-8db6-548823f7a800","name":"Dragon Bones","desc":""},{"id":"14c9a9c7-84ef-426b-8fae-1fe98b3bb048","name":"Prokop of Luxembourg","desc":""},{"id":"15e3f93f-7a6f-4895-91f6-458a762858eb","name":"Ponds of the Trosky Region","desc":""},{"id":"1627a1b6-64c5-422f-ac2d-3a6abc071690","name":"Hunt attack","desc":""},{"id":"1672a664-8b97-42b5-b390-84378bdefbf3","name":"Clothing and Fashion","desc":""},{"id":"169e4028-ccef-4ff1-b89f-b14d4ba2853e","name":"Arabian Blood","desc":""},{"id":"18460049-f8c3-488c-a2df-6cac92762bb1","name":"Windmills","desc":""},{"id":"191fa81a-fb9d-42d3-a2bf-d161a54eebb9","name":"Books and Libraries","desc":""},{"id":"1944cf3a-3048-4ab0-ad70-063961007e02","name":"Construction works","desc":""},{"id":"194658be-facc-4e14-bac9-9cff09de36eb","name":"Player Theresa - Jail Recovery","desc":""},{"id":"1a306045-415a-438d-b612-6f354b8717e2","name":"Bakers","desc":""},{"id":"1a775793-dc9b-4d14-b2b6-5dde2f314322","name":"Zimburg Family","desc":""},{"id":"1acdcbbd-c47d-45a1-a839-4a292cb9e646","name":"Fabrics","desc":""},{"id":"1b86388a-99d5-4321-9f8c-345eb6f5e62b","name":"Jews","desc":""},{"id":"1b879096-d118-46d9-8e0f-281045f50e30","name":"Courtliness","desc":""},{"id":"1ba52d97-abef-4e36-8d2f-71d4a3c61123","name":"Municipal Finances","desc":""},{"id":"1baabb30-8619-4fe9-a8ea-5322b6d13e77","name":"Sedletz Ossuary","desc":""},{"id":"1bb2892a-43a1-40c0-88cb-0f8753ea92dc","name":"Gothic Architecture","desc":""},{"id":"1c52755d-c0b3-49e2-8af4-89d308f4df91","name":"first_aid_I_ability","desc":""},{"id":"1c8ff24a-e3fb-48db-90c9-f2034c129886","name":"Noble Officials","desc":""},{"id":"1d8d37bf-67fb-41d1-9661-edfebbc9b0d2","name":"Prague","desc":""},{"id":"1e481442-0ea3-4af1-8ea4-47d579ffa51a","name":"Charity","desc":""},{"id":"1e53b07d-8012-44b1-ace6-3504558f04aa","name":"Hardcore Mode","desc":""},{"id":"1e7c2255-b068-47a0-9447-4e0fe5205e8c","name":"Hardcore Mode - Buff","desc":""},{"id":"1f0caa02-f824-4421-8621-97cc4d6baafb","name":"Jitka of Kunstadt","desc":""},{"id":"1f8a2070-c21e-4d11-b3e0-f379c5394291","name":"Stonemason","desc":""},{"id":"1fe29784-4e8a-4e1f-9f78-06ee76bd7e93","name":"Tools","desc":""},{"id":"200a9a17-be64-437d-9354-d993f97b8182","name":"Armoury","desc":""},{"id":"21cf8626-284c-4f85-a1ed-0eaaeae8d6ed","name":"tackle - companion","desc":""},{"id":"2381b050-5d9d-4f8b-977f-c20d70b6759c","name":"Noble Marriages","desc":""},{"id":"23d8345b-a8f0-4bf2-84de-f6a5ce232822","name":"Alchemy","desc":""},{"id":"245b6b57-655a-4b04-a5af-8679dd7cb3ed","name":"Hygiene","desc":""},{"id":"24a9b014-9415-44af-9053-40c224ce7f42","name":"Locksmiths","desc":""},{"id":"24e01c3b-eba8-47fa-a74b-1132fcbda216","name":"Diseases","desc":""},{"id":"2542f0bd-ebb1-4dc7-a13a-08deb50f1204","name":"Gardens","desc":""},{"id":"25ab34de-54a5-4400-9968-7870340a186b","name":"Highborn Prisoners","desc":""},{"id":"27c70159-3e9a-4cca-8715-9dca1f4ab805","name":"Musa of Mali","desc":""},{"id":"27c8fc49-d465-48fe-87a9-0417ec507fc0","name":"Chronicles","desc":""},{"id":"280c4479-84cc-4936-b03b-a094bafc1ca0","name":"first_aid_I_script","desc":""},{"id":"2946fd76-7278-47e0-8078-92de62e0b94f","name":"Baths and Bathmaids","desc":""},{"id":"296aeca5-029e-4bd3-9e25-59d2bff762da","name":"St. Wenceslas' Crown","desc":""},{"id":"2a4a3b49-7b74-4e00-8e03-58ecfcbd481a","name":"Childbirth and Obstetrics","desc":""},{"id":"2b024592-efdc-4282-916a-e5ceb0197bd8","name":"Heavyduty pony Companion","desc":""},{"id":"2ccea5e0-5a8d-4c48-b219-79554b377d9e","name":"Sigismund of Luxembourg","desc":""},{"id":"2cf779bd-b04e-4bf8-83f6-ea4ecf93f3f5","name":"Miskowitz","desc":""},{"id":"2cfb52ff-05f8-4277-bcb8-c10e821b2a78","name":"Beggars","desc":""},{"id":"2d3236c2-08c8-41f1-999a-10d73a5e2b96","name":"Water-Driven Sawmills","desc":""},{"id":"2eb5a46b-3d1e-460a-b4b8-f8373bad96c6","name":"Painters","desc":""},{"id":"2f446df8-79ba-4f94-93f3-d679a670e025","name":"The Burning of Skalitz","desc":""},{"id":"300440d6-e9c8-4386-94e2-6b93e9eddb98","name":"Brotherhood of Corpus Christi","desc":""},{"id":"31446b2c-2973-48e2-93a9-95204b17e85b","name":"Heraldry","desc":""},{"id":"31a75f15-af01-4d5d-bae6-cb979cfc874b","name":"Faith and Devotion","desc":""},{"id":"31b80a19-1dce-413b-bdc6-10f1744de599","name":"closed_visor_debuff","desc":""},{"id":"348ec66f-2a5c-4995-9a32-084c271a28e4","name":"Mesoles","desc":""},{"id":"34d15c53-dfcb-4a44-af90-96bd52467b35","name":"Islam","desc":""},{"id":"34d9159a-69b0-4476-a6a7-9739feaec657","name":"Permit to carry a weapon in Kuttenberg","desc":"For your help to the Kuttenberg swordfighting brotherhood, you were granted permission to carry weapons for personal protection, inside the city walls. The permit applies only to melee weapons, not to ranged weapons or the wearing of armour."},{"id":"35c6cae3-59a1-44d2-b39f-5314d9ba5141","name":"Music","desc":""},{"id":"366b32c0-42c7-4166-850f-7c6cdb6e2e97","name":"Albich of Uniczow","desc":""},{"id":"37433f7b-9c2e-48e2-bce7-af8d34b403c8","name":"Nightmares","desc":"Since childhood you have been troubled by a recurring nightmare in which you are being chased by a colourful jester. Although the dream is repeated night after night, it still frightens you as much as when you were little. You awake so shook up that all your stats are lowered for a while."},{"id":"386fd13a-bf90-4ad1-88b3-20ce22aa9f3b","name":"Kuttenberg","desc":""},{"id":"3a67532c-5d97-4c05-a68e-a1fe0ce124ba","name":"Charles IV","desc":""},{"id":"3a67ecae-81cc-4fa6-8119-97078b44aad2","name":"Player fader protection","desc":""},{"id":"3ac224b1-465b-4c69-a00c-539d13fb90c6","name":"Villages of the Trosky Region","desc":""},{"id":"3c063202-799a-4c5e-b46a-be706f99805f","name":"Prostitution","desc":""},{"id":"3c934831-99c9-44e5-9f1c-7c3ace7b3b37","name":"Feudalism","desc":""},{"id":"3d375b13-001f-449c-b186-f49ed22c5fb7","name":"Winegrowers","desc":""},{"id":"3d58547a-bd9b-4260-9013-12d3e49f681c","name":"Arma Diaboli","desc":""},{"id":"3d9c9a1b-dee4-4d9f-b756-1cbf5e5f06cb","name":"Life in a Military Camp","desc":""},{"id":"3da4731a-76c4-42b0-8680-2f4a64ee2333","name":"alarm - companion","desc":""},{"id":"3db58f16-0f80-42e3-bf20-03965465ce62","name":"Coin Minting","desc":""},{"id":"3e22265b-5db8-4ab2-878d-940fab2e97fa","name":"Woodcutter","desc":""},{"id":"3e45a6d5-f5e3-464e-858c-c63f3eb2a10c","name":"Beverages","desc":""},{"id":"3e664a4c-7d5f-439f-a73c-e0359671575c","name":"Ratter","desc":"Other dogs don't react or bark at yours. Enemy dogs will still attack however."},{"id":"4029a057-492c-4b6c-9a47-1616bc658f81","name":"Player","desc":""},{"id":"42a1dca4-3506-41f2-a67f-dd658cf214c0","name":"Town Gates","desc":""},{"id":"431c61fb-c0ca-4dba-af80-d13219db8657","name":"Damascus steel","desc":""},{"id":"43412723-c906-474a-a8de-3711a011a8c7","name":"Tithes","desc":""},{"id":"43e912f3-a202-4cd0-b45d-beadf0e61ef6","name":"Wenceslas IV","desc":""},{"id":"4435a68a-f420-4f0c-9c1d-dd4134c8a795","name":"Counterfeiting","desc":""},{"id":"44cc5f4b-3341-4e64-9ae9-1de47a60d07d","name":"Smugglers","desc":""},{"id":"4562bdc8-054c-43c6-b625-f133c88e6465","name":"Vineyards and Wine Production","desc":""},{"id":"45cf9c16-5767-4587-bbef-e833553f4cdd","name":"Sedletz Monastery","desc":""},{"id":"46f3ea9c-2564-4801-99d4-8ac2d8903ff0","name":"Sir Markvart von Aulitz","desc":""},{"id":"47323406-0e0a-4f0e-babb-4f8d4b24f7d9","name":"Thunderstone","desc":""},{"id":"473a83f2-e34b-4cf2-8ae0-8a0e33eb87b6","name":"Katherine","desc":""},{"id":"48136e07-2fe8-47ae-af70-e00102a8b0b9","name":"Camping","desc":""},{"id":"49d8f31c-f10f-4497-b1db-764e5ae99ca8","name":"Mine Leaseholders","desc":""},{"id":"4c0ce4cc-689a-4f92-b8a0-bf0de2c54bf2","name":"Jewish Quarter in Kuttenberg","desc":""},{"id":"4c4453fb-d0e2-43e8-9a05-b5b62464b409","name":"Gunpowder","desc":""},{"id":"4c7fcec4-0daf-47f6-8473-03d13ee5087a","name":"Crime and Punishment","desc":""},{"id":"4c9a9491-cb87-46c4-985b-f37f1a2b2501","name":"Combat Technique","desc":""},{"id":"4d06a3d0-c7b6-4959-9662-9ba9437c8e3c","name":"Player - companion - dog","desc":""},{"id":"4d51ba41-2c10-4281-9308-fcfed1fe0276","name":"Woman in a Man's World","desc":"Although you've been taking care of your whole family since you were little, it's often difficult to make it in a male-dominated world. It's as if all the men expect you to just obediently stir the pot and have babies. Because a man's word carries more weight locally, it's harder to persuade them of anything. You have a -2 penalty in Speech in conversations with men."},{"id":"4e2c4279-6b16-4a62-8ff2-3e989c6f8946","name":"First Aid I","desc":"Enables you to use bandages."},{"id":"4e385c28-769a-4a19-a678-e61e19e5f930","name":"Shepherds","desc":""},{"id":"4ed2a735-fe93-4111-af89-1e8932598be8","name":"Tailors and Drapers","desc":""},{"id":"4eeded19-e917-4ae9-af73-d716e053378a","name":"Priests","desc":""},{"id":"4f884fad-268c-4892-89f1-a3458ecc3749","name":"Italian Court","desc":""},{"id":"4f8bdd50-36e4-4364-8ab8-bb2313ffc917","name":"has_damaged_armor_debuff","desc":""},{"id":"519db599-76d4-4703-8c31-486fae00e473","name":"test_recipe","desc":""},{"id":"539ec93b-2d70-4558-a1fe-a68b33f0ca0c","name":"Konrad of Vechta","desc":""},{"id":"53cc1685-63c4-4c79-8dac-73a56242f23f","name":"Toilets","desc":""},{"id":"5563df98-8153-44df-bad4-4eff58cb8f1c","name":"Names and Surnames","desc":""},{"id":"55b0c75d-22b8-4cc0-99f4-059d05318234","name":"Bylany","desc":""},{"id":"56eab3d1-5e03-4091-a4cc-a2403bcff69b","name":"distract - companion","desc":""},{"id":"58c99fa7-5308-4563-bccb-437348a47b4f","name":"Horse-riding","desc":""},{"id":"5a3fd8d6-a647-4343-9d61-6ff9d80d4212","name":"Loretz","desc":""},{"id":"5b4fafc7-085d-44f2-95ed-171bb79f17da","name":"Furniture","desc":""},{"id":"5c900b84-286f-43b8-be4f-3d5f53b15e40","name":"Skeleton in the Tavern","desc":""},{"id":"5cd456bd-fa64-401d-8d2e-9a69e56f2b7d","name":"Apothecaries","desc":""},{"id":"5ec8cc9f-b1dd-45b6-b846-b320cd367986","name":"Player Theresa - companion - dog","desc":""},{"id":"5ef31fc4-244e-40ac-b088-03e5730ff5c1","name":"Claustrophobia","desc":"When you were a child, you got your head stuck inside a pail and couldn't get it off all day, until your father took an axe to it. Ever since then, you've had a fear of enclosed spaces. Wearing a helmet with the visor down makes you so anxious that your attacks are weakened."},{"id":"5f712362-63cd-4159-b9fe-e9933dcd8fd3","name":"Schools","desc":""},{"id":"60435334-e158-429a-9a8d-89d418dd90e5","name":"Italy","desc":""},{"id":"62611fd2-33c4-4e8a-b31d-a7c8ccde399e","name":"St. Barbara's Cathedral","desc":""},{"id":"62a1ba24-53a2-4e3f-9160-33cbd5912af1","name":"Trosky Region","desc":""},{"id":"62c6a774-2412-4a42-8f1c-ffdb76039fe8","name":"Town Garrison","desc":""},{"id":"63067fb0-76d9-40bb-ae6c-d8f7627d24f7","name":"Player Companion Immortality","desc":""},{"id":"63568d40-c0c4-4dcc-b43e-18fd620449ce","name":"Millers","desc":""},{"id":"63a9291e-ed5e-4ab3-87f2-12d0494f10b8","name":"Execution Place","desc":""},{"id":"6402905d-6cfa-4666-80bf-2a70b0b82bd1","name":"Haemophilia","desc":"Like your father and his father before him, you are afflicted with the family curse. All it takes is a scratch and you start to bleed like a stuck pig. Once it starts, the bleeding is faster and is harder to stop."},{"id":"64485ae9-3a6d-4bd8-927e-c96a6727d3f8","name":"Cumans","desc":""},{"id":"65be21cb-8e4f-4e23-bdd3-e65e7b68fa1e","name":"Language and Literature","desc":""},{"id":"66ee5e70-730d-4d1a-a952-7f46590bbaee","name":"Medieval Literature","desc":""},{"id":"684f8059-377f-42ec-a607-3927e3e3f58c","name":"Churches","desc":""},{"id":"698d7c46-9c25-4f38-9907-3d52db536c5e","name":"Italians at Sigismund's Court","desc":""},{"id":"6c62c41f-6b74-44f6-b566-5d1ac0d0425e","name":"Nomads","desc":""},{"id":"6e91b970-4ab6-47ca-bed1-edb962261076","name":"Crisis of the Late Middle Ages","desc":""},{"id":"703e2ddf-0b3f-42e3-9955-60953ce06ddb","name":"Venoms and Poisons","desc":""},{"id":"70aa202d-c0ed-49f6-94df-21cc1cda7a42","name":"Skalitz","desc":""},{"id":"70b2ef94-1a6b-4690-8acc-967573feca40","name":"Healing Herbs","desc":""},{"id":"7282b98c-627d-48dc-a976-8e2bac3e2fb1","name":"Land Army","desc":""},{"id":"734c075b-5354-4a72-b35c-21efa9c938cb","name":"Armour","desc":""},{"id":"740a92fe-3db3-4783-b42f-bd43cde854df","name":"Tournaments","desc":""},{"id":"742184a2-3cc8-49eb-a1a2-ec6b527b043f","name":"Educated Women","desc":""},{"id":"759d2a63-8a83-45d4-8158-d0f4a9e8848f","name":"Forgery","desc":""},{"id":"75cd2efe-4648-4161-a7c6-368f505b4d57","name":"The Western Schism","desc":""},{"id":"76e6a383-9a9c-4e87-a75c-e4c968833d5f","name":"Abductions of Wenceslas IV","desc":""},{"id":"788aaa24-f4d2-4b68-b4f5-6af1a921e72f","name":"Black Chronicle","desc":""},{"id":"792d0de8-eee7-466e-9321-902967524574","name":"Devils","desc":""},{"id":"7a398ef7-79d5-46c7-b598-f1811c902790","name":"University","desc":""},{"id":"7a5f8665-78b2-49f4-91d9-70dacb9db978","name":"Hospitals and Almshouses","desc":""},{"id":"7a920bbd-fda0-4027-bcd4-43a3b9042ad5","name":"Sources of Light","desc":""},{"id":"7af7a28b-be5b-44b8-b44f-cd933bea2bf7","name":"Tanners","desc":""},{"id":"7d11de17-847c-46b3-b4f1-79b6aa7cf68b","name":"Slaughterhouse","desc":""},{"id":"7dca9b23-783d-41b4-9c07-59c3564ce660","name":"The Abduction of Margrave Prokop","desc":""},{"id":"7de76b3e-0d80-4174-b031-4a616959497e","name":"Apollonia","desc":""},{"id":"80825cd9-7d7b-440f-aa57-75807e83aed9","name":"Always drunk","desc":""},{"id":"80b829ea-b5a3-4ac3-ac0e-e611716eb674","name":"Pillory","desc":""},{"id":"815729ff-0dc4-4746-8fdd-d5e7c5d51b26","name":"Weaponmaster I script","desc":""},{"id":"81c5d5ad-01bd-4f7b-a08f-71bb91f9ffaf","name":"Ore Merchants","desc":""},{"id":"82dd4343-8faf-4dad-a96d-c6bdbd17c497","name":"Journeymen and Apprentices","desc":""},{"id":"838339fc-c61b-4b75-9370-11b74b53158f","name":"Jobst of Moravia","desc":""},{"id":"83d79374-903c-46ce-84a2-3f826e75f70f","name":"Racing horse Companion","desc":""},{"id":"840f43d6-ff7b-416b-87e2-5fbaa8f221bb","name":"Radzig Kobyla","desc":""},{"id":"84191018-df9a-4afb-b502-e753d53e671f","name":"Old Kutna","desc":""},{"id":"8521c9ba-e8f9-4f3e-bd75-9f8a68ba061e","name":"Executioners","desc":""},{"id":"855594e8-f71c-4e0e-8e17-7c922c380755","name":"Armoursmiths","desc":""},{"id":"85b2b5a4-fac9-4463-ab91-ffb2d7ef7500","name":"Scholar","desc":"Your momentary Reading level increased by 3. But your Strength and Warfare skills have each incurred a -1 penalty."},{"id":"86594607-3dbd-4ebf-a4f2-fa961d926799","name":"Saint John's Eve","desc":""},{"id":"8952aeda-b15d-4253-864d-c9093b648608","name":"Locks","desc":""},{"id":"8b861dc2-5fd0-4a15-aa78-3351bd862060","name":"Morgue","desc":""},{"id":"8c76c38b-d4f8-4bb5-afec-170cbc9ae28a","name":"Woods","desc":""},{"id":"8ce92f2a-f330-43ea-b53e-5f12c392d72e","name":"John Sokol of Lamberg","desc":""},{"id":"8ced42ae-afe5-4739-9ae7-eb3374e95fa0","name":"Weaponmaster II script","desc":""},{"id":"8de0320d-5080-4355-9aa6-d497151b5994","name":"Kuttenberg Councillors","desc":""},{"id":"8e467c11-d262-4c80-a1f9-7ea875265308","name":"Weaponmaster I meta","desc":""},{"id":"8ec08e6c-6f43-41e5-91ae-008952c15ee3","name":"Semine","desc":""},{"id":"8ec2e96a-651e-4a4a-be51-b5b46eb952da","name":"Dread steed Companion","desc":""},{"id":"90cce987-8878-442c-bf66-bfc1d539b28a","name":"Johannes von Gelnhausen","desc":""},{"id":"912f7529-767e-4b3f-8246-d3fd73327bc0","name":"Village","desc":""},{"id":"91bb2d0e-dfff-4ead-9c4b-cd79702115bc","name":"Otto III von Bergow","desc":""},{"id":"92b0f7ae-0001-4ee7-a2bc-8418de7a4811","name":"Drinking Water","desc":""},{"id":"94e23a88-cbbe-4f63-a02b-318ecb1d9fb8","name":"Opatowitz","desc":""},{"id":"9533bcec-0ded-4263-9702-8d54e32ad058","name":"Player - companion - horse","desc":""},{"id":"95616222-6542-4fc9-927b-17750001b54f","name":"Warhorse Companion","desc":""},{"id":"95b4fb60-8e89-4499-af24-e32283ef50b2","name":"Dogs and Cats","desc":""},{"id":"98ec77dc-d4f0-4669-bcc6-b2cfd7e31fc9","name":"Army","desc":""},{"id":"991da35c-e3d7-47bc-a607-627645424049","name":"Raborsch Fortress","desc":""},{"id":"9930a43e-789a-41ad-8396-b5ee0c3e7a78","name":"lightImpactsVisibility","desc":""},{"id":"996f6baa-b380-483b-9fd3-df6f2ac13698","name":"Distract","desc":"DLC - You can send a dog to lure a person away. (obsolete)"},{"id":"9a1e9047-b08d-48d9-be86-1de3c837d7bc","name":"Heykal / Wild Man","desc":""},{"id":"9babbe52-36cb-455d-b36c-2b4d8d21c722","name":"Food","desc":""},{"id":"9bfc70bb-0afe-45bf-bc03-2bc9c588d4eb","name":"Minstrels and Musicians","desc":""},{"id":"9e52592e-769d-4146-8e9d-84d23f6dabf9","name":"Blacksmiths","desc":""},{"id":"9ea485a9-97e8-4d1b-97a9-d911db6b75d5","name":"Monks and Monastic Life","desc":""},{"id":"a1179d3e-67cb-48e2-b471-735631790616","name":"has_damaged_weapon_debuff","desc":""},{"id":"a239ee84-7f22-403c-aa63-fdc66b3d340b","name":"Metallurgy","desc":""},{"id":"a3ccba11-61b2-402e-8c6a-9e6a7c985fc0","name":"The Concept of Honour","desc":""},{"id":"a4a05350-4353-4259-846c-3678909cc6af","name":"Poland","desc":""},{"id":"a66149e3-71a7-440a-b287-60c23efbe6a9","name":"Cuman Killer","desc":"You've killed so many Cumans that your reputation precedes you - Cumans are afraid of you and there's a 50% greater chance they'll flee from combat with you. Your strikes against them will also be a lot more effective."},{"id":"a6742f6f-9cd7-4c10-af5e-229dc569fd9a","name":"The Lords of Kunstadt","desc":""},{"id":"a80a08ab-0211-419e-ad19-8d10f0d2db6a","name":"The Golden Age of Charles IV","desc":""},{"id":"aa714222-45de-4763-8fdb-e2bce5ad462d","name":"Conciliation Crosses","desc":""},{"id":"aa725966-98eb-4db2-8cd5-ad3d43b13f14","name":"Numbskull","desc":"Your mother dropped you on the head as a baby. She kissed it better and the bump soon faded, but ever since then, you're a little slow at getting the hang of things. This lowers your acquisition of experience."},{"id":"ab30ac89-3dfc-4afc-ab7b-fa49ac3415e1","name":"Otto IV von Bergow","desc":""},{"id":"ace2b39c-fc2c-4a97-9726-c262e0541473","name":"Kuttenberg","desc":""},{"id":"ad2d4107-9b6a-46db-b1cc-5e1258b1e423","name":"Liturgy","desc":""},{"id":"adb9b74b-a55b-402e-a726-00b97522ae18","name":"Farming","desc":""},{"id":"ae1553b7-9433-43a4-97be-1b20f19b97d5","name":"Huntsmen","desc":""},{"id":"b06ac099-9cc2-42c0-ae86-b33b8ab53b33","name":"Pschitoky","desc":""},{"id":"b3890081-841f-492f-8bdf-b3ae40f07694","name":"Butchers","desc":""},{"id":"b3e2c5d0-a7d3-4eb0-991d-27b89a27cdd6","name":"Synagogue","desc":""},{"id":"b4c56e39-f13b-4b2a-b0aa-0ceda4d7e727","name":"Mercy kill","desc":""},{"id":"b549ff10-26c9-4cca-96a7-759f9178d65b","name":"Weaponmaster II meta","desc":""},{"id":"b59a2f39-faf4-4a1d-88c2-c059dadc6abb","name":"Shakes","desc":"When you were too little to know any better, you fell into the well. It was hours before they heard you crying and got you out. Ever since then, you get the shakes from time to time, as if you were back again in the dark, chilly well. Obviously, that's not good for archery, pickpocketing or lockpicking."},{"id":"b643c608-ab63-463b-9777-ea6c9a7cba31","name":"Kunzlin Ruthard","desc":""},{"id":"b76f723d-b187-4661-b527-16beb6c9ba71","name":"Grund","desc":""},{"id":"b83629b0-f173-48eb-ba75-432f67ec3f50","name":"Bezoar","desc":""},{"id":"b8adc80a-7ce4-4923-bf69-f54bc3a32ff2","name":"Nobility","desc":""},{"id":"b93eb1ce-34bf-4188-909a-03f2b56b40b7","name":"Knighthood Training","desc":""},{"id":"b96bb32c-4cd7-4416-a124-69854c15571c","name":"Head shots","desc":""},{"id":"b9aa28f1-ccbb-4c0c-9718-c218f01d749b","name":"Consumption","desc":"You once caught a nasty chill and ended up with a persistent cough. Many thought you'd never survive, but eventually you healed. Nevertheless, since that time, you don't breathe very well and your stamina regenerates more slowly."},{"id":"ba7354ea-e609-442a-8b71-33c807e5a994","name":"Entertainment and Games","desc":""},{"id":"bc29793d-4f74-40a3-9c0f-4f5d81821f56","name":"Pennants and Banners","desc":""},{"id":"bc66340b-c5e8-4d64-9a51-794b9cc4e682","name":"Foreigners","desc":""},{"id":"bce94290-1e66-4e30-ad29-ee035a3deeb4","name":"Jan Hus","desc":""},{"id":"be09500d-13ac-4810-ab58-a8956953ff2c","name":"Danemark Mill","desc":""},{"id":"c0db80b8-123f-4531-a021-6abc3efbedca","name":"Carts and Wagons","desc":""},{"id":"c1854a5e-daa5-48c5-ae70-712abcb5c46a","name":"Rathouse and Town Hall","desc":""},{"id":"c3c4c774-5759-4e68-80fc-c70a295f183d","name":"BS recipe - r_horseshoeRacing","desc":""},{"id":"c40fa7f7-a486-47da-a3de-5b02384b931c","name":"Houses and Dwellings","desc":""},{"id":"c494f161-422a-4b5c-86ce-3043c514dfef","name":"Mining Officials","desc":""},{"id":"c533c01d-a2bb-47e6-9aa2-928fdd0bfd2b","name":"Burghers","desc":""},{"id":"c5abe66e-4989-4058-8c65-57545d25cb2b","name":"Animal Husbandry","desc":""},{"id":"c5ce87a8-433d-483d-9d3d-754d766cdb59","name":"Maleshov","desc":""},{"id":"c63bd90e-bd62-40e9-9bb4-8736f9a38e13","name":"Jan Ptáček (Hans Capon)","desc":""},{"id":"c6c0f9b3-d193-47e5-87fe-95bc43f21406","name":"Zimburg","desc":""},{"id":"c724eb62-bdb3-4888-8e3b-34eac85ce72b","name":"Glissade","desc":"Your armour and shields will suffer 20% less wear and tear in combat."},{"id":"c8420025-210f-4d20-bedb-7c4acea0dd84","name":"Prayers","desc":""},{"id":"c87664af-cdd9-4c47-8c59-17824b14479c","name":"Safe Conduct","desc":""},{"id":"c9520013-df96-4b8c-8fa8-3b5a81847667","name":"Murals","desc":""},{"id":"c9f2e81b-80eb-4b4e-b4e8-a3d3707524c2","name":"Ringen","desc":""},{"id":"ca838416-bab6-4b87-8614-edac24c3e7f1","name":"Beekeeping","desc":""},{"id":"cb42ba49-d375-4ddb-bf70-2717b4dbd2e3","name":"Burglars and Robbers","desc":""},{"id":"cb7b1507-77dc-41a5-9cbd-6add9487928c","name":"The Battle of Nicopolis","desc":""},{"id":"cb7d3b28-157a-49c2-baae-ad5e47483696","name":"Ore tax","desc":""},{"id":"cb9c2cf9-66e9-4dbd-b8f1-54fd5b738ef0","name":"Hunting","desc":""},{"id":"cba68de3-7546-4d45-8d5b-454cad40d83b","name":"Merchants","desc":""},{"id":"cbb5eda6-b349-4b49-8db8-675145312b95","name":"Amiable Customer","desc":""},{"id":"cbfe8abe-7fc9-4192-aed3-919051383706","name":"Horschan","desc":""},{"id":"cc9b2714-a7b3-43f7-9674-2f26a5ae1cef","name":"Chivalric Orders","desc":""},{"id":"cd1756c2-c873-4fb0-989a-b3017e4ee7ab","name":"Horsenip_horse","desc":""},{"id":"cd5d6a7b-8be7-4e38-9ff0-b247d004103e","name":"Wysoka","desc":""},{"id":"ce2fe289-4c26-45c0-803b-32627d288765","name":"Tapeworm","desc":"When you've got an appetite, you'll eat anything you can get your hands on. Folk say you eat enough for two. It's like you have a visitor in your guts who's eating you out of house and home. You get hungry faster, so you have to eat more often."},{"id":"cf761fd6-197e-4593-92c0-3ec6211cc061","name":"Old silver mining","desc":""},{"id":"cfc89b16-f3d2-4fb2-8978-858b64e14f80","name":"Trosky Castle","desc":""},{"id":"d05ecea8-edc8-4ca9-a65d-2f37e852f99f","name":"Latin","desc":""},{"id":"d092fbec-b011-479e-80db-7433bc55dacb","name":"Bailiff and City Council","desc":""},{"id":"d141a526-0ade-40c9-8b10-1934aca7489d","name":"Firearms","desc":""},{"id":"d1d2b402-8b12-40de-b9a2-e53c664426aa","name":"Baptism","desc":""},{"id":"d2105041-120b-4c06-8e61-1948a5fdf65d","name":"Somnambulant","desc":"You've always been a restless sleeper, sometimes so much so that you get up from your bed and go walking. It's not unusual for you to wake up somewhere else than where you went to bed."},{"id":"d3d75e11-5ced-49cc-8c49-b8517dbb139a","name":"Dry Devil","desc":""},{"id":"d482fcbf-72ad-4cdf-ac6a-4c6bb1486909","name":"Suchdol","desc":""},{"id":"d566ca42-329c-4913-b10a-8b8f449647a3","name":"Guilds and Crafts","desc":""},{"id":"d625cb71-305e-45bd-86fa-3113cb1851a6","name":"Ecumenical Council","desc":""},{"id":"d6a15dfa-25df-4a42-8c00-d95f11694edf","name":"Romani people","desc":""},{"id":"d9a87c38-75a4-43de-9e00-a01d41e1efe3","name":"Scribe","desc":""},{"id":"dc744495-333c-458b-88b8-a4fbd5efcc67","name":"Weapons","desc":""},{"id":"dcbe5794-5bd9-42dc-b232-0f387a668723","name":"Jan Zizka","desc":""},{"id":"dce595c7-5d2b-4344-bae0-8a4a4e965b2a","name":"Carpenters and Joiners","desc":""},{"id":"dd4260a9-158f-49b5-b0d0-6f93812c519f","name":"BS recipe - r_horseshoeNoble","desc":""},{"id":"de1d052c-ee5f-4f4b-8247-9a729a416e1f","name":"Rosa Ruthard","desc":""},{"id":"de7e49fc-301b-40fb-9d58-180fa3b6ee48","name":"Player Theresa","desc":""},{"id":"df811a2e-2425-4e3a-b9e0-379327ed15c0","name":"Roman Catholic Church","desc":""},{"id":"e090eb68-b408-4ae7-9698-7421762c210b","name":"Kuttenberg Families","desc":""},{"id":"e1b86b90-ecda-4825-9b41-ccef658ea9ff","name":"Fishermen","desc":""},{"id":"e23cee67-1fd9-487c-9012-7a11d961e938","name":"Gord","desc":""},{"id":"e2907d0b-7d1f-4244-b5fb-3770e1bd8798","name":"Malters and Brewers","desc":""},{"id":"e3d3f5b8-0772-493a-9f43-33270f9f533c","name":"The Popes","desc":""},{"id":"e47198f9-6710-4513-b7ac-43e01288e3dd","name":"Dugout Shelters","desc":""},{"id":"e4809754-0ced-4843-b4e3-1e3e6f9eb767","name":"Maypole","desc":""},{"id":"e74b092b-8f95-468e-aaa0-8178a6342d5f","name":"Money","desc":""},{"id":"e8284dca-72b8-412d-8699-ea52ba68908d","name":"The Devil's Den","desc":""},{"id":"eb43dcb0-b723-4a39-9a68-2c9ac2638630","name":"Garbage and Waste in Cities","desc":""},{"id":"eb95fa4d-6e36-40d5-8268-e6edd7bc39a2","name":"Astrology","desc":""},{"id":"ecf06bb2-f5ff-4f40-a126-888df42d5965","name":"Inquisition","desc":""},{"id":"edac71f9-fca7-496b-9fb4-2933cdd2098c","name":"Greetings","desc":""},{"id":"ede2054e-2ebc-4210-a057-aeeb05ac8595","name":"Nebakov","desc":""},{"id":"ee1bc867-b0c6-48ad-8192-b641b0c9e278","name":"Duchy of Brabant","desc":""},{"id":"ef2039dd-c893-4eb2-b41e-2d84b4cc1117","name":"Trial by Ordeal","desc":""},{"id":"f1c32c23-bcda-4d37-a6be-cdb4030b04e6","name":"Farmer","desc":""},{"id":"f21034f8-fcea-4a79-983a-0dd9adbc99b8","name":"BS recipe - r_horseshoeNomad","desc":""},{"id":"f4fac40b-39d4-4d4f-a453-31c42ab670fa","name":"Pilgrimages","desc":""},{"id":"f52c2b84-9434-41d7-ad81-bd8cc5869ca2","name":"Water Mills","desc":""},{"id":"f57d426c-28cf-4f67-83cc-a9fce88efac6","name":"Women in the Middle Ages","desc":""},{"id":"f5eade31-0ecb-4d64-a190-eff5e30333b8","name":"Rabstein","desc":""},{"id":"f6585ed6-2826-42c7-b3b5-8c50082f1a3f","name":"Gravediggers","desc":""},{"id":"f66ef922-6f2b-4735-8af8-4ab5f17d7890","name":"The Three States of Man","desc":""},{"id":"f761cc60-eec9-4b89-8acc-97da57f50eb5","name":"Paganism","desc":""},{"id":"f811cd17-ba87-4d0c-a756-3a64405b578f","name":"Golden Horde","desc":""},{"id":"f88633f3-ce65-4939-b424-ba6147208029","name":"Zavish the Black of Garbow","desc":""},{"id":"f94de479-0aec-45e3-9743-a120f5076f93","name":"Liturgical Items","desc":""},{"id":"fa299718-b1eb-4664-8769-25f82fb95de9","name":"LimitSprint","desc":""},{"id":"fbedb426-410c-4614-952a-1086b6f6554f","name":"Brittle Bones","desc":"Ever since you were little, stairs and ladders have been your worst enemies. All it takes is a little fall and your bones break with an awful crack. You suffer much worse injuries than others when you fall."},{"id":"fc3c4d7a-40b6-40da-b9dc-468a9cffa516","name":"Papal Legate","desc":""},{"id":"fc87570c-3c8e-4a8e-b457-b8d5681a2e9d","name":"Popinjay Shoot","desc":""},{"id":"fd9f9913-f924-4e45-a3ba-ecc2dca9b150","name":"Donor","desc":""},{"id":"fe543779-f290-428a-acd5-f99d19208e87","name":"Folk Songs","desc":""},{"id":"ff1723f4-79fb-4d24-9cc6-78945f26a2a0","name":"Ulrich Vavak of Neuhaus","desc":""},{"id":"fffd2b9b-188b-4dbd-8cd4-a57747cade77","name":"Travel and Trade Abroad","desc":""},{"id":"010f8643-105c-447d-bc02-7e086a948a02","name":"Shoulder Throw","desc":"After two direct punches, you can flip your opponent to the ground with a punch from the right."},{"id":"03d70183-216b-428f-9f8c-e9b76882acdd","name":"Elbow Uppercut","desc":"After two punches from the left, finish your attack with a right elbow to the opponent's chin."},{"id":"04c2833f-a9e5-4b89-95a5-4ea32bcae12f","name":"Crushing Blow","desc":"After an upper and then left strike, finish with a strike from the right, hitting your opponent in the face with the edge of your shield."},{"id":"05425c4c-16af-47d1-8fbf-a0d74a0b5c36","name":"Lower Left","desc":"After a left and then right strike, finish your attack with another left strike to slip past your opponent's weapon."},{"id":"065e82a4-2339-40bc-82ca-3ad76a6ae762","name":"Left Hook","desc":"After a left and then a right punch, you can finish the attack with another left punch to your opponent's face."},{"id":"08193537-25c5-41dc-b819-a61d1662c401","name":"Hammer","desc":"After a right punch then a straight punch, finish the attack with another right punch to the opponent's face."},{"id":"12c11e0d-dd87-41ee-9e02-43a96e13a71c","name":"Knee Crusher","desc":"After an overhead slash then two quick left slashes, finish with a strike from the right directly into the opponent's knee."},{"id":"16cc1b40-d9a6-4f6e-ab05-c4696853ed76","name":"Crushing Blow","desc":"After an upper and then left strike, finish with a strike from the right, hitting your opponent in the face with the edge of your shield."},{"id":"17cf1cf8-278e-4b31-af19-a7804ea5f65e","name":"Shield Deflect","desc":"After a right slash and two quick left slashes, finish the attack with another right strike, hitting the opponent hard in the ribs with your shield."},{"id":"19b028c2-5750-4ab6-bf91-f16bb2ed6f3b","name":"Mittelhaw High","desc":"After a straight thrust and two quick right slashes, finish the attack with a left slash across the opponent's neck."},{"id":"21a87571-93f8-44c5-b1ad-a8b9946e3904","name":"Mittelhaw High","desc":"After a straight thrust and two quick right slashes, finish the attack with a left slash across the opponent's neck."},{"id":"226d8009-a0da-4b2b-8a90-62ce709a1eae","name":"Lower Right Strike","desc":"After a right and then left strike, finish your attack with another right strike to slip past your opponent's weapon."},{"id":"2482ca95-50f3-4a58-b52c-5ce11c86464a","name":"Lower Left Strike","desc":"After a left and then right strike, finish your attack with another left strike to slip past your opponent's weapon."},{"id":"25403625-7c0b-4476-ae71-410a3be88d60","name":"False Edge","desc":"After a direct thrust and an overhead slash, finish the attack with a left slash, passing along the opponent's blade."},{"id":"29904729-cd69-498a-bdfc-0fb1c69aed44","name":"Headbutt","desc":"After a sequence of two right punches followed by a left punch, finish your attack with another right punch, driving your opponent's face into your elbow."},{"id":"316cd845-eb2a-4aa2-b746-a1d919200b43","name":"Knee Strike","desc":"After a left and an overhead slash, finish the attack from the left side with a thrust to the opponent's knee."},{"id":"3386aba6-5325-4ee5-a7c5-87fcef473af6","name":"Mittelhaw","desc":"After an overhead and a right slash, finish the attack with a left slash across the opponent's abdomen"},{"id":"3ab6a961-022f-47bd-bb05-981ab2a7fa8e","name":"Lower Right Strike","desc":"After a right and then left strike, finish your attack with another right strike to slip past your opponent's weapon."},{"id":"459b4242-5225-484d-8245-40d84fa85c91","name":"Fiore Halbschwerten","desc":"After an overhead and left slash, finish the attack with a right slash, stabbing the opponent in the chest with both hands."},{"id":"4675152d-a104-4a07-bdd5-1299339f44e5","name":"Pommel Strike","desc":"After two direct thrusts, finish the attack with a right slash, driving the sword pommel into your opponent's face."},{"id":"4a16d632-4ec7-4357-95ea-b0af663f2e17","name":"Lower Left Strike","desc":"After a left and then right strike, finish your attack with another left strike to slip past your opponent's weapon."},{"id":"4ce6ceda-03b8-4448-98a7-abdbd41e3ea3","name":"Lower Left Strike","desc":"After a left and then right strike, finish your attack with another left strike to slip past your opponent's weapon."},{"id":"547edd64-219e-4240-9257-cf406cdbe8b3","name":"Strong Edge","desc":"After performing a left and right slash followed by a direct thrust, finish the attack with a right slash, cutting the opponent’s throat."},{"id":"5e645502-903b-44e3-bb8a-96290d4fac22","name":"Crushing Blow","desc":"After an overhead and left slash, finish your attack with a right slash, hitting the opponent’s face with the pommel of your sword"},{"id":"602a92b9-c44b-4edf-980a-756cddbc78b9","name":"Mittelhaw","desc":"After an overhead and a right slash, finish the attack with a left slash across the opponent's abdomen"},{"id":"866c5520-1eeb-4f15-b611-d21ef7792d90","name":"Bohemian Backhand","desc":"After a left and then straight punch, finish your attack with a right punch, smacking the opponent's face with the back of your hand."},{"id":"8964d9b0-bd61-4d5b-8453-f02e6eabbe3c","name":"Lower Left Strike","desc":"After a left and then right strike, finish your attack with another left strike to slip past your opponent's weapon."},{"id":"8a9d7b1b-a500-448c-a4f0-0b294b1d1e49","name":"Scissor Strike","desc":"After performing a direct, left, and then right punch, finish the attack with another left punch, hitting the opponent's neck."},{"id":"8ff575a1-4534-49b7-99d1-4aec54bbdfdc","name":"Knee Crusher","desc":"After an overhead slash then two quick left slashes, finish with a strike from the right directly into the opponent's knee."},{"id":"909e2aa4-b6b4-4ccc-97b3-2b38fb5e5e74","name":"Knee Strike","desc":"After a left and an overhead slash, finish the attack from the left side with a thrust to the opponent's knee."},{"id":"9780ac36-f75e-448f-8165-0e882f6ce0ad","name":"Lower Left Strike","desc":"With a right strike, a left strike and another right strike, you’ll complete your attack from the left and bypass the opponent’s weapon."},{"id":"a10204e3-5e34-4030-a2f3-a31ff3054471","name":"Mittelhaw","desc":"After an overhead and a right slash, finish the attack with a left slash across the opponent's abdomen"},{"id":"a16d865f-507c-44c2-a870-6294495576bf","name":"Oben Abnehmen","desc":"After a left strike and a feigned direct thrust, finish the attack with a right strike that slices along the opponent's blade."},{"id":"a39a4d76-ea8c-4c5a-bcf2-1a45216d0072","name":"Undercut","desc":"After a direct thrust and a left strike, finish the attack with a right strike that trips the opponent's leg."},{"id":"af57c258-c714-4d32-9883-2193c6af8184","name":"Kurzhaw","desc":"After attacking twice from above, finish your attack with a left strike to slip past your opponent's weapon."},{"id":"b578e5b0-ef24-41ee-98d4-3cdf847df04f","name":"Lower Right Strike","desc":"After a right and then left strike, finish your attack with another right strike to slip past your opponent's weapon."},{"id":"c2507281-6300-4b5b-8528-6631968c4791","name":"Crushing Blow","desc":"After an overhead and left slash, finish your attack with a right slash, hitting the opponent’s face with the handle."},{"id":"c6c2e508-5d38-46de-ad21-1fc794fd86c2","name":"Brutal Uppercut","desc":"After strikes from the left, right and then from above, you can strike your opponent under the chin with another left strike."},{"id":"da7adcc1-13b2-4aff-9da3-3ada0e585504","name":"Knee Strike","desc":"After a left and an overhead slash, finish the attack from the left side with a thrust to the opponent's knee."},{"id":"dcd735c3-0e22-4fdd-b6a9-97499d2fb461","name":"Rossen","desc":"After a sequence of a strike from above and two left strikes, finish the attack with a right strike. This will deflect the opponent's sword and hit their head."},{"id":"decfdab9-3422-4d31-b54c-e4a51aa36af5","name":"Durchlauffen","desc":"After attacking twice from above, finish your attack with a left strike to hit your opponent in the face with the pommel of your sword."},{"id":"dfc3139d-f783-4465-9555-5311bb691d77","name":"Mittelhaw","desc":"After an overhead and a right slash, finish the attack with a left slash across the opponent's abdomen"},{"id":"e300e732-8fdc-4810-aad0-7ffc68b297e9","name":"Lower Right Strike","desc":"With a left strike, a right strike and another left strike, you’ll complete your attack from the right and bypass the opponent’s weapon."},{"id":"e7b38b92-a552-489b-ac28-f623278f638d","name":"Brutal Uppercut","desc":"After attacks from the left, right and then from above, you can strike your opponent under the chin with another left strike."},{"id":"e966c6b5-db69-4680-bb9c-441d7ee761a3","name":"Zorn Ort","desc":"After a sequence of three right strikes, finish your attack with a left strike, stabbing your opponent in the face."},{"id":"f0f8f7cc-0b18-415c-a143-22d433360ccf","name":"Direct Strike","desc":"After a straight punch and a right punch, finish your attack with a left punch to the opponent's face."},{"id":"f1391b7f-2d96-4415-9789-aae4669a7a8d","name":"Lower Right Strike","desc":"After a right and then left strike, finish your attack with another right strike to slip past your opponent's weapon."},{"id":"f3764568-1c4c-446f-b1a9-2c9348b1077e","name":"Stomach Slice","desc":"After a right strike and a direct thrust, finish the attack with another direct thrust to the opponent's unprotected abdomen"},{"id":"f5b46efe-8b68-41f1-94e4-9ecf9893223b","name":"Lower Right Strike","desc":"After a right and then left strike, finish your attack with another right strike to slip past your opponent's weapon."},{"id":"f5e64098-afda-45ec-8b7f-f8009773ad7a","name":"Mittelhaw","desc":"After an overhead and a right slash, finish the attack with a left slash across the opponent's abdomen"},{"id":"f809063a-d1e6-452e-8319-f5678a936568","name":"False Edge","desc":"After a direct thrust and an overhead slash, finish the attack with a left slash, passing along the opponent's blade."},{"id":"010b08c7-5346-402c-a7cb-a084d624b62e","name":"Featherweight","desc":"Fall damage is reduced by 30 %"},{"id":"0226c7e3-e4fe-4baa-a466-8cb1d305dc8c","name":"Onslaught","desc":"After performing a combo with a heavy weapon subsequent attacks will cost only half the stamina! The effect lasts for 10 seconds."},{"id":"03154d4b-8a33-425f-ac1a-7520a6d1e138","name":"Cistota pul zdravi_ability","desc":""},{"id":"0371017d-17fb-456d-8a01-63a0c63d811b","name":"Basic law fine","desc":""},{"id":"04bf7be9-2df7-465f-af94-7cccef48d19a","name":"Locksmith - thievery","desc":""},{"id":"05cd7404-a721-40b3-a235-8178e5c7ef2d","name":"Final Offer","desc":"When a merchant loses his patience while haggling, instead of calling off the deal altogether, he'll give you one last chance to offer a fair price."},{"id":"060689eb-852a-4a76-952d-b356626aa251","name":"Steadfast","desc":"Blocks will cost you 20 % less stamina and your shield and weapon will wear down 20 % slower by blocking."},{"id":"0686a79e-b295-4fa3-b59b-a938a952edad","name":"Against All Odds","desc":"When fighting against superior numbers, you gain a +2 bonus on Strength, Agility, and Warfare skills."},{"id":"06dea4f8-a1fc-40f9-9850-e53ad79d2e0a","name":"The Harder They Fall","desc":"If you fight unarmed against an opponent with a weapon, your Unarmed Combat skill will count as 5 points higher."},{"id":"07c9dd68-8858-450c-9a43-285bf7fed5be","name":"Jack of All Trades","desc":"You get a bonus of +2 to skill checks. You'll also get twice the amount of experience from these skill checks."},{"id":"08594654-8b42-4f94-b313-f1ab6d2457d8","name":"Lehka hlava tvrdy zada - kocovina","desc":""},{"id":"0a19f89e-0888-4e4b-96e0-af42b832432c","name":"Let'em come! Buff","desc":""},{"id":"0c0ec830-d87f-4a2d-a720-f23021cd77b8","name":"Silent Fiddler","desc":"You're almost silent when using a lockpick, and if it happens to break, the sound will be 75 % quieter."},{"id":"0d23bab8-b1eb-4175-b26b-fc1f307f57c9","name":"Train Hard, Fight Easy!","desc":"The required Strength for all weapons will be 2 less for you. In general, if you have a lower strength than the weapon requires, you will do less damage with it. Conversely, if your strength is higher, you'll do more damage. With this perk, you'll reach that state sooner."},{"id":"0dd2c3df-9f61-4743-b5ca-8c3ac39fb57d","name":"Resistance","desc":"Your Vitality has permanently increased by 2."},{"id":"0e31656e-9b9d-4f54-979a-48848eb0810b","name":"Master Thief","desc":"You can unlock simple locks almost instantly, without the need for mini-game activation or committing a crime. Still, be careful because looting an unlocked chest like this is still a crime."},{"id":"0f3cffa7-d80b-4688-934d-784a09269f60","name":"Driven by Vengeance","desc":"After killing an opponent in close combat, you gain 10 % more attack damage and faster stamina recovery. The effect lasts for 30 seconds."},{"id":"0f6d8058-cef9-4d2b-b4cf-4c428b1626ef","name":"loyal companion - companion","desc":""},{"id":"1024560b-50c6-4ab1-8e2d-d63050b7c09b","name":"Infantryman","desc":"When attacking with a fully charged attack, such an attack will be slightly faster and 5 % stronger."},{"id":"1071e935-a667-47c1-8b2d-e0818434a471","name":"Water of Life","desc":"Healing potions heal you 25 % faster."},{"id":"10b3e4d8-86e9-463c-9a25-ef17b20842cc","name":"Trafficker","desc":""},{"id":"11b18b4f-eca4-4f5c-ad0e-4bf87fc579d0","name":"Blood of Siegfried","desc":"In combat, you're far more resilient than a mere mortal. Your armour will be 10 points higher at all times."},{"id":"1208b27e-5877-4173-b179-05ac12973e3f","name":"Grand Slam II","desc":"Blunt damage of all melee weapons is increased by additional 5 %."},{"id":"13b5ac08-4944-4229-86e9-7fa96d1c31f6","name":"Wonders of Nature","desc":"You will improve faster in the skills of Survival and Alchemy, as all experience gained will be 20 % higher."},{"id":"143077b3-0e11-43c4-ac84-7c7d2d7d66b6","name":"Poison Specialist","desc":"You can poison more arrows from a single dose of poison, and it will last on your weapon for more hits."},{"id":"170757df-5808-4ca4-b710-f646a823ed13","name":"Revenant","desc":"Your health will gradually regenerate up to 50 health points. This effect does not apply if you are in combat or bleeding."},{"id":"1a87ea8b-3704-4e91-990f-dc528656701d","name":"Tlama plna zubu - companion","desc":""},{"id":"1a9bdccd-4cfa-4262-a6b5-6dce77987cc8","name":"Hidden Pockets","desc":"If a guard searches you, there's a 33 % chance he won't find stolen items on you."},{"id":"1c552f64-9ce2-4946-8d65-525003008d26","name":"attack order - companion","desc":""},{"id":"1ce700fd-40d4-4ee7-8088-c233b620ae88","name":"Heavy Duty","desc":"When you're in the positivite phase of drunkenness, you gradually gain up to a +4 bonus on your Craftsmanship skill."},{"id":"1d2e4036-e1a0-4679-b472-f5b59e886a8e","name":"Wildrider","desc":"When riding off road, your horse will consume stamina 5 % slower."},{"id":"1e1e2783-a37f-4afb-8589-2fb8bdeb8294","name":"Thief's Eyes","desc":"You can tell which stolen items are considered stolen in the location you’re currently in. \n\nThe red hand icon indicates items considered stolen in your current location.\n\nThe grey hand indicates those that are not considered stolen in this location. Such items can be sold to a merchant without worry, and guards won’t confiscate them during a search."},{"id":"1f2be184-d704-49c1-9d7d-ea4c49366d49","name":"Master Cook","desc":"If you cook, dry or smoke an unspoiled ingredient or food, after processing it will have a 100 % condition. It does not apply to herbs, as they always have a 100 % condition after drying, regardless of the perk."},{"id":"1fa70400-84c8-4897-aa66-5b7c8510b26b","name":"Surprise Attack","desc":"If you hit someone who doesn't know of your presence with a ranged weapon, your target will suffer a combat skill debuff, making them easier to deal with. They might even panic and flee."},{"id":"1ffaeabf-cc1c-4857-b04b-3781f81b319d","name":"Looter - dead bodies loot","desc":""},{"id":"20551103-eb34-4e61-9050-65df1432616b","name":"Sting Like a Bee","desc":"After the first 30 seconds of a combat in which you are unarmed, your attacks will be 30 % stronger and your stamina will recover 30 % faster."},{"id":"20b0715b-9b83-4d26-839f-f39dfe209ed0","name":"Locksmith","desc":"When picking locks, your Thievery skill will count as 3 higher, so it'll be a lot easier. Plus, you can also make use of scrap iron, so you'll get an extra 1-3 lockpicks for each item you successfully forge."},{"id":"234615f0-2e62-4977-aeaf-da2da47e7847","name":"Black arts apprentice - alchemy","desc":""},{"id":"236731d4-7db7-41da-bf30-ef1603be0f42","name":"Heightened Scent","desc":"Mutt can sniff out enemies and other potential trouble at a much greater distance. This makes it easier to spot and avoid an ambush or other events during fast travel."},{"id":"24300733-0e09-4e57-a5c2-54a929ce1592","name":"Heroic Vigour","desc":"Each level of Vitality adds 1 extra Stamina point. The effect also applies retroactively."},{"id":"249b10e9-23df-4055-9e2c-93ebf959967d","name":"Special Powder","desc":"When using ammunition and powder of your own making, the efficiency of firearms increases by 20 % and the weapon suffers less damage from firing."},{"id":"25fa2cc7-3a63-4599-b041-f4398a7bccf2","name":"One Man Army","desc":"When you're outnumbered in a fight, you deal 10 % more damage."},{"id":"2621dd1d-2919-4418-ac72-30f4544aacb4","name":"Swordmakers wisdom - craftsmanship","desc":""},{"id":"2721f0d0-6360-41e1-baa9-ddb9f077fb43","name":"Body Heat","desc":"When sleeping in the wilderness, your dog keeps you warm. The bed quality will therefore increase by 20 % but not exceeding 50 % of the bed quality."},{"id":"2993585c-40c9-42e3-ac45-b837f3bc50f7","name":"Master Strike","desc":"To perform a master strike, you must attack at the moment of the enemy's attack from the opposite direction. This stops their attack and hits them with your own."},{"id":"2994ed8d-2edd-4bc9-82c0-5c5cd7ffadbd","name":"Heracles","desc":"For every 5 levels of Strength, your Charisma increases by 1."},{"id":"29bab126-6661-4365-8a4f-02b4681e7036","name":"Cushion","desc":""},{"id":"2b9f3c56-d5f4-49b0-a259-8a89a67c8f0d","name":"Pacifist","desc":"As long as you don't kill anyone, your non-combat skills will be increased by 2 and your Speech by 3. If you kill someone, you lose the bonus but can regain it if you don't kill anyone for 12 game hours."},{"id":"2bb0c41e-a7a4-4ada-8b24-fb077ec38e1f","name":"Defender","desc":"In combat, Mutt will be tougher and will take 10 % less damage from enemies."},{"id":"2bdc2918-bdb2-4079-a398-a409f7abc4d8","name":"Iron Harvest","desc":"After performing a combo you regain some of your stamina so you can continue fighting more easily."},{"id":"2c2bae14-2880-46ce-ae3f-25a93b120811","name":"Vanguard","desc":"Shield blocks cost you 30 % less stamina."},{"id":"2c502363-29b0-49c9-ba78-a024120dcbfb","name":"Knight Training","desc":"Melee attacks from horseback will cost you 15 % less stamina and it will be harder for enemies to unseat you."},{"id":"2cd86a68-776f-4d9b-ae3f-a0273dfff1f6","name":"Diehard","desc":"A wound that would normally kill you won't, and you'll recover 25 % of your health. Once used, there is a cooldown before the perk can be activated again."},{"id":"2dee44cb-616e-47f4-a1f0-82e77a198a36","name":"Flower Power","desc":"If you have more than 30 fresh or dried herbs (not spoiled) in your inventory, your Charisma will count as 2 more."},{"id":"2e8cc5bb-69f3-4baf-8fa6-7a5447787e22","name":"Rapid Flight","desc":"If you fail to successfully return through the doorway box during the thieving minigame, you won't steal anything, but your victim won't notice you. After using the perk, the effect will have a 3 minute cooldown before it can be used again."},{"id":"3085f466-6c85-4890-95b1-3b4c654df47b","name":"Concussing Blow","desc":"After performing a combo with a warhammer, mace or club, the affected enemy will not be able to perform a Dodge or a Master strike, and generally his ability to defend himself will be greatly reduced. The effect will last for 20 seconds."},{"id":"30d99c8b-d6d3-4969-a087-4fb36f9d1229","name":"Trhej - companion","desc":""},{"id":"31634489-c3ac-47cf-beae-b4d3c12fc65e","name":"Crippling Hit II","desc":"If you deal damage to an enemy with a ranged weapon, their stamina will regenerate significantly slower, and their combat effectiveness will be further reduced. The negative effect will also last longer."},{"id":"317467a3-9d2f-49d3-8d9f-a072acd6f205","name":"Thrasher","desc":"Charged attacks deal 5 % more damage."},{"id":"31f0a49b-8aec-49b5-ad71-39e4b7309fd9","name":"Night Crawler","desc":"At night, you have a +2 bonus on Strength, Agility and Vitality and a +3 bonus on Stealth."},{"id":"32863aba-9f6f-42e1-baf4-ef6337bec094","name":"Head Protection","desc":"If you are wearing a helmet, blows to the head will cause 20 % less damage."},{"id":"331d80bf-c846-4f87-8b6b-4fd21848e897","name":"Polished Wares","desc":"When selling weapons, armour or clothing that are in near-perfect or perfect condition (98-100 %), you'll gain 10 % more money for them."},{"id":"331ea8b5-35f9-410f-83ee-b02996e035db","name":"Next to Godliness","desc":"Washing at a tub or pier or taking a bath in a bathhouse will cure 10 points of your health. Plus, if you go to bed clean, you'll heal 25 % faster while you sleep."},{"id":"340c8390-bf67-4123-bcb1-f5ce5c759576","name":"Magister Dimicator","desc":"When you perform a combo, you gain +5 to your Swordsmanship skill, making subsequent attacks easier to perform and more powerful. The effect lasts for 30 seconds."},{"id":"341eb3ca-3964-4bde-b904-b548984eea80","name":"Mischief Artist","desc":"After successfully picking a lock or pickpocketing, you gain a +3 bonus in Thievery and a +3 bonus in Stealth. The effect lasts for 120 seconds, or until you break a lockpick or fail at pickpocketing."},{"id":"34416bb4-4c76-428a-bf6b-cb46823f0736","name":"Na zdravi - leceni","desc":""},{"id":"34e03c47-de53-482f-b3f5-555e7e36d70c","name":"Explorer","desc":"The entire map is revealed, showing all settlements, fast travel spots, hunting grounds, caves and other interesting places."},{"id":"35de102d-f29d-4a7c-b09d-9bd6d1806d00","name":"Hal Shot First II","desc":"Your first shot will deal 15 % more damage, for a total of 30 % with the first perk level. The rest of the effect remains unchanged."},{"id":"361a6a2c-ccd2-460c-be8d-a8bb9111fe2a","name":"Opportunist","desc":"If you lose Reputation, the drop will be 10 % less."},{"id":"36ad7dba-d088-439f-bb19-af7a1a7a46a3","name":"Totentanz_ability","desc":""},{"id":"3707dd4a-4fe4-469a-a21c-c8f56173775e","name":"Hunt!","desc":"You can command Mutt to hunt and send him after wild game. You'll find that he's a great help to you!"},{"id":"3846a4f4-6a81-4fbf-ad3c-61cfec7149d6","name":"Finesse II","desc":"The slashing damage of all melee weapons is increased by an additional 5 %."},{"id":"386fdb31-a9d3-4b8e-955a-442cc19016be","name":"Fundamentals of Medicine II","desc":"The effects of healing potions will be 20 % stronger."},{"id":"39059b80-aeb3-4bea-80b1-ccbedb010cb4","name":"Wonders of Man","desc":"You will improve faster in Craftsmanship and Thievery skills as all experience gained will be 20 % higher."},{"id":"39a75105-edcf-4d5e-b784-9d2a28ca6bf8","name":"Disarming Strike","desc":"Allows you to perform an unarmed Master Strike against an armed opponents to disarm them."},{"id":"3a246ac8-e7cb-440c-900b-898e9acfe5a6","name":"Eagle Eye","desc":"When aiming with a bow or crossbow, the action around you slows down considerably for a moment, making it easier to aim. The effect lasts for 3 seconds or until you fire."},{"id":"3a4c60fe-a34a-4444-aafb-ede6d7a94adf","name":"Hidden pockets script perk","desc":""},{"id":"3be2e263-b02d-43da-8047-d47c92ee6778","name":"Good Natured - skillcheck bonus","desc":""},{"id":"3cdd51ee-d004-4f31-8107-399af6759ade","name":"Lucky Day","desc":"The more drunk you are, the higher chance you have of not wasting your badge when you use it."},{"id":"3da9a3d8-fff9-4455-9fc8-87287a9ccae7","name":"Leshy II","desc":"You can move through the forest as if you were a forest spirit yourself. Your Stamina will regenerate 25 % faster, your Strength and Agility will count as 2 higher, and your Stealth skill will count as 4 higher. The rest of the effects remain the same."},{"id":"3dcced66-9540-4e97-b5b2-3f1a90a09e59","name":"Drunken Fool","desc":"If you commit a minor crime while drunk, you can try to excuse yourself by claiming your impaired state."},{"id":"3e7534e4-8eb2-46a6-b798-2a44f6a14def","name":"Ride Like the Wind II","desc":"Your horse will consume stamina 10 % slower while galloping."},{"id":"3ea42b1b-4982-4733-9f9a-e13948957fb1","name":"Shieldbreaker","desc":"Your heavy weapon attacks will be harder for opponents to block with a shield. Additionally, it will take less time to completely destroy an opponent's shield with your blows."},{"id":"409ee796-abac-4e05-ae45-1c3950136a11","name":"Bounty of the Wild","desc":"You can also get fur, trophies, selected cuts of meat and offal from killed game."},{"id":"426a594e-98a0-4168-939c-48c868357099","name":"Dreaded Warrior II","desc":"The effect of the Dreaded Warrior perk will be even more powerful!"},{"id":"42a163b5-17ac-4f4f-96bf-2d12fc4107a5","name":"Fast as wind - companion","desc":""},{"id":"42e69c2a-7ebf-4ff7-9849-3792609438a7","name":"War Horse","desc":"Every enemy killed from the saddle increases your horse's morale, so it won't falter easily, in battle."},{"id":"43977278-751b-487a-aeac-5e35b3f275cd","name":"Impaler","desc":"You'll get 10 % more piercing damage."},{"id":"45746246-2498-4585-a68f-0b3bdfba9367","name":"Kurzkampf II","desc":"All attacks made during a clinch will deal an additional 15 % more damage."},{"id":"47709bf7-3bd8-493f-aca3-05b005f166d8","name":"Feint","desc":"If you move to attack from one direction but quickly change direction just before your attack, your opponent will have less chance to parry the attack."},{"id":"477ed838-e641-4d03-8969-f491f73075d0","name":"Militia Training","desc":"The Strength and Agility required to use pole weapons will be reduced by 3."},{"id":"47a2cb9d-1932-4eba-aaf5-cd21f3a2ffe2","name":"Enthusiast","desc":"While brewing potions, your Energy will slowly replenish and your Nourishment will not decrease."},{"id":"47abe44c-5296-4eef-8ba1-4a0bce34882e","name":"Wonders of Beasts","desc":"You will improve faster in Houndmaster and Horsemanship skills, because all experience you gain will be 20 % higher."},{"id":"47fb20c9-544d-4c66-beaf-2f7c5fa2cd7d","name":"Ambusher","desc":"Hitting a target unaware of you will deal 20 % more damage."},{"id":"48dbe4f2-620a-46bc-b821-54cb9538e319","name":"Sagittarius","desc":"If you're in the saddle, the Stamina depletion for aiming with a ranged weapon will be halved."},{"id":"4b050c9b-c1b0-4f16-8207-9054de505bd6","name":"Tlama pln? zub? - companion","desc":""},{"id":"4c1faec3-a257-4246-b6d8-bec277ce9507","name":"Purple Haze II","desc":"For each Potion or Alcohol effect that is active on you at one time, your Vitality increases by a 2."},{"id":"4c6b08f5-85ad-48d2-b8d1-e03f2b06bcde","name":"Totentanz","desc":"After performing a Perfect dodge (a dodge in the window for a Perfect block) you get a 15 % weapon attack bonus. The effect lasts for 5 seconds."},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc00","name":"Combo Leg destroyer meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc01","name":"Combo Knock Knock meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc02","name":"Combo Lower Left Halberd","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc03","name":"Combo Lower Right Halberd","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc04","name":"Combo Stomachache Halberd meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc05","name":"Combo Get back up Halberd meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc06","name":"Combo Hammer Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc07","name":"Combo Backhand Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc08","name":"Combo Zvedak loktem Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc09","name":"Combo Strih Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0a","name":"Combo Left Hook Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0b","name":"Combo Direct Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0c","name":"Combo Narazeni Unarmed meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0d","name":"Combo Prehoz Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0e","name":"Combo Knock Knock","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc0f","name":"Combo Knee cut","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc10","name":"Combo Hammer Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc11","name":"Combo Kurtzhau","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc12","name":"Combo Blunt","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc13","name":"Combo Stomachache Halberd","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc14","name":"Combo Backhand Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc15","name":"Combo Push away","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc16","name":"Combo Mittle high","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc17","name":"Combo Flying man","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc18","name":"Combo Get back up Halberd","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc19","name":"Combo Left Hook Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1a","name":"Combo Pommel strike","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1b","name":"Combo False edge","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1c","name":"Combo Leverage","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1d","name":"Combo Strih Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1e","name":"Combo Scissors","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc1f","name":"Combo Fiore Halfswrd","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc20","name":"Combo Leg destroyer","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc21","name":"Combo Narazeni Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc22","name":"Combo Rossen","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc23","name":"Combo Direct Unarmed","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc24","name":"Combo Mittlehau","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bc25","name":"Combo Oben ahnemen","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd0","name":"Combo LowerLeft","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd1","name":"Combo LowerRight","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd2","name":"Combo Mittlehau meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd3","name":"Combo Oben ahnemen meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd4","name":"Combo Knee cut meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd5","name":"Combo Push away meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd6","name":"Combo Kurtzhau meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd7","name":"Combo Fiore Halfswrd meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd8","name":"Combo Pommel strike meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcd9","name":"Combo Rossen meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcda","name":"Combo Blunt meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcdb","name":"Combo Mittle high meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcdc","name":"Combo False edge meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcdd","name":"Combo Scissors meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcde","name":"Combo Leverage meta","desc":""},{"id":"4cfff8f5-85ad-48d2-b8d1-e03fff06bcdf","name":"Combo Flying man meta","desc":""},{"id":"4d045aa1-e15e-4e99-b47d-869a116b5f4e","name":"Ratman_crimeDoor","desc":""},{"id":"4fbfab40-4c6d-4c0a-a02a-a29a37814916","name":"Infantryman","desc":""},{"id":"4fda87dc-15fd-430b-8ebd-39a9f9770129","name":"Martin's Secret","desc":"Now you will be able to forge weapons of the fourth, i.e. the highest quality. Weapons of this quality cannot be obtained in any other way than by forging them yourself, and their strength and effectiveness is unmatched."},{"id":"4ffd3edb-268a-4444-a185-1a552d81e7f6","name":"Hardened Steel","desc":"The weapons you forge will have excellent properties and will therefore take damage 20 % slower."},{"id":"50defff5-451f-464e-9e9c-ae4f1c2e5f7d","name":"Head Start","desc":"If you use a quick start $sprint; $sprint;, your horse will briefly run faster than the wind! The effect will last 10 seconds."},{"id":"51d93e46-383b-4391-b79a-7d0c6b269f25","name":"Lawbreaker","desc":"If you are wanted for a crime, you gain bonuses of +3 on Strength and Warfare and +1 on Agility. Effect lasts 120 seconds."},{"id":"522dc497-df0a-4f87-8e46-e35fb4b64246","name":"Leg Day","desc":"When collecting herbs, you'll also gain a small amount of experience in Strength skill."},{"id":"526948d7-82b1-4ab3-a9c9-f8a0bc0471df","name":"Good Old Pebbles","desc":"Pebbles' stats are considerably increased."},{"id":"5315b6ae-74cd-4a37-b147-08df52e3c643","name":"Good Natured","desc":"It's easier for you to convince others the nice way. You gain +2 to Persuasion, Impression and Presence. People are also more likely to try to solve crimes with you in person rather than going straight for the guard. But beware, the more dangerous you look, the more likely they still choose to go for the guard instead."},{"id":"53204b2d-20a0-4d94-874c-f351ec203e99","name":"Hustler","desc":"It's easier for you to sell stolen goods. If you succeed in doing so, you'll gain some Stealth and Thievery experience."},{"id":"5488b9c9-f2dc-4475-81d9-6d7ef3c81773","name":"Secret of Matter II","desc":"Each time you successfully brew a potion, you get 2 more of the same quality. If you also have the first level of the perk, you get an extra 3 potions."},{"id":"550db16e-b917-4057-b3ac-39bf401d1157","name":"Red Mist","desc":"When your health drops below 25 health points during combat, you gain a +3 bonus on Strength and Agility for a time, and your Stamina regenerates 4 times faster."},{"id":"5559dc93-628d-4170-aeaf-7730dd03589e","name":"Nightcap","desc":"If you were meant to get a hangover while sleeping, now you won't. Plus, when you're drunk, all the beds are 10 % more comfortable, so you sleep like a king."},{"id":"55ae0147-365e-43c5-ae42-8c6f04a5bb0f","name":"Slice and Dice","desc":"Each of your subsequent sword strikes in an unbroken series will deal more damage than the previous one. A series of strikes can be interrupted by a successful block, dodge on the opponent's side, by too much delay between attacks or by a wound on your side."},{"id":"5693169d-c28a-4e18-af95-770927d363cd","name":"Adept of the Mystic Arts","desc":"You buy and sell potions, herbs, recipes, books and alchemy-related items at 10 % better prices."},{"id":"57391775-41d3-457a-ade4-c7e95e5bafab","name":"Weapon Master","desc":"If you face an opponent with the same type of weapon as you, you gain a +3 bonus on that weapon skill. For example, if you have a short sword and your opponent has a long sword, or a sword and shield, this perk will not take effect."},{"id":"5951286e-f3eb-4094-8e46-da8fdd66ace7","name":"Skirmishing cavalry player","desc":""},{"id":"5b0145e3-e542-4da6-8f0d-5e4b64d470ed","name":"Skirmishing cavalry - companion","desc":""},{"id":"5b76b323-306a-4029-b602-c4843cc6f721","name":"Burgher","desc":"In towns, villages and their surrounding areas, you gain a +1 bonus on Strength, Agility, Vitality and Speech."},{"id":"5d1d322c-7c05-455f-954d-bd7b49b8b72c","name":"Trafficker","desc":"Stolen items in your inventory will lose their stolen status a quarter faster."},{"id":"5e27bdfb-c96d-4d2f-ade1-fb939ce6ad79","name":"Dark Arts Apprentice","desc":"When brewing potions between midnight and dawn (0:00 - 4:30), you'll work better - the whole process will be less susceptible to minor mistakes and you'll more easily achieve a higher quality product. In addition, you have a +2 bonus on Coercion, Domination, and Intimidation stats when talking to commoners."},{"id":"5ebc0272-8ffe-4fc9-b6e7-34ea88d07d26","name":"Warmonger","desc":"After the end of the fight, you gain a +2 bonus on Strength, Agility and Combat skills. The effect lasts for 6 game hours. To renew it, you must enter combat again."},{"id":"5ede4471-40c6-4af5-a4e8-71898bf64923","name":"Weasel Boy","desc":"You'll make 35 % less noise when sneaking outdoors."},{"id":"5fc9d8d0-1493-46cc-9553-5fc86aed08e4","name":"Hledej-companion","desc":""},{"id":"6092eafd-e7e2-4b84-9bb9-83b3f4f7cec5","name":"Bring 'em On!","desc":"If you defeat an opponent unarmed, your Unarmed Combat skill will count as 3 more and your stamina will recover 25 % faster, making the rest easier to deal with. The effect will last for 30 seconds."},{"id":"61210951-7d08-4dbd-9d51-c264b5da9ee2","name":"Creative Soul","desc":"Your Energy will slowly replenish while doing Alchemy, Sharpening, Blacksmithing or playing Dice."},{"id":"61238790-d336-4e29-b85c-ee0dc216bf7f","name":"Hellhound","desc":"If you have your dog with you, you will appear more threatening and tough to others. This will show in the Presence and Intimidation skillchecks, but also in combat, as enemies are more likely to give up or run away. And if they don't, they'll have a harder time fighting you."},{"id":"61826147-3c68-42a6-ae44-d76f46ef556a","name":"Tendon Slicer","desc":"Each successful sword combo significantly reduces your opponent’s agility and strength, making it harder for them to keep fighting and easier for you to defeat them."},{"id":"61d5f53a-de28-4092-bc78-849b12fe1350","name":"No Pain No Gain","desc":"When fighting unarmed, you will gain 15 % more experience in Strength, Agility and Vitality."},{"id":"62800529-6cc3-4d4e-968d-f548e78d37e2","name":"Cheers!","desc":"Drinking wine or beer will heal you for 5 health points and spirits can cure poisoning. Bottoms up!"},{"id":"62aa7aca-83b1-48c7-8155-110ae7377d66","name":"Tight Grip","desc":"The higher your Strength skill, the easier it'll be for you to knock someone out or kill them stealthily."},{"id":"62c2e9dc-1d5f-43e9-affa-1b03f895f399","name":"Charming lad - discounts","desc":""},{"id":"636f75c0-8f7e-4942-8928-4e1a84d79298","name":"Bailman","desc":"You can unhorse opponents."},{"id":"65fe8f5e-e041-4572-8533-f9e65152c1a3","name":"Criminal - stat bonus","desc":""},{"id":"69508c6e-b718-4df2-8b09-41563b6fb3f3","name":"Ascetic","desc":"Your Nourishment will decrease 30 % slower, in other words you will last longer without food before hunger starts to bother you."},{"id":"69d3ea69-8c0e-47fe-a2cb-d5ad856bf6a8","name":"Secret of Equilibrium II","desc":"In the brewing process, tolerance for your mistakes will be considerable. If you also have the first level of this perk, the effects stack and the resulting advantage will be even greater."},{"id":"6a32670e-9b0a-44df-bfcd-192d92b5c91e","name":"Experienced Reveller","desc":"When you're drunk, life is just somehow nicer. The bonuses of the positive phase of drunkenness come into full effect earlier."},{"id":"6a32be0f-8a74-4354-b785-4af96b9bb28b","name":"Contemplative","desc":"As long as you remain still, your Energy and Nourishment will reduce much more slowly."},{"id":"6af26051-9739-4dfd-846b-92699d3f9c63","name":"Sedlar - repairkit","desc":""},{"id":"6ce5cd8b-360f-40f3-88d3-7647dd1b6f11","name":"Thunderous Blast","desc":"Your first gun shot during combat will cause nearby opponents to take a temporary combat skill and morale penalty, making them less of a threat to you."},{"id":"6d2084b0-de71-462e-8fe6-baa8b8f7f75c","name":"Saint Vivian's Grace","desc":"Under the influence of alcohol, you'll be less likely to be injured by falling from a height because the patron saint of drinkers has a protective hand over you."},{"id":"6d862f90-120b-4f78-bb38-ec320cd10982","name":"Hidden pockets buff","desc":""},{"id":"6dd70c8e-6f98-4fb3-8009-6e79788342c2","name":"Natural Camouflage","desc":"The dirtier you are, the harder it will be for others to spot you. But beware, they can still smell you if the dirt is accompanied by a corresponding odor."},{"id":"6ee145c6-e7a6-46c4-a7a9-3049e8adf0ca","name":"Battle cry","desc":"If you use a Battle cry during combat, you deal 10 % more damage. The effect lasts for 20 seconds."},{"id":"6ef70c3e-aac3-4368-8b75-d37d9910cf6e","name":"Dog's Best Friend","desc":"Strange dogs won't react to you by barking, just growling. This can come in handy, for example, if you're trespassing in someone's yard, because the owner of the house might not even notice a growling dog. However, if you attack the dog, it will probably bark and then go and tear your braies off."},{"id":"6fd8c84c-fc4b-4eef-9d9f-97146f56d71a","name":"Navr tilec - companion","desc":""},{"id":"70c790bd-798e-47d0-adde-61c99c2265bf","name":"Tool Master","desc":"Your lockpicks will be more durable and last 15 % longer before breaking. If you still manage to break a lockpick, once you've successfully overcome the lock, a lockpick will be returned to your inventory."},{"id":"70e5d9ba-3b26-4196-864f-755c1b51ea7d","name":"Fundamentals of Theology","desc":"You will be able to pray at shrines, crosses and similar places. If you do so, you will receive a buff that can protect you from mortal injury in combat and restore 25 % of your health. The effect lasts for 12 game hours or until you use it."},{"id":"7117a4ec-fbba-4a7b-8068-00cbde826cf6","name":"Towering Menace","desc":"Rearing your horse frightens your enemies much more than before."},{"id":"71411569-cab4-4ab0-af6b-c40f900ff64e","name":"Weapon Master II","desc":"If you fight an opponent armed with the same type of weapon as you, you gain a +3 bonus on that weapon skill. The perk will also work if the enemy has a sword and shield and you have, for example, a long sword or just a short sword."},{"id":"71ce79a0-87df-4a08-9c13-0fa686ff4aad","name":"Partner in Crime","desc":"You can now sell stolen goods to anyone without fear of detection."},{"id":"71ef363c-7f44-4952-8df3-05740c18e347","name":"Rip and Tear","desc":"If your dog inflicts a bleeding wound on an enemy, the bleeding will accelerate and they will fall sooner."},{"id":"734ed21b-bf1c-4824-9a42-189caa9f2810","name":"Unbreakable","desc":"If you are outnumbered in a fight, your stamina will recover 20 % faster."},{"id":"74a0160c-1106-42b1-af40-dec4e5a1bd95","name":"Fundamentals of Law II","desc":"If a guard wants to arrest you for your crimes, you can use your Scholarship in skillcheck to try to interpret the law to your advantage and possibly escape punishment."},{"id":"74a24f40-4b45-4afe-9323-b901d0e2960b","name":"Start me up!","desc":"After executing a combo or master strike in unarmed combat, you immediately regain some of your stamina back."},{"id":"7540b34f-5ee3-40f8-a689-9fe6c679d518","name":"Whirlwind","desc":"If you fight with a short sword (not a hunting sword or saber) its defense will be 30 % higher and your attacks and blocks will cost you 20 % less stamina."},{"id":"7581b26a-5e6c-4d06-8253-33ff9ad585ac","name":"Quickhand","desc":"You can be very stealthy when picking locks or pickpocketing people. From a distance, no one will notice anything."},{"id":"77a321e6-5c3f-4bf7-8e2f-c91a356cf11d","name":"Let'em come! Ability","desc":""},{"id":"797fe463-8656-4652-bce0-9e0f32bc6f7e","name":"Purple Haze","desc":"For each potion or alcohol effect you have active at one time, your Vitality increases by 1."},{"id":"79fff3fc-04ed-4706-8217-023717f8c09d","name":"Final Stretch II","desc":"If you spur your horse, it will recover much more stamina than before! The rest of the effect remains the same."},{"id":"7aa46261-461a-457f-86b8-e982c0e520a0","name":"Fleeting Shadow","desc":"When you're wanted for a crime, you gain a +3 Stealth bonus and a +2 on Agility and Vitality, making it easier to escape. The effect lasts for 120 seconds."},{"id":"7ad34a39-3aff-4d07-a0d4-c2f6bf9fd2be","name":"Indomitable Drunk","desc":"The negative effects of drunkenness will be milder for you."},{"id":"7af21523-2aae-4989-9cb2-992758da51d7","name":"Bushman","desc":"You'll make 50 % less noise when moving in bushes."},{"id":"7b90eaab-f24d-4b62-813e-fd729714daf5","name":"Hardworking lad_carrying_body","desc":""},{"id":"7c6dbaa9-0e96-48bc-b19f-0164c794c4be","name":"Hardworking lad_inv_capacity","desc":""},{"id":"7c804de3-ed00-4cd3-aa99-4220a66c7036","name":"Evade","desc":"In combat, you can use a evasive maneuver. You can perform it by pressing the jump key along with a directional key. You can use it to quickly dodge attacks, move to a safe distance, or even move closer to your opponent. What's more, if you perform a dodge in the timeframe for a Perfect Block, your opponent will lose his balance, and it will be easier to break his defense."},{"id":"7e97354d-2c85-454b-a2f8-d05f7f467319","name":"Skirmishing cavalry - companion forward","desc":""},{"id":"8023018c-ff3b-452e-ac56-13231f19f45e","name":"Inconspicuous","desc":"The person you’re robbing may not see you, so you can reach even into their front pouch, but while you're rummaging through their pockets, they might still feel your presence."},{"id":"81403aa9-ec4f-4d64-8544-e7eb31201468","name":"Deceptive Stance","desc":"If you're not wearing very heavy armour, you can feint with your body and keep your opponent unsure. This will make your Warfare skill count as 3 higher."},{"id":"814e5759-afa4-4fbb-a10c-4d071dff471b","name":"Liberal arts","desc":""},{"id":"81d38988-0f59-4a68-b097-47ee1cb5968d","name":"Final Stretch","desc":"When your horse is nearly out of stamina, you can spur it on with $horse_perk_no_rest_for_the_wicked; to recover some of it. Perk has a 120 second cooldown before you can use it again."},{"id":"82440248-8e4b-4e3e-995b-21ae76e87fb4","name":"Equestrian Explorer","desc":"Your horse will deplete stamina 5 % slower, you will see 15 % further when using fast travel and you will have a better chance to react to events on the road or avoid them altogether."},{"id":"82b4f95e-5c89-47e9-983e-3b449134c2ae","name":"Spiritual guidance - traveni alkoholu","desc":""},{"id":"83a8b86a-9ff1-4e2f-a4ba-fc6530dce122","name":"Pack Mule","desc":"Your carrying capacity is increased by 12 pounds."},{"id":"842f6ba5-2f02-4807-ab26-e5aad5cc7d19","name":"Potion Seller","desc":"You can sell the potions you brew for 30 % more."},{"id":"850f67a7-8b5b-48ab-8b9a-fc8ce4b04437","name":"Seven-League Boots II","desc":"If you put on self-repaired boots, the sprint will cost you 50 % less stamina, so you can sprint longer and run further."},{"id":"85e9756f-7b18-4842-bf94-004aceec5af5","name":"Local Hero","desc":"If you are in an area where you have a good reputation (60 or more), you gain a +2 bonus on Strength, Agility, Vitality, and Speech."},{"id":"865621be-da3f-4b28-bd59-14939f6a0d1b","name":"Aim to maim!","desc":"If your axe attack causes your opponent to bleed, they'll bleed a quarter faster, making it easier to finish them off and they won't run far from you."},{"id":"86bd028b-6397-4cdf-b31d-f22c6adf3069","name":"Razor-Sharp","desc":"If you sharpen a weapon on the grindstone to a condition of 98 % or higher, the weapon gains a bonus effect that increases its slashing damage by 10 %.This effect will remain active as long as the weapon’s condition stays above 75 %."},{"id":"88258f92-4052-461a-b4d7-3ac3bc0f74bb","name":"Helping Hand","desc":"Repairs by craftsmen will be 20 % cheaper for you."},{"id":"88bd2788-3621-4af3-88ff-3ab2f9c082af","name":"Fundamentals of Theology II","desc":"Reputation recovery for undertaking the Penitential Pilgrimage will be more effective and the buff from the first level of this perk will now last for 24 game hours."},{"id":"89c3284a-805d-48a4-a8d1-d3478d2e227e","name":"Cutting Edge","desc":"If you cause bleeding with a saber attack, the target will bleed a quarter faster, making them easier to deal with."},{"id":"8c708734-d820-4a84-95bb-ed34141ca227","name":"Cushion","desc":"The buff from sitting has an increased Comfort effect of 50 %, so you can study faster."},{"id":"8d9050f2-fd42-4ebf-ba84-e4082a62d9f7","name":"Train Hard, Fight Easy! II","desc":"The required Strength for all weapons will be 5 lower for you. In general, if you have a lower Strength than the weapon requires, you will do less damage with it. On the other hand, if it's higher, you'll do slightly more damage. With this perk, you'll reach that state sooner."},{"id":"8f74208e-e08c-4b54-937a-79cc65fdfb4d","name":"Lehka hlava tvrdy zada - kvalita posteli","desc":""},{"id":"8fb48e9f-77ed-4bd9-8370-a993320715f6","name":"Ranger Run","desc":"After 10 seconds of fast sprinting, you will briefly get a big bonus on stamina recovery. When you slow down afterwards, you'll quickly regain your strength and can start running again."},{"id":"9056b3fb-e7b4-47af-a3e8-3532a6b29275","name":"Tavern Brawler","desc":"When you're in the positive phase of drunkenness, you'll get a bonus of up to +4 to your Unarmed combat skill."},{"id":"91208236-3b09-4918-9ee2-95c4a3bc52c4","name":"Stealth kill","desc":"If you have a dagger equipped, you can perform a stealth kill maneuver. All you have to do is sneak up behind your unsuspecting victim and initiate a chokehold. Then be ready to press the attack to deliver the killing blow. May God have mercy on your soul."},{"id":"9188fec8-1ca3-4d31-a0a3-943ff98a2ca8","name":"Strong as a Bull","desc":"Your carrying capacity will be increased by 20 pounds."},{"id":"91d1061f-007d-46d1-be7a-413c05505419","name":"Hardened Veteran","desc":"In combat, your stamina will regenerate 10 % faster."},{"id":"91f67efc-12e2-479f-964c-f10a3d9e4bf2","name":"Escape Artist II","desc":"If someone unsuccessfully searches for you, they'll give up a lot sooner."},{"id":"92501954-61b7-4206-9fe0-878f476c0460","name":"Undaunted Cavalier","desc":"If your Charisma is higher than 20, your armour will be considered 15 higher."},{"id":"92f35342-63d7-4d11-80ea-6ab7f5a3c3bc","name":"Radzig's Heritage","desc":"You will improve faster in Heavy Weapon, Shooting and Scholarship skills as all experience gained will be 10 % higher."},{"id":"93c51b1e-5179-4bc1-a188-1df22ce5b6cd","name":"Wild Man","desc":"The effects of the Leshy and Leshy II perks will now apply not only in the forest, but in any wilderness, i.e. essentially anywhere outside of human settlements and lands directly adjacent to them."},{"id":"956ee9dd-212d-4352-a701-f41413693704","name":"Green Knight","desc":"After performing a combo with an axe, attacks will deal 20 % more damage. The effect lasts for 5 seconds."},{"id":"95a87180-1b7f-4b37-acb7-bc28b303ec20","name":"Forbidden Weapon","desc":"If you inflict a bleeding wound on an opponent with a crossbow bolt, bleeding will be faster and stronger, so they will weaken or die sooner."},{"id":"95eedb8a-64ba-4269-b5ce-a7e420a6febb","name":"Charming Man","desc":"If you gain Reputation, the increase will be 10 % higher."},{"id":"96ae1df4-5836-46ec-8eae-9ade83f967d1","name":"Sandman","desc":"It'll generally be easier for you to knock out or to stealth kill someone."},{"id":"995620bb-c65e-4d3d-98bc-2ecdfb3875d0","name":"Deft Hands","desc":"The required Agility for all weapons will be 2 lower for you. In general, if you have a lower Agility than the weapon requires, you will find it more difficult to fight with. But if you have a higher Agility, the stamina consumption will drop. With this perk, you will reach that state sooner."},{"id":"99da9f60-09ec-436b-b436-8a696ee85d98","name":"Keeping a Distance","desc":"Blocking while using a polearm will be easier, more effective, and will cost you less stamina."},{"id":"9a272510-e2e7-4884-b881-9494cfbf3bf4","name":"Swordmaker's Wisdom","desc":"Your Craftsmanship level will count as 3 levels higher during blacksmithing, and all sword-like weapons will get 25 % less damaged in combat."},{"id":"9a5363f2-4f2c-4f40-b828-abdda6a2f638","name":"Airgiyn Tav","desc":"While riding a horse, your ranged attacks will deal 10 % more damage."},{"id":"9aa8c4d9-9f45-4885-8b90-bcbcad07672b","name":"On the Poacher's Trail","desc":"You can sell herbs, game, hides and trophies for double the price!"},{"id":"9b6cdb3b-5bf0-4526-9fdd-ae5e2a00a439","name":"Opening strike","desc":"If you successfully wound an opponent by a strike to an uncovered zone (i.e. a zone your opponent isn't blocking from), it will be more difficult for the opponent to block your subsequent attacks."},{"id":"9bf2f471-79e7-43d1-97a4-8bf238c5ddfd","name":"Frejir_clean_improvement","desc":""},{"id":"9c0cc5d7-304d-465f-af3c-c61d82d687aa","name":"Opening Strike II","desc":"The effect of a successful opening strike will be greatly enhanced."},{"id":"9d22e416-b481-411c-b3cc-b26d56b605a8","name":"Tormenting Strike","desc":"After a combo, the target opponent's stamina will regenerate slower, thus their fighting ability will be reduced."},{"id":"9ddb6329-3793-480e-a8d3-2b0f69371ea6","name":"Thorough Maintenance","desc":"Your gear will be damaged 10 % slower, so you don't have to repair it as often."},{"id":"9e17072e-6583-45ae-ba26-95bca7319e6f","name":"One Shot at Glory","desc":"If you kill an enemy with a ranged weapon, your next shot will deal 50 % more damage."},{"id":"9e55e361-2eff-4971-9be6-98f31b652927","name":"Search!","desc":"You can command Mutt to sniff out places of interest or hunted game. To do this, select the Free! command. He'll alert you by barking if he finds something. Thanks to your loyal companion, you won't miss a thing."},{"id":"9e719bef-9756-46c8-b6bc-a035643ee6fb","name":"Sic 'em!","desc":"Your dog's attacks will be 20 % stronger, making it easier and faster for him to deal with enemies."},{"id":"9ec959e1-da0a-42fb-a3f6-430eaa746395","name":"Seven-League Boots","desc":"If you wear boots repaired by yourself, sprinting will cost you 25 % less Stamina, so you can run longer and go further."},{"id":"9f04a33e-bd86-4afd-b304-ba54d6cf7841","name":"Never Surrender","desc":"If your health drops below 25 points during combat, you get a +25 bonus on your armour, increasing your chance of survival. The effect lasts until your health rises above 25 points again, or until combat is over."},{"id":"9f4d1e10-651d-40a2-8320-830683d116e1","name":"Crippling Shot","desc":"If you deal damage to an enemy with a ranged weapon, their stamina will recover more slowly and their combat ability will be reduced."},{"id":"9f72a6fe-2f93-4721-8fb6-7d05e6e56544","name":"Fundamentals of Law","desc":"When dealing with guards, your Speech and Charisma will count as 2 higher. The total fine will be 20 % lower."},{"id":"9f7534a0-dd8d-49fc-8471-be4673b893a0","name":"Criminal Element","desc":"Criminal brands disappear a quarter faster. With the brand scar, you'll sell stolen goods for 10 % more, look more menacing, and gain a +2 bonus on Coerce, Dominate, and Dread."},{"id":"9fd0318a-a2d3-4376-acf6-95e71c15da79","name":"Grand Slam","desc":"Blunt damage of all melee weapons is increased by 5 %."},{"id":"a0de88f9-ccb8-41a2-82b5-b2cc495d633b","name":"Boid friend","desc":""},{"id":"a1cbca41-3005-4fe1-929d-e77186d86b6f","name":"Viper II","desc":"The piercing damage of all melee weapons is increased by an additional 5 %."},{"id":"a383bea3-a158-4de2-975f-f0396e988984","name":"Criminal - price bonus","desc":""},{"id":"a3a6efe2-e771-4a66-8b53-5afb008af6ab","name":"Thorough Maintenance II","desc":"Your gear will take 20 % less damage."},{"id":"a42c63ae-d21d-440b-b632-2d485c8dc60b","name":"Ride Like the Wind","desc":"Your horse will consume stamina 5 % slower while galloping."},{"id":"a51cc53f-634c-40f3-b727-1a2990d24bc7","name":"Saddler","desc":"Repairs with a Cobbler's kit will be 20 % more efficient. Additionally, because you know pouches and satchels well, you have a +1 bonus on the Thievery skill if you pick pockets."},{"id":"a6e23fa2-85c3-43de-9b70-cdfbf6720897","name":"Fundamentals of Medicine","desc":"Bandages will be 25 % more effective and the healing effects of food will be doubled. You will recover faster when sleeping, so you will take less time to fully heal."},{"id":"a7096e82-8e3d-4325-9552-6827374697cd","name":"Silver tongue script","desc":""},{"id":"a722d194-33b8-4ec7-934c-12170f5591ac","name":"Bowyer","desc":"Bows and crossbows that you repair yourself with the Bowyers kit are 10 % more powerful. Thus your shots will fly farther and have more penetration."},{"id":"a7739924-c7f5-4db8-9a6f-fe6daf21e49d","name":"Creeping Phantom","desc":"When sneaking, your movement will be 15 % faster."},{"id":"a804853c-f8dc-4b52-a093-78ddcc690b3b","name":"Lucky Find","desc":"When collecting herbs, you have a chance to find an additional herb or a small treasure."},{"id":"a9b97681-8f67-45a8-b48c-006bae3a8cb2","name":"On the Road companion","desc":""},{"id":"a9eafb4f-4230-4de4-87d2-4b1a957e41d8","name":"Creeping Phantom II","desc":"When sneaking (crouch) your movement is 35 % faster."},{"id":"a9f2ea49-54b5-425a-b70e-cfb4c46ca510","name":"Beerfoot","desc":"Amazingly, when you're drunk, you make 20 % less noise when moving indoors."},{"id":"aa6a9503-b05f-418f-8c61-55990f6c2ac8","name":"Lab Dweller","desc":"The effects of potions and alcohol will last longer, and your eventual hangovers will be a little shorter."},{"id":"aae987d5-dd52-43dd-b093-7b9f752ab92d","name":"Menacing Presence","desc":"When clad in armour and equipped with a heavy weapon, enemies are more likely to flee or surrender. And if they dare to face you, it will be harder for them to fight you. It's also easier to succeed in Might and Dread skillcheck."},{"id":"abca2d7c-2358-4cec-a14f-f039156374df","name":"Well-Fitted","desc":"Armour and clothing that you repair yourself with the Armourer's kit will make less noise when worn. The effect lasts until the item's quality level drops."},{"id":"ac6372e0-4cc2-4683-ab7a-4b4d7189bb57","name":"Black arts apprentice - dialog","desc":""},{"id":"ac90a350-03aa-493d-8a41-2c6061eab74d","name":"Charming lad - spa discounts","desc":""},{"id":"acbf3b3d-6c93-4db8-86c2-656838fab776","name":"Ratman_crouch","desc":""},{"id":"ad840150-ca47-4c8f-8e05-fd9ef632e685","name":"Hard-Working Lad","desc":"If you carry a sack or even a dead or unconscious body, the weight only counts as a half. Therefore, they will hardly burden you, and carrying them will no longer cost you extra stamina.Additionally, your carrying capacity is permanently increased by 8 pounds."},{"id":"ade74063-5b16-48fa-aa93-d126f2dde18f","name":"Brute Force II","desc":"You deal an additional 5 % more damage with Heavy weapons."},{"id":"ae1f7b64-6fb0-4fd9-97de-829aa7ba2d5c","name":"Defender - companion","desc":""},{"id":"ae858de6-9b23-410c-b215-79603e604ee4","name":"Long Reach II","desc":"Attacks with Polearms will cost you an additional 10 % less stamina."},{"id":"b0bff2e5-248e-408c-8e59-07d2af97b11d","name":"Charming lad - skillchecks","desc":""},{"id":"b258197e-ed04-4f4b-9a68-e03f854a19b0","name":"Head Start II","desc":"When using the fast start $sprint; $sprint;, the horse will start even faster than before and will not lose stamina. The effect will last 10 seconds."},{"id":"b34174af-a388-4df7-89f5-75353ef72e75","name":"Battering Ram","desc":"If you successfully execute an unarmed combo, your opponent will be badly shaken and their stamina will recover 50% slower, making them much more vulnerable."},{"id":"b3d90d8e-18b0-4c06-8fe6-3b69b2eedf0b","name":"Cistota pul zdravi_buff","desc":""},{"id":"b444e235-3b8b-49f6-af5e-0a568d2cc5fc","name":"Ladies' Man","desc":"When dealing with women, you gain a +2 bonus on all skill checks, a 15% discount on purchases, and a 25% discount on bathhouse services."},{"id":"b4b0c345-e8c3-4b9e-890a-e77549596131","name":"Deft Hands II","desc":"The required Agility for all weapons will be reduced by 5 overall. In general, if you have a lower Agility than the weapon requires, you will find it more difficult to fight with. If, on the other hand, you have a higher Agility, the stamina difficulty will drop. With this perk, you will reach that state sooner."},{"id":"b551bddc-1bab-4704-b5c3-eac889ff1764","name":"Hardened Veteran II","desc":"In combat, your stamina will recover an additional 10 % faster."},{"id":"b722962c-bbdb-4cc4-8afc-48f5e48d96c8","name":"Stamping Ground","desc":"When you are in human settlements or their immediate vicinity, your Stealth skill will count as 3 higher."},{"id":"b7fe7fad-ba8c-4325-aeac-09a286162e42","name":"Locksmith - lockpicks","desc":""},{"id":"b865c86e-569e-4018-9e3f-40838bb3387a","name":"Fast as wind II - companion","desc":""},{"id":"b8fe14a2-59af-4acb-b11e-a5ff04bfccc1","name":"Knight in Shining Armour","desc":"When you wear plate armour, you gain a bonus on Charisma ranging from +1 to +4."},{"id":"b9655dd5-a99a-4bd6-a85c-7ebc141d3340","name":"Poison Specialist II","desc":"When using a dose of poison on arrows, you can poison more of them, and it lasts longer on your weapon."},{"id":"bb9150e3-37c3-441a-868d-79d55a0f1f47","name":"Kurzkampf","desc":"All attacks made during a clinch will deal 10 % more damage."},{"id":"bb98140d-952f-4e3a-b2a4-58c5bd4f51ec","name":"Hammerer","desc":"Attacks and blocks made with heavy weapons consume 10 % less stamina."},{"id":"bc29dce7-f5b4-42ee-ae56-3598ce7b3519","name":"Balanced Diet","desc":"If you don't overeat, get drunk or starve for 3 consecutive days, your stamina will recover 20 % faster and you will gain 10 % more experience in the Vitality stat. If you overeat, get drunk or starve, you will lose the perk effect and will need to reactivate it."},{"id":"bd1344ca-87a2-49e6-8d6e-74e68d7e3de4","name":"First Strike","desc":"In every fight, your first attack with the Polearm weapon will be 35 % stronger."},{"id":"be583461-d371-47d0-94fe-4565307bc2b5","name":"Steady Aim II","desc":"If you don't move for 2 or more seconds while aiming, your shot will be 30 % stronger."},{"id":"be975f36-f5fd-44a7-b42e-f6a0f84695cc","name":"Cleaver","desc":"You know how to make good use of this, and deal 15 % more crushing damage with hunting swords."},{"id":"beca7769-0259-4e8f-9c10-aa9a10847cea","name":"Battle cry II","desc":"If you use a Battle cry during combat, you deal 15 % more damage in total. The effect lasts for 20 seconds."},{"id":"bf300cac-d630-47c3-8010-42e3b9bff699","name":"Evening the Odds","desc":"Your unarmed attacks are 10 % stronger."},{"id":"bf886546-1e88-4ff8-b3ea-85386a8ace08","name":"Furor Teutonicus","desc":"Your attacks will be stronger the more injured you are. The effect will only work if you have 75 points of health or less."},{"id":"c016b259-1aac-4d08-90fb-72b9c769fcbe","name":"Master Fletcher","desc":"Your arrows and bolts have better ballistic properties, so they fly faster, travel farther and have more penetration."},{"id":"c0284d3a-4145-4543-839a-df82ba325e06","name":"Wildrider companion","desc":""},{"id":"c03389ad-31c1-41b7-80cc-7d60265b5a80","name":"Beer Belly","desc":"Beer sates you twice as much, so if you’re not afraid of drunkenness, you can more easily replace food with it. However, potions sate you half as much, so you can drink more of them."},{"id":"c0353c07-fce7-4262-8a06-2ed4fd04e634","name":"Faithful Companion","desc":"Mutt's obedience will decrease 25 % slower over time."},{"id":"c0b4b50b-5eb7-4726-bef8-a40b76ca0644","name":"Hack and Slash","desc":"Each of your subsequent heavy weapon attacks in an uninterrupted sequence will thus cause greater damage than the previous one. The sequence can be interrupted by a successful block or dodge on the opponent's side, or by too much delay between attacks, or injury on your side."},{"id":"c285857c-8b74-4b03-89b0-ef1dc12a1b1c","name":"Hardwood","desc":"Polearms will take damage 25 % slower."},{"id":"c29824ec-a35e-4296-a841-b51d16ca0a9b","name":"Keen Eye","desc":"If you get your gear repaired by a craftsman, you'll gain a little experience in Craftsmanship. The experience you gain will increase along with the repair price."},{"id":"c418bac1-66ac-4cc9-b8e2-612e1993b5a3","name":"Enhanced Mixture","desc":"When you're drunk, using any potion will heal you in addition to its own effect. The healing effect will be stronger the drunker you are (in the positive phase of drunkenness), but will never exceed 20 Health."},{"id":"c4949eae-537a-4453-aa48-a31168bbf23b","name":"Heartseeker","desc":"If you hit your target in the chest, your shot will do 10 % more damage. The effect will also apply when hitting from behind."},{"id":"c4fd575b-0d24-41b4-b4f5-1a2550f2593c","name":"Showtime","desc":"After performing a sword combo or a master strike, you instantly regain some of your stamina and can attack again!"},{"id":"c61a9b80-93a1-4f45-a090-371f001fe8e9","name":"Well-Built","desc":"As your Strength increase, your carrying capacity increases faster. For each level of strength, you gain 12 points of carrying capacity instead of the usual 10."},{"id":"c700e630-c9d2-4296-87a0-8fb36574dc12","name":"hunt - companion","desc":""},{"id":"c70a8872-fba8-4fa9-82c0-13febddb4b44","name":"Basic law skillcheck","desc":""},{"id":"c7e2a2ed-45a2-4794-9c20-b8fddc1c6000","name":"Liberal Arts","desc":"You're able to recognize the difficulty of skillchecks, but not your chances of succeeding. You'll still have to decide for yourself whether it's worth the risk. The effect of your reputation isn't taken into account in the displayed difficulty."},{"id":"c85ac0b2-c7b9-49d1-9c82-267d8127fd33","name":"Thick-Blooded","desc":"You will bleed noticeably slower. Still, if you don't bandage up, you'll die eventually. You'll just have more time."},{"id":"ca293053-bcd4-49cc-9432-68d651b2b114","name":"Secret of Equilibrium","desc":"The brewing process will be more tolerant of minor errors, making it easier to achieve better quality potions."},{"id":"cb1054d9-1b0a-4d07-a7e2-c8d167377517","name":"Bonebreaker","desc":"If you wound an opponent with a war hammer, mace or cudgel, their stamina will recover 15 % slower. The effect lasts for 15 seconds."},{"id":"cbb60e47-0862-4054-9398-0b9a0e318b6f","name":"Ordinary Man","desc":"People will forget the crimes you've committed more quickly. It'll also reduce the chance of guards wanting to search you."},{"id":"cbc1f270-ee2c-4371-88bd-4fde0bf50a5f","name":"Looter - extra money pickpocket","desc":""},{"id":"cc2ad5f1-d7d3-4cf7-b52e-c68104a2123d","name":"Hermes' Haste","desc":"You'll be 20 % faster when sprinting."},{"id":"cc7ba94e-2ff0-430c-a24a-4db13c44b10e","name":"One Way or Another","desc":"If an opponent defends against your attempt to stun or stealth kill them, they will suffer penalties to their stats. This will make it easier for you to defeat them conventionally. The effect lasts for 20 seconds."},{"id":"cd212162-1585-4669-852f-94df8ca9508b","name":"Rock Solid","desc":"In combat, you can maintain a steady stance and use it to your advantage. When you don't sprint or dodge for 10 seconds in battle, you'll gain +20 to your Armour. Sprinting or dodging will cancel this buff."},{"id":"cd8b00ab-4394-46e0-8b81-fb5db65e6b73","name":"Well-Dressed","desc":"Your clothes and body will get dirty 20 % slower. In addition, by washing at a tub you can get rid of all the dirt on your body, but you still have to go to a bathhouse or a pond with your clothes."},{"id":"ce8e8ea3-3469-41e1-9ad5-c9a6e57e81ed","name":"Belligerent Brawler","desc":"After the first strike in combat, subsequent unarmed attacks will cost you 20 % less stamina and will be 10 % stronger. The effect lasts for 30 seconds. This perk will also activate after performing a stealth takedown."},{"id":"d067913a-9610-4390-8807-aa470b06670b","name":"Strong Arm","desc":"If you stay in fully charged attack, your stamina will slowly recover."},{"id":"d06f2873-9661-484f-9322-4bdbbd3255e8","name":"Jawbreaker","desc":"Each of your subsequent unarmed attacks in an unbroken line will do more damage than the last. The sequence of attacks can be interrupted if your opponent succesfully blocks or dodges the attack, delaying too much between attacks, or by getting hit. This perk will also activate after performing a stealh takedown."},{"id":"d101dc3d-0403-448b-a094-51b5b5e2cea0","name":"Fleeting Shadow II","desc":"When you're wanted for a crime, you gain a +5 bonus on Stealth and +3 bonus on Agility and Vitality, making it easier to escape. The effect lasts for 120 seconds."},{"id":"d14995a3-511b-4ed8-a821-0ff5e76d2e54","name":"Dreaded Warrior","desc":"If you use a Battle cry during a fight, not only will it give you courage, but it will also put fear into your enemies' veins. As a result, their morale will decrease and they are more likely to give up, run away or just generally find it harder to fight you."},{"id":"d23569a9-0f9a-4328-8eb5-2bbc0d0ccdd4","name":"Zaklady bohoslovectvi","desc":""},{"id":"d2b560f3-249a-4424-8713-3f139cc12f37","name":"Loyal Companion","desc":"When Mutt flees, the time it takes for him to come back to you is a quarter shorter."},{"id":"d2da2217-d46d-4cdb-accb-4ff860a3d83e","name":"Perfect Block","desc":"The Perfect Block is the best way to deflect your opponent's attack. It doesn't cost any stamina, and certain attacks can only be blocked with a Perfect Block.\n\nThe shield on your combat rosette will light up green when you're able to perform a Perfect Block.\n\nIf you attack right after performing a Perfect Block, you can perform a counter-attack - a riposte."},{"id":"d30dce35-a841-4642-9d9c-1774164359dc","name":"Trample","desc":"If you charge into someone with a horse, their morale will drop significantly and they will suddenly be an easier opponent. Unless they run for the hills."},{"id":"d36475ee-9d83-40d4-8278-fb19a5b79420","name":"Na zdravi - protijed","desc":""},{"id":"d41f1b4f-51c5-4ee9-bc24-3e8b7583a3fb","name":"Nimble Stance","desc":"Dodges cost you 40 % less stamina."},{"id":"d543d3f3-d8aa-4a83-8313-d7ebeebeb858","name":"Artisan","desc":"You can sell and buy weapons, armour and clothing at a 10 % better price."},{"id":"d66b545a-696b-416c-a4d1-2c79af725cd8","name":"search - companion","desc":""},{"id":"d6916a36-f36e-4f7a-947b-d54ba84726f7","name":"Ascetic","desc":"You'll last 15% longer without food."},{"id":"d7e411b2-c3a0-4d98-bef3-5074d6b6dfe1","name":"Arm of Beowulf","desc":"You can use a longsword together with a shield or a torch. While its superior range can prove useful, your attacks with such a weapon will be 30 % slower, 20 % weaker and will cost you 20 % more stamina. You will be able to perform shortsword combos, but not longsword combos."},{"id":"d87495e8-b5f6-4099-8d91-89e52d383a05","name":"Hledej-script","desc":""},{"id":"d88c06c8-4da6-4e07-9c45-28c188c55ef8","name":"Bark - companion","desc":""},{"id":"d8b59369-03a5-4c53-adcf-78530a00dcca","name":"Wanderer","desc":"The quality of beds increases for you the higher your Survival skill is. But at most this perk will improve the quality of a bed to 50 %. On higher quality beds, the perk will have no effect."},{"id":"d8fd45fd-3372-4b8f-abfa-537220f97761","name":"Trample - companion","desc":""},{"id":"da71a40a-302e-4824-b11b-cf5f78e14262","name":"Memorable","desc":"Changes in your reputation, good or bad, spread more widely across the land and among different groups of people."},{"id":"db0426a1-0026-4e74-8ad4-f5493fd8df16","name":"Nimble Fingers","desc":"When in the time-collecting phase of the pickpocketing minigame, you'll gain time 10 % faster."},{"id":"dbb25349-54fe-48fe-aff9-15ee23c3f3e2","name":"Salvo","desc":"After each shot, you get a short-term buff during which you reload and aim faster. So you can also shoot faster and if you do it in time, you'll regain the buff with each shot."},{"id":"dbb78671-778a-44ff-9a29-6eb7a2d9524d","name":"Red Herring","desc":"Herring's stats are now significantly increased."},{"id":"dc580c15-f72c-431a-93cd-f1026cc8c21d","name":"Rodent","desc":"You'll make 25 % less noise when you sneak indoors and the door opening will be half as loud."},{"id":"dcdde681-5a0b-4f02-8c27-dbdf37037cf8","name":"Frejir_dirt_decrease","desc":""},{"id":"ddeced04-bb56-46ed-b156-ca27390831aa","name":"Ringenmeister","desc":"When both you and your opponent are unarmed, you you can perform a chokehold from a clinch to knock out your opponent. You can do this by attacking from the left zone while in clinch. If your attack is successful, you will perform an arm lock, after which you can attack again to perform a chokehold."},{"id":"de4a1879-ca47-4272-b618-cf3aac8fe4d3","name":"Impaler II","desc":"Pierce damage will be an additional 10 % higher."},{"id":"de82bf42-d28c-46a7-b262-eb5b320e63d1","name":"Brute Force","desc":"You deal 5 % more damage with Heavy weapons."},{"id":"dea795f5-c7a1-4227-b483-b8d7c55c0ac8","name":"Masterful Feint","desc":"You've perfected your feint to the point that it's very difficult for even an experienced warrior to respond to it."},{"id":"debb1603-1dba-4ece-840a-757d374b912e","name":"Skirmisher","desc":"After a shot from a bow while on foot, your stamina will recover 25 % faster and sprinting will cost 50 % less stamina, making it easier to move or flee. The effect lasts for 10s."},{"id":"df13b990-8127-4a22-941d-bfa62ac21947","name":"Sedlar - theivery","desc":""},{"id":"e0e64fa4-2655-4375-a4a2-3cd07faa8644","name":"Roadrunner","desc":"Your horse will use 5 % less stamina when riding on roads."},{"id":"e1256788-29bd-4265-b055-a1df6cd9160d","name":"Takedown","desc":"You can stealthily knock people out. To do this, sneak up to your victim and initiate a chokehold. Then be ready to press attack to finish the action and knock out your opponent. It's a good idea to then hide the unconscious body so nobody stumbles across it. Your victim will regain consciousness after some time, so whatever it is you're up to, make it quick."},{"id":"e17fcae0-5c79-41d0-90c6-c42a91825262","name":"Towering menace - companion","desc":""},{"id":"e2c65107-48dc-451b-b3b4-cbdc3a1b869c","name":"Lifesaver","desc":"Mutt will defend you in battle and even attack enemies at your command."},{"id":"e37dfc8f-e674-4d29-b114-8d037277cd1b","name":"Good Natured - self help","desc":""},{"id":"e4fedad5-8266-4c41-a96e-6e8c0b326a50","name":"River","desc":"Whenever you make a dodge, a perfect dodge or sprint during combat, you gain a +3 bonus on Warfare skill and your stamina replenishes 15 % faster. The effect lasts for 10 seconds."},{"id":"e6bf212f-f079-433a-8123-ee3a5a18792b","name":"Finesse","desc":"The slashing damage of all melee weapons is increased by 5 %."},{"id":"e85df4e4-b7b2-4f1f-a00c-1bee73440b09","name":"Sundering Blow II","desc":"When you hit an enemy with a heavy weapon, their armour will count as if it were 20 lower in total."},{"id":"e8a580a7-3de4-4320-bbda-89dd511bd96a","name":"Steak Tartare","desc":"You can consume raw meat without fear of poisoning."},{"id":"e8ebba4b-41d0-4143-bc84-8829ff7a4bad","name":"Iron Rain","desc":"Each subsequent attack with a polearm in an uninterrupted series will deal more damage than the previous one. The sequence can be interrupted by a Perfect block or dodge by the opponent, a long delay between attacks, or taking damage."},{"id":"e97c85f8-30e2-46a6-88e0-5e375bdc3ddd","name":"Steady Aim","desc":"If you don't move for 2 or more seconds while aiming, your stamina will drain 20 % slower, and your shot will be 15 % stronger."},{"id":"e9cd4631-45d1-410e-a94b-06da6614e745","name":"Totentanz_buff","desc":""},{"id":"ea043ba6-d79f-4bb5-89c4-22ae6b43cdc0","name":"Long Reach","desc":"Attacking with polearms will cost you 10 % less stamina."},{"id":"ea25b763-4ab7-4111-8c76-02342fefe6fb","name":"Drunk's Luck","desc":"When you're in the positive phase of drunkenness, you got a bonus of up to +4 to Thievery."},{"id":"eaf706c8-e8f8-4175-81de-b1c1dec4e2ba","name":"Unarmed Master Strike","desc":"To execute a master strike, you need to attack at the moment your opponent strikes, but from the opposite zone of their attack. This will stop their attack and land your own hit."},{"id":"ec4c5274-50e3-4bbf-9220-823b080647c4","name":"Riposte","desc":"You can perform a riposte, i.e. attack immediately after performing a Perfect Block. To perform a riposte, press the attack key as soon as your weapon touches the opponent's during a Perfect block. A riposte can only be defended against with a Perfect Block. This technique is very effective against inexperienced swordsmen, and a duel of two master swordsman is often a chain of Perfect Blocks followed by ripostes until one of them slips up."},{"id":"ec84f8cc-b258-4833-9e13-b799a949a1bd","name":"Into the Fray","desc":"Fully charged attacks made from the saddle will be 20 % stronger."},{"id":"ec8d1e78-02db-4a88-b8a7-51518daac48d","name":"Viper","desc":"The piercing damage of all melee weapons is increased by 5 %."},{"id":"ec9d3bbc-d377-42ec-a9b4-bb58736dbf41","name":"Blunt Force Trauma","desc":"Every time you fully charge your attack with a heavy melee weapon, the attack will be 10 % stronger."},{"id":"ecee2a90-309a-48d6-bc66-eec9b0825a63","name":"Escape Artist","desc":"If someone is unsuccessful in their search for you, they'll give up a little sooner."},{"id":"ed3244fe-e663-4a34-ab1f-15d13b825ec5","name":"Martin's Heritage","desc":"You will improve faster in Sword Fighting, Crafting and Survival skills, as all experience gained will be 10 % higher."},{"id":"ed3af036-6d27-4f1a-a4ca-6a489b2fabce","name":"Gladiator","desc":"If you fight with only a one-handed Sword weapon and keep your other hand free except for a torch, you gain a +5 bonus on your Sword Fighting skill."},{"id":"ee03e710-28ab-455b-b25f-8048694c3b86","name":"Sticky Fingers","desc":"If you successfully steal any item in the thief minigame, you will always get a few extra groschen. And if you're looting a dead person, you know where to search, thus you can find a bit more money on them."},{"id":"ee4c1652-707a-4dab-8d1a-b166bb6998b7","name":"Dominant Hand","desc":"If you use a one-handed weapon without a shield, attacks will cost 20 % less stamina. Blocking will also cost less stamina and be more effective. This effect works even with a torch in your offhand."},{"id":"eee4fd1d-461d-4915-997c-1d6d4ba67f5f","name":"Kosovo Veteran","desc":"You gain +1 to Strength, Agility and Vitality for every 15 seconds you are in combat. The maximum you can achieve is +5."},{"id":"ef8282f1-4b61-4c57-98b9-9cda28f8fd09","name":"Precise Strike","desc":"With a fully charged sword attack, your Sword Fighting skill will count 3 higher. So your attack will not only be stronger, but it will also be harder to parry."},{"id":"effd1f5d-c9be-4bb0-a51d-4b9f73f35eed","name":"Silver Tongue","desc":"You get a +4 Speech bonus when haggling, making it easier to negotiate better prices."},{"id":"f0761418-e5ed-4810-928e-2b857687286b","name":"Artery Slasher","desc":"If you inflict a bleeding wound with a Polearm weapon, the wounded person will bleed faster and thus fall sooner."},{"id":"f0797a5e-338d-43de-85fc-49119170633b","name":"In Vino Virilitas","desc":"When you're drunk, your stamina recovers faster. And the drunker you are, the quicker it regenerates, up to a 50 % increase!"},{"id":"f0967582-19e6-46ec-973f-bb05dacc9175","name":"Hal Shot First","desc":"Your first shot will do 15 % more damage. The perk will be active again after the end of the fight in which it was used or in one minute if no fight took place."},{"id":"f1d825fa-bff0-46db-a442-4457381c9241","name":"Black arts apprentice - script","desc":""},{"id":"f1e1291e-a2fa-4b81-80b1-ca96374c88df","name":"Swordmakers wisdom - weapon usage","desc":""},{"id":"f20d8802-6e9d-4d3d-b5eb-a3d04a8075df","name":"Totally Legit","desc":"Stolen weapons, armour and clothing in your inventory will lose their stolen status 20 % faster."},{"id":"f2fddf5e-78e6-4706-894e-8d5fe12bf259","name":"Marathon Runner","desc":"When sprinting, you consume stamina 20 % slower."},{"id":"f50df829-871a-4cb0-ba76-6ee90b5b8b4d","name":"Heartseeker II","desc":"If you hit your target in the chest, your shot will deal a total of 25 % more damage. Shots to the heart from behind will also trigger this effect."},{"id":"f57098fe-24f5-4850-81f8-36bb0a12e4f9","name":"Secret of Secrets","desc":"If you follow the recipe precisely and your brewing time is perfect, you can brew potions of exceptional quality, which the ordinary herbalist can only dream of."},{"id":"f62a0656-661b-45e9-a57c-27d42861b598","name":"Ironclad","desc":"The weight of the armour you wear affects your speed of movement and how much stamina sprinting depletes. Using this perk, your armour will weigh you down 20 lbs less, thus having a lesser effect on your stamina. Neither the actual weight of your armour nor your carrying capacity will change, however."},{"id":"f6688ddf-367e-40dd-90bc-60c39812185b","name":"Back Alley Skirmisher","desc":"Using a one-handed weapon on its own, you will deal 10 % more damage. The effect also applies if you wield a torch in your off-hand."},{"id":"f7195791-fdfa-4461-9352-44428225f238","name":"Spiritual guidance - bonusy","desc":""},{"id":"f7196091-fdfa-4601-9352-444282260238","name":"equipment_deterioration_reduction","desc":""},{"id":"f7606b14-dea2-4b48-8057-cfd2bf7a33e7","name":"Revenant II","desc":"Your health will slowly recover up to 75 health points continuously. The effect does not apply if you are in combat or bleeding."},{"id":"f81ad9e1-7023-4e86-85d0-c638dd8bcfd4","name":"Leshy","desc":"While in the forest, your scent will be halved, your stamina will recover 15 % faster, your Strength, Vitality and Agility will be increased by 1 and your Stealth skill will be increased by 2."},{"id":"f9de0477-2f59-4eec-b522-fa943f542277","name":"Secret of Matter","desc":"Every time you successfully brew a potion, you get 1 extra potion of the same quality."},{"id":"fa43b5bf-4cd9-40e4-9ebc-5d807c6c093d","name":"Sundering Blow","desc":"When you hit an enemy with a Heavy weapon, their armour will count as 10 lower."},{"id":"faef0e75-4d45-4ad0-8f15-043e492dde48","name":"Bark!","desc":"You’ve taught Mutt to create a ruckus and draw attention to himself. This can be handy, especially when you need to sneak somewhere unnoticed. You can get him to bark by selecting the relevant command under Commands. Mutt will start barking on the spot, so make yourself scarce quickly to pull off your ruse."},{"id":"fb0b3025-0529-4941-8def-9c15c8d47b49","name":"Art of Preservation","desc":"Raw food and herbs you have in your inventory will spoil 50 % slower."},{"id":"fbc28ceb-0c7f-4609-a51f-0b22e64ec5b7","name":"Wrestler","desc":"Your Strength will make it easier to win fights in the clinch, because it will be harder for your opponent to react to your actions."},{"id":"fd6ea6fd-7774-43f6-b9c1-420cd69a3e74","name":"Spiritual Guidance","desc":"When you're drunk, your Scholarship and Speech are increased even more than usual. The bonus will be higher the drunker you are."},{"id":"fee40a9c-b689-485d-a94a-294d100ac5e7","name":"Charming Companion","desc":"When you have your dog with you, your Charisma is increased by 3."},{"id":"00e72786-0b56-481b-995f-1ef6567293f6","name":"Alch recipe - sneak","desc":""},{"id":"01a77d2b-2ac9-42a6-b7c2-eda3ab98f29f","name":"BS recipe - r_axebattle04","desc":""},{"id":"0a545731-e870-41ce-856c-bb518d92f034","name":"Alch recipe - hair o' dog","desc":""},{"id":"0b822ffd-f80d-4073-9b76-1bb4cbe71bda","name":"Alch recipe - dementia","desc":""},{"id":"0e41c9bc-e760-479b-87bc-597d9716a581","name":"Alch recipe - chamomileDecoction","desc":""},{"id":"0f22d475-f795-4327-b67c-cf15cdbf1739","name":"BS recipe - r_horseshoeMilitary","desc":""},{"id":"113fbba6-ece5-4442-b789-e1427b35c253","name":"BS recipe - r_kovarTrainingSword","desc":""},{"id":"17cf675c-789a-42e0-a9b7-eca55048ec8c","name":"Alch recipe - vitality","desc":""},{"id":"19aa03ef-a0aa-41a6-9983-008f016c6da9","name":"BS recipe - basic_longsword","desc":""},{"id":"1a3d2c1d-4c99-4e1c-8df4-cedb66cc483e","name":"BS recipe - r_shortswordbasilard","desc":""},{"id":"1db8f4e5-dc24-48e9-a05b-3d6212576fbb","name":"BS recipe - r_shortswordceremony","desc":""},{"id":"24f5eb8e-8812-4c08-a7b1-d6589ce54704","name":"Alch recipe - archer","desc":""},{"id":"2dd0b89c-4e60-405b-8d82-04e9538f4b54","name":"BS recipe - longswordHenry_reforged","desc":""},{"id":"3190f739-995e-4c60-9aa7-d34ca3428494","name":"BS recipe - r_horseshoeFarmer","desc":""},{"id":"328b519f-4cb4-4127-a79a-27e6d3ffc4dc","name":"BS recipe - r_huntingSwordBasic","desc":""},{"id":"330b075a-2568-4d2d-bca1-b02cb60df582","name":"BS recipe - r_shortswordheavy","desc":""},{"id":"33319ecd-d246-43fa-a547-a34ef4cbc716","name":"BS recipe - r_sabrecommon","desc":""},{"id":"3385645f-9b90-4ecd-8693-97da184fab60","name":"BS recipe - r_huntingswordsashka","desc":""},{"id":"340a80aa-9952-4b5a-8c9a-f1fdf3425c0f","name":"Alch recipe - saviourSchnapps","desc":""},{"id":"364a361b-c447-4e14-8f87-b1964a8c5975","name":"Alch recipe - marigoldDecoction","desc":""},{"id":"394af9ae-46e8-4ea4-a09d-8e38e936f899","name":"BS recipe - r_axebattle03","desc":""},{"id":"39bf333d-47ca-43d6-9fac-32672bf32b37","name":"Alch recipe - horseman","desc":""},{"id":"3b8b608c-c1ce-4870-9cbb-9a652d67e225","name":"BS recipe - r_shortswordcommon","desc":""},{"id":"431e0ff9-5379-41d6-ba17-92f978d45c11","name":"Alch recipe - paralysis","desc":""},{"id":"45b43f2c-9da5-4bff-b680-39f7d3ecaf7b","name":"BS recipe - r_longswordbroad","desc":""},{"id":"47eaa87d-bc72-4cef-bec8-38dbf651a41c","name":"BS recipe - r_kovaniAsiDoVezi_protectiveAxe","desc":""},{"id":"489a6940-d6d4-4e4f-9ebf-88ae357f988f","name":"BS recipe - r_huntingswordsword","desc":""},{"id":"4aec1edd-07f7-486f-b974-9ba412e3109f","name":"BS recipe - r_kovaniKopie_penitent","desc":""},{"id":"4b730a47-4c5d-46fc-b8a0-81c80a43b973","name":"Alch recipe - fakeBlood","desc":""},{"id":"4cad82b4-1565-44bd-a341-77e3158e79ca","name":"BS recipe - r_axebattle02","desc":""},{"id":"4d061c07-c720-4122-95c5-6dd3a12ee7d8","name":"Alch recipe - lion","desc":""},{"id":"54b4e018-ad87-4ae5-b458-33ded951f728","name":"BS recipe - r_poustevnik_swordForSemin","desc":""},{"id":"54dc97e3-c51c-4eed-92db-ab7818a022f3","name":"BS recipe - r_axefancy","desc":""},{"id":"5f4749aa-8d38-4368-8564-e772090f2faa","name":"BS recipe - r_kovaniSymbolSermirny_guildSwordRemake","desc":""},{"id":"5f4d8ed9-08a2-4ff7-932b-d0c5722cb487","name":"Alch recipe - shot scatter","desc":""},{"id":"66df00c5-fb3e-40f2-a5be-4a9ef3903acc","name":"BS recipe - basic_axe","desc":""},{"id":"67dd0d01-f819-4329-8a8d-0a493743904a","name":"BS recipe - r_shortswordcleaver","desc":""},{"id":"6818bc12-6b78-459f-89dd-299ebd6eb31c","name":"BS recipe - basic_horseshoe","desc":""},{"id":"71eb98d9-b05e-4f76-b2b9-4de81a4204ca","name":"BS recipe - r_longswordduel","desc":""},{"id":"766b081c-8cd9-465a-b722-ae8ab356fa00","name":"BS recipe - r_longswordcommon","desc":""},{"id":"77c75659-e348-41e7-9ffa-12a2727e41fa","name":"BS recipe - r_kovaniRelikvie_swordOfKnightValentin","desc":""},{"id":"781dc8f4-3e57-4f08-b0f3-5d55a0868375","name":"Alch recipe - mintha","desc":""},{"id":"7e05d810-4703-410c-ac68-9cf8d714b899","name":"Alch recipe - witch","desc":""},{"id":"7f51650a-75fe-43ed-a555-c5511b9e086e","name":"Alch recipe - hooch","desc":""},{"id":"809ec8dd-39a1-413a-8512-44c2d4140c74","name":"Alch recipe - energy","desc":""},{"id":"844f6a78-37b7-4dbb-905d-0ca53e0c1290","name":"Alch recipe - painkiller","desc":""},{"id":"88accbf1-a905-422a-a4fb-e7114206f352","name":"Alch recipe - owl","desc":""},{"id":"8a7f9b2a-b87b-42cc-9f9e-bb61c5012d3f","name":"BS recipe - r_axebattle01","desc":""},{"id":"8dafcb36-4680-4d63-9e97-0611bb8802e0","name":"BS recipe - r_shortswordbroad","desc":""},{"id":"91de224e-9c6c-40a1-96e9-887317402362","name":"BS recipe - r_kovaniPoklad_adornedAxe","desc":""},{"id":"91fede06-caec-46d0-8c4a-7fa58558b268","name":"BS recipe - r_kovaniKovarskaSoutez_huntingKnifeForContest","desc":""},{"id":"94d62267-ff23-4a93-a301-9c818c51ce41","name":"Alch recipe - antidote","desc":""},{"id":"989bd500-5d82-4613-b47c-5f01fbf4a75d","name":"Alch recipe - stamina","desc":""},{"id":"9b6a59eb-f0aa-4d93-a71d-70dfb26b847c","name":"Alch recipe - shot ball","desc":""},{"id":"a0bb8587-46da-4f7d-b383-71f5357a9fe4","name":"Alch recipe - sleep","desc":""},{"id":"a0f2b01c-744b-4e7e-a573-9418054b33b9","name":"BS recipe - r_huntingswordmussle","desc":""},{"id":"a5ad2b92-a42c-49b2-b3ce-648ecf28d4bb","name":"BS recipe - r_axework01","desc":""},{"id":"a7573852-f294-44ca-8d3a-4ddc613c2313","name":"Alch recipe - syrup","desc":""},{"id":"a7f9e9a6-31e5-403b-8fcc-40b70ada86cb","name":"BS recipe - r_axework02","desc":""},{"id":"a819961d-e452-4909-814f-b853a193715c","name":"Alch recipe - absintium","desc":""},{"id":"ab2d161d-ef04-4766-b5fe-5bc3aa5ccd82","name":"Alch recipe - mrchCureSpiritus","desc":""},{"id":"af99aab5-de64-4a22-972e-cb5e06c86c3a","name":"Alch recipe - tideness","desc":""},{"id":"b58e15f5-f081-41a2-b1a0-7897202d621c","name":"Alch recipe - respec","desc":""},{"id":"b8a82dc8-0eea-4da6-b6ad-c3e57467e187","name":"Alch recipe - fevertonic","desc":""},{"id":"bc052134-4e12-4d25-8940-c6711b8505d1","name":"BS recipe - r_polearmBruncvik","desc":""},{"id":"c944bf20-6c76-4a5f-803f-7f87c2d69dba","name":"BS recipe - r_huntingswordfalchion","desc":""},{"id":"cb053d06-d5b1-4b5a-8697-f1b161a6052e","name":"BS recipe - r_kovaniNaKovarne_smithsDefense","desc":""},{"id":"cd9ff25b-2faa-4f78-aeb3-f108d1d7354b","name":"BS recipe - basic_sword","desc":""},{"id":"d1f781ad-77ef-4a4f-aba1-551266ee536b","name":"BS recipe - longswordRadzig_reforged","desc":""},{"id":"d6672f5f-0478-42d3-b227-22adffcc6493","name":"BS recipe - r_kovaniVajdovaKletba_rikonaris","desc":""},{"id":"d7f0e4a4-ebdd-4134-b249-a4810943cb64","name":"BS recipe - r_longswordsturdy","desc":""},{"id":"d895f6e8-492c-4d88-b19f-aa1f848feb6c","name":"Alch recipe - hunter","desc":""},{"id":"dabb1a66-8e04-4bd8-b149-b58a522747fd","name":"Alch recipe - mrchCureWater","desc":""},{"id":"e28dbe1b-38e7-4001-8f24-23a0da71663b","name":"Alch recipe - bard","desc":""},{"id":"e52089c9-3a88-438b-8844-13ab33e59b0f","name":"BS recipe - r_kovaniKatuvSleh_executionersSword","desc":""},{"id":"e6189424-44db-486a-916a-ab3200b85eea","name":"Alch recipe - bane","desc":""},{"id":"ea0be1c3-88f1-4ecd-bea6-83c2f62663a7","name":"BS recipe - r_longswordold","desc":""},{"id":"f0ff5c94-e0a6-436f-a838-6d6e8bb725ac","name":"BS recipe - r_axecuman","desc":""},{"id":"f36cb43a-b110-42a3-b5fd-92024f7bb6a7","name":"Alch recipe - soap","desc":""},{"id":"f54a514c-8fdf-46fe-9f0a-0883d07ba5a3","name":"BS recipe - r_sabrenoble","desc":""},{"id":"f94b552d-aafd-43be-9c6f-a938cb550548","name":"BS recipe - r_kovaniZavodniPodkovy_caulkinHorseshoe","desc":""}]
\ No newline at end of file
diff --git a/src/data/skills.json b/src/data/skills.json
new file mode 100644
index 0000000..420a335
--- /dev/null
+++ b/src/data/skills.json
@@ -0,0 +1 @@
+[{"id":"0","name":"Stealth","desc":"The art of concealment and camouflage. The ability to observe and not be seen, to act and escape the consequences of one's actions. This art is not talked about in polite society, but everyone knows the value of a good spy, and some know the importance of a suitable murder.\n\nThe higher your skill, the less noise you make when sneaking, and the harder it will be for enemies to see and detect you. You will also find it easier to avoid complications on the move when using fast travel.\n\nYou gain skill by successfully picking pockets, picking locks, stealthily disposing of enemies, and especially by sneaking near enemies."},{"id":"1","name":"Horsemanship","desc":"Horsemanship, meaning the ability to stay in the saddle, knowledge of riding manoeuvres, mounted combat and care of riding animals. Every nobleman and man-at-arms should master this art.\n\nAs your skill increases, your horse's stamina consumption will decrease when riding at high speeds, your horse will be less skittish when threatened, and it will be more difficult for enemies to throw you from the saddle.\n\nYou gain experience by riding whenever you travel a considerable distance in the saddle. Be careful though, you won't gain experience by using fast travel. In mounted combat, you will gain experience of every enemy you defeat from the saddle."},{"id":"2","name":"Warfare","desc":"Your overall skill as a warrior, reflecting your knowledge of combat and all matters regarding war, your ability to navigate battlefields, the experience gained in countless skirmishes and your growing skill in handling weapons.\n\nThe higher your Warfare skill, the faster your attacks will be, and the harder it will be for your opponents to read your intentions and parry your attacks. Your weapons will also take less damage during combat.\n\nYour Warfare level will increase as you improve your skills with individual weapons or unarmed combat."},{"id":"3","name":"Bard","desc":"Bard skill would allow you to woo audience with your stories of valour."},{"id":"4","name":"Thievery","desc":"Thievery may not be an honourable way to make a living, but if done correctly, not a shadow of suspicion should fall upon your reputation.\n\nThis skill makes lockpicking and pickpocketing easier. As your level increases, you can tackle more complex locks and the process will be less sensitive to your mistakes. When pickpocketing, your victim is less likely to notice your probing hand, making the whole process easier, and you'll also be able to identify some items in their pockets or pouches beforehand.\n\nYou gain experience by lockpicking and pickpocketing. The stronger the lock you overcome or the more valuable the items you manage to steal, the more experience you will gain."},{"id":"6","name":"Alchemy","desc":"The art of transmutation, i.e. the knowledge of the right combination of substances and their transformation into higher and nobler forms.\n\nTo make the alchemical process successful, it is necessary to observe the correct cooking time. The greater your Alchemy skill, the more you can deviate from in without repercussions. In addition, to achieve trulymasterful potions, you will need to follow the recipe procedure exactly and have the ingredients as fresh as possible.\n\nYou will gain experience by brewing potions, and the more precisely you follow the procedure, the more experience you will gain."},{"id":"7","name":"Cooking","desc":"Cooking skill would make cooking easier."},{"id":"8","name":"Craftsmanship","desc":"Craft has always been with man and is a showcase of his skill, activity and ingenuity. It is also a source of joy, for few things surpass the satisfaction of one's own work.\n\nAs your skill grows, it will become easier to achieve a good result in weapon sharpening or blacksmithing, and you will be able to forge more advanced weapons. You will also be able to repair higher quality items when maintaining your own equipment, and you will generally use fewer resources for repairs or laundry.\n\nYou will gain experience by practicing the craft, i.e. blacksmithing, sharpening weapons, and using repair kits or washing clothes."},{"id":"10","name":"Fishing","desc":"Fishing skill would allow you to catch fish."},{"id":"11","name":"Mining","desc":"Mining skill would allow you to mine silver in Kuttenberg mines."},{"id":"12","name":"First Aid","desc":"First Aid skill makes applying bandages more efficient, staunching Bleeding with fewer bandages."},{"id":"13","name":"Drinking","desc":"Bibit Hera, bibit herus, bibit miles, bibit clerus, bibit ille, bibit illa, bibit servus cum ancilla!\n\nAs your drinking skill increases, alcohol will have less of an effect on you, therefore you won't get drunk as quickly, and if you do, the hangover will be milder and pass sooner. You'll also be at less risk of succumbing to a pernicious addiction through frequent drinking. But beware, however high your Drinking skill, you will never completely rid yourself of the risk of addiction.\n\nUnsurprisingly, you can increase your Drinking skill by drinking all sorts of alcohol or alcohol-based alchemical potions."},{"id":"14","name":"Survival","desc":"Knowledge of the beauties, laws and dangers of the world beyond the stone walls of human settlements unites royal huntsmen and the humblest wanderers alike.\n\nThe higher your skill, the easier it will be to hunt wild game and obtain more meat from it. Gathering herbs will also be quicker and using fast travel will make it easier for you to escape ambushes and other pitfalls.\n\nYou gain survival experience primarily by hunting game, gathering herbs and processing your catch (drying, smoking, cooking). Additionally, discovering interesting places in the world and overcoming dangers while using fast travel will also contribute to your experience."},{"id":"15","name":"Defence","desc":"Increases the timeframe for performing a Perfect Block or Dodge, as well as increasing the defence stat of weapons and shields."},{"id":"16","name":"Swords","desc":"The skill of fighting with swords and similar weapons. Sword-like weapons are agile and allow you to hit your opponent accurately and quickly, as well as to effectively defend against incoming attacks. Longswords also give you the advantage of a longer reach. The biggest disadvantage of these weapons is that they are usually ineffective against heavily armoured foes.\n\nThe higher your Swordsmanship skill, the faster your attacks will be, the more damage they will do, and the harder it will be for your opponents to block them.\n\nSwordsmanship experience is gained primarily by fighting using the appropriate weapons.\n\nSword-like weapons include hunting swords, short swords, longswords, and sabres."},{"id":"17","name":"Heavy Weapons","desc":"The art of fighting with heavy weapons. These are characterized by devastating attacks and, due to their penetration power, are suitable for combat against armoured opponents. However, they offer little defense, and martial experience suggests combining them with shields and your own quality armour.\n\nThe higher your skill with heavy weapons, the faster your attacks will be, inflicting more damage and making it harder for your opponent to defend against them.\n\nYou gain experience primarily through combat with the respective weapons.\n\nHeavy Weapons include clubs, maces, axes and war hammers."},{"id":"19","name":"Marksmanship","desc":"The art of aiming and hitting with ranged weapons, such as bows, crossbows and those new diabolical black powder contraptions.\n\nA higher skill level will manifest primarily in having a steadier hand when aiming, making it easier to aim and hit.\n\nYou gain experience by shooting, whether in combat, hunting or target competitions."},{"id":"20","name":"Shield","desc":"Shield skill makes you more proficient with shields in their offensive role, effectively increasing your weapon stats when you equip a shield."},{"id":"22","name":"Dagger","desc":"Dagger skill makes you more proficient with daggers, effectively increasing your weapon stats when you equip a dagger."},{"id":"23","name":"Polearms","desc":"The art of fighting with polearms. These are the most common weapons of the medieval soldier because they are inexpensive to produce and very effective when used in large numbers, even in the hands of inexperienced fighters. However, a seasoned warrior can wield this weapon alone and take advantage of its strengths, particularly its great penetrating power and significant reach.\n\nThe higher your skill, the more powerful and faster your attacks will be.\n\nYou gain experience primarily through combat with the respective weapons.\n\nPolearms include all long weapons, from spears, halberds and glaives to knightly poleaxes."},{"id":"24","name":"Unarmed","desc":"The art of Ringen and unarmed combat, whether it's a tavern brawl or knowledge of wrestling. After all, it's not always necessary to draw steel and shed blood, as a well-aimed punch can usually cool most heads. A true master is also able to stand against an armed opponent.\n\nThe higher your skill, the more powerful and faster will be your attacks, and the harder it will be to defend against them.\n\nYou gain Unarmed experience, unsurprisingly, by fighting without a weapon."},{"id":"26","name":"Scholarship","desc":"Scholarship is a concept as wide as the sea and its boundaries are equally unclear. Generally speaking, it represents the sum total of factual knowledge, the ability to make logical deductions, and an understanding of the basic concepts of the medieval world.\n\nLiteracy allows you, above all, to read, a far from common skill for medieval man. The more scholarly you are, the faster you will read books and the easier it will be to understand their contents. Scholarship can also come in handy in all sorts of situations and conversations.\n\nYou will increase your scholarship mainly by reading books, applying scholarship in conversations, and learning new and interesting knowledge about the world around you."},{"id":"27","name":"Tailoring","desc":"Tailoring"},{"id":"28","name":"Armourer","desc":"Armourer"},{"id":"29","name":"Weaponsmithing","desc":"Weaponsmithing"},{"id":"30","name":"Shoemaking","desc":"Shoemaking"},{"id":"31","name":"Gunsmith","desc":"Repairing black powder weapons."},{"id":"32","name":"Bowyery","desc":"Repairing bows and crossbows."},{"id":"33","name":"gambling","desc":""},{"id":"34","name":"Houndmaster","desc":"The art of dog handling is highly valued and the dog will be your loyal friend, a kind companion on the road and a fierce defender. He can also find all sorts of interesting things in the area, and as his skill grows, yours will become more obedient, stronger in combat, and slower to tire when hunting. Additionally, you can gain perks that allow you to give your dog new commands.\n\nYou gain experience by interacting with your dog and using its skills, whether in combat, hunting, or on the road. Start by remembering to feed him properly and pet him occasionally. This will not only give you experience, but also ensure that your dog doesn't run away from you and obeys your commands correctly."}]
\ No newline at end of file